sync status shouldn't be clickable

This commit is contained in:
narcolepticinsomniac 2019-11-14 19:11:20 -05:00 committed by GitHub
parent 02021bf6f0
commit 2ae52f1b2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -80,12 +80,18 @@ h1 {
width: 70%; width: 70%;
} }
label { label,
.label {
display: flex; display: flex;
margin: .25ex 0; margin: .25ex 0;
align-items: center; align-items: center;
} }
.label {
flex-grow: 1;
justify-content: space-between;
}
label > :first-child { label > :first-child {
margin-right: 8px; margin-right: 8px;
flex-grow: 1; flex-grow: 1;
@ -319,6 +325,9 @@ html:not(.firefox):not(.opera) #updates {
} }
.sync-status { .sync-status {
flex-grow: 1;
padding-right: 8px;
box-sizing: border-box;
white-space: nowrap; white-space: nowrap;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
@ -326,3 +335,7 @@ html:not(.firefox):not(.opera) #updates {
.sync-status::first-letter { .sync-status::first-letter {
text-transform: uppercase; text-transform: uppercase;
} }
.sync-options .actions {
padding-top: 6px;
}