Fix entry spacing and let table-layout do its thing

This commit is contained in:
narcolepticinsomniac 2018-07-09 17:41:50 -04:00 committed by GitHub
parent 02135c11dd
commit 99c2708544
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -302,7 +302,7 @@ select {
cursor: pointer; cursor: pointer;
} }
#header #filters summary { #header #filters summary {
margin: 0 0 -2px -13px; margin: 0 0 -2px -13px;
} }
@ -1100,11 +1100,11 @@ input[id^="manage.newUI"] {
#installed { #installed {
table-layout: fixed; table-layout: fixed;
} }
.newUI .entry .actions { .newUI .entry .actions {
padding-right: 30px padding-right: 30px
} }
#search-wrapper, #search-wrapper,
#sort-wrapper, #sort-wrapper,
#header summary { #header summary {
@ -1174,31 +1174,35 @@ input[id^="manage.newUI"] {
.newUI .entry .checkmate { .newUI .entry .checkmate {
position: absolute; position: absolute;
left: 16px; left: 14px;
top: 0; top: 0;
bottom: 0; bottom: 0;
margin: auto; margin: auto;
} }
.newUI .entry .style-name { .newUI .entry .style-name {
width: 50%; padding: .5rem 0 .5rem 34px;
padding: .5rem 1rem .5rem 36px;
text-indent: unset; text-indent: unset;
} }
.newUI .entry .actions { .newUI .entry .actions {
padding: 0; width: 104px;
width: 112px; padding: .5rem 0 .5rem 6px;
padding: .5rem 0;
} }
.newUI .entry .applies-to { .newUI .entry .applies-to {
padding: .5rem 1rem; padding: .25rem .5rem .25rem 0;
width: calc(50% - 112px);
} }
.newUI .target { .newUI .entry .target {
max-width: 100%; max-width: 100%;
padding-right: 0;
}
.newUI .style-name::after,
.newUI .style-name-link::after {
text-indent: 0;
display: inline-block;
} }
} }