stylus/manage/manage.css

1195 lines
22 KiB
CSS
Raw Normal View History

:root {
--header-width: 280px;
--checkbox-width: 24px;
--name-padding-left: 40px;
--name-padding-right: 40px;
--actions-width: 75px;
--onoffswitch-width: 60px;
}
body {
margin: 0;
/* Firefox: fill the entire page for drag'n'drop to work */
display: flex;
height: 100%;
}
2018-08-20 09:57:17 +00:00
#header:lang(ja) h1 {
font-weight: normal;
}
body.all-styles-hidden-by-filters:before,
body.all-styles-hidden-by-filters:after {
position: absolute;
left: calc(3rem + var(--header-width));
color: hsla(180, 40%, 45%, .3);
animation: fadein 3s;
}
body.all-styles-hidden-by-filters:before {
content: "\2190"; /* left arrow */
font-size: 3rem;
top: 3.5rem;
}
body.all-styles-hidden-by-filters:after {
font-size: 1.5rem;
position: absolute;
top: 3rem;
}
a, .disabled a:hover {
color: #000;
transition: color .5s;
}
a:hover {
color: #666;
}
#header {
width: var(--header-width);
height: 100vh;
position: fixed;
top: 0;
2018-07-16 16:37:01 +00:00
padding: 1rem;
border-right: 1px dashed #AAA;
-webkit-box-shadow: 0 0 50px -18px black;
box-shadow: 0 0 50px -18px black;
overflow: auto;
box-sizing: border-box;
z-index: 9;
}
2018-07-16 16:37:01 +00:00
#update-check,
#update-all {
margin-bottom: .5rem;
}
#check-all-updates {
2018-07-16 16:37:01 +00:00
max-width: calc(100% - 30px);
}
#check-all-updates-force {
white-space: normal;
text-align: left;
}
#header h1 {
margin-top: 0;
margin-bottom: .3em;
}
#header a[href^="edit"] {
text-decoration: none;
2017-12-08 03:18:47 +00:00
margin-right: 8px;
}
2017-12-08 03:18:47 +00:00
#add-style-wrapper {
display: flex;
align-items: center;
flex-wrap: wrap;
}
#add-style-wrapper > * {
/* in case the children are wrapped */
2018-07-16 16:37:01 +00:00
margin-bottom: .5rem;
}
#add-style-as-usercss-wrapper {
display: flex;
align-items: center;
}
#add-style-as-usercss-wrapper:not(:hover) input:not(:checked) ~ a svg {
2017-11-22 18:13:09 +00:00
fill: #aaa;
}
#add-style-as-usercss-wrapper input {
bottom: 0;
margin: auto;
}
#add-style-as-usercss-wrapper input + svg {
bottom: 0;
margin: auto;
left: 2px;
}
#installed {
position: relative;
padding-left: var(--header-width);
box-sizing: border-box;
width: 100%;
}
.entry {
margin: 0;
padding: 1.25em 2em;
border-top: 1px solid #ddd;
}
.entry:first-child {
border-top: none;
}
.svg-icon {
cursor: pointer;
vertical-align: middle;
transition: fill .5s;
width: 20px;
height: 20px;
fill: #666;
2017-04-13 07:54:56 +00:00
}
2017-04-26 20:55:54 +00:00
.svg-icon:hover {
fill: #000;
}
2017-04-13 07:54:56 +00:00
.svg-icon.info {
width: 14px;
height: 16px;
margin-left: .5ex;
}
.svg-icon.config {
transform: scale(.8);
}
.homepage {
margin-left: 0.25em;
margin-right: 0.1em;
}
.homepage[href=""] {
display: none;
}
.homepage .svg-icon {
margin-top: 0;
}
.style-name {
margin-top: .25em;
overflow-wrap: break-word;
}
.style-name a, .style-edit-link {
text-decoration: none;
}
.applies-to {
overflow-wrap: break-word;
}
.applies-to,
.actions {
padding-left: 15px;
margin-bottom: 0;
}
.actions {
display: flex;
flex-wrap: wrap;
align-items: center;
}
.actions > * {
margin-bottom: .25rem;
display: inline-block;
}
.actions > *:not(:last-child) {
margin-right: .25rem;
}
.applies-to label {
margin-right: .5ex;
}
.applies-to .target:hover {
background-color: rgba(128, 128, 128, .15);
}
.applies-to-extra:not([open]) {
display: inline;
margin-left: 1ex;
}
2017-11-29 16:05:47 +00:00
.applies-to-extra-expander {
font-weight: bold;
cursor: pointer;
}
2017-11-29 16:05:47 +00:00
.applies-to-extra-expander {
list-style-type: none; /* for FF, allegedly */
}
2017-11-29 16:05:47 +00:00
.applies-to-extra-expander::-webkit-details-marker {
display: none;
}
2018-07-16 16:37:01 +00:00
.newUI .style-name::after,
.newUI .style-name-link::after {
vertical-align: text-top;
}
2017-11-26 17:24:42 +00:00
.disabled h2::after, .entry.usercss .style-name-link::after {
font-weight: normal;
font-size: 11px;
text-transform: lowercase;
background: rgba(128, 128, 128, .2);
padding: 2px 5px 3px;
border-radius: 4px;
margin-left: 1ex;
2017-12-29 15:19:25 +00:00
white-space: nowrap;
position: relative;
top: 2px;
}
2017-11-26 17:24:42 +00:00
.entry.usercss .style-name-link::after {
content: "usercss";
background-color: hsla(180, 100%, 20%, 1);
color: white;
}
.disabled h2 .style-name-link,
.disabled h2::after,
.disabled .actions,
.disabled .applies-to {
opacity: 0.6;
font-weight: normal;
transition: opacity .5s .1s;
}
.disabled:hover .actions {
opacity: 1;
}
.disabled .disable {
display: none;
}
.enabled .enable {
display: none;
}
2017-11-29 16:05:47 +00:00
/* collapsibles */
2018-07-16 16:37:01 +00:00
#add-style-wrapper {
margin-bottom: 0;
}
2018-07-16 16:37:01 +00:00
#backup-buttons {
display: flex;
flex-wrap: wrap;
margin-top: .5rem;
}
2017-11-29 16:05:47 +00:00
2018-07-16 16:37:01 +00:00
#backup-buttons button {
margin: 0 .2rem .5rem 0;
2017-12-23 00:11:46 +00:00
}
#header details:not([open]),
2017-11-29 16:05:47 +00:00
#header details:not([open]) h2 {
padding-bottom: 0;
}
#header details[open] summary {
2018-07-16 16:37:01 +00:00
padding-bottom: .5rem;
2017-11-29 16:05:47 +00:00
}
#header summary {
2018-07-16 16:37:01 +00:00
margin-top: .25rem;
2017-11-29 16:05:47 +00:00
align-items: center;
margin-left: -13px;
cursor: pointer;
}
2018-07-16 16:37:01 +00:00
#header #filters summary {
margin: 0 0 -2px -13px;
}
#header #filters summary h2 {
margin-left: -4px;
}
2017-11-29 16:05:47 +00:00
#header summary h2 {
2018-07-16 16:37:01 +00:00
display: inline-flex;
flex-wrap: wrap;
2017-11-29 16:05:47 +00:00
border-bottom: 1px dotted transparent;
2017-12-03 23:40:22 +00:00
margin-top: .1em;
margin-bottom: .1em;
2017-11-29 16:05:47 +00:00
}
2017-12-03 23:40:22 +00:00
#header summary:hover h2 {
2017-11-29 16:05:47 +00:00
border-color: #bbb;
}
/* compact layout */
.newUI #installed {
display: table;
margin-top: .75rem;
margin-bottom: .75rem;
}
.newUI .disabled {
opacity: 1;
}
.newUI .entry {
display: table-row;
padding-top: 0;
padding-bottom: 0;
}
2017-12-23 00:11:46 +00:00
.newUI .entry.odd {
background-color: rgba(128, 128, 128, 0.05);
}
.newUI .entry > * {
padding: .5rem 0;
margin: 0;
display: table-cell;
vertical-align: middle;
2017-12-23 00:11:46 +00:00
}
.newUI .entry .actions {
position: relative;
}
2017-12-23 00:11:46 +00:00
2017-12-03 23:40:22 +00:00
/************ checkbox & select************/
.newUI .checker {
2017-12-03 23:40:22 +00:00
margin: 0;
}
2017-12-23 00:11:46 +00:00
#newUIoptions > div, #newUIoptions > label {
2017-12-03 23:40:22 +00:00
margin: 4px 0;
}
.filter-selection {
position: relative;
left: -9px;
2017-12-03 23:40:22 +00:00
}
#header label {
padding-left: 16px;
position: relative;
2018-07-16 16:37:01 +00:00
white-space: nowrap;
2017-12-03 23:40:22 +00:00
}
#header .filter-selection label {
display: flex;
2017-12-31 09:25:58 +00:00
box-sizing: border-box;
2017-12-03 23:40:22 +00:00
align-items: center;
height: 18px;
padding: 0 0 0 8px;
2017-12-03 23:40:22 +00:00
}
#header .filter-selection label .checkmate {
vertical-align: middle;
margin-top: -2px;
}
.newUI #newUIoptions > label {
padding-left: 0;
}
.filter-selection select {
height: 18px;
border: none;
max-width: 100%;
padding-left: 4px;
2017-12-03 23:40:22 +00:00
padding-right: 14px;
}
.filter-selection .select-arrow {
margin-top: 2px;
top: 0;
right: 0;
2017-12-03 23:40:22 +00:00
}
.select-resizer {
cursor: default;
border: none;
max-width: calc(100% - 2em);
position: absolute;
top: 0;
left: 20px;
2017-12-03 23:40:22 +00:00
}
#filters label,
#filters .filter-selection {
2017-12-03 23:40:22 +00:00
transition: background-color .25s;
}
#filters label:hover,
#filters .filter-selection:hover {
2017-12-03 23:40:22 +00:00
background-color: hsla(0, 0%, 50%, .2);
}
.checkmate {
position: relative;
2017-12-03 23:40:22 +00:00
height: 12px;
width: 12px;
display: inline-flex;
}
.entry .checkmate {
vertical-align: middle;
margin: -2px 1ex 0 0;
}
#manage-text {
display: flex;
flex-wrap: wrap;
align-items: baseline;
2018-07-16 16:37:01 +00:00
padding-top: .35rem;
}
#manage-text > :not(:last-child):after {
content: "|";
margin: 0 .5em;
}
2017-12-03 23:40:22 +00:00
.newUI .entry .svg-icon.checked,
.newUI .entry:hover .svg-icon.checked {
fill: #000;
}
.newUI .entry input[type="checkbox"]:not(.slider) {
pointer-events: all;
}
.newUI .style-name {
font-size: 14px;
text-indent: calc(var(--checkbox-width) - var(--name-padding-left) - 4px);
padding-left: var(--name-padding-left);
padding-right: var(--name-padding-right);
position: relative;
cursor: pointer;
}
.newUI .entry .style-name:hover::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to right, hsla(180, 50%, 30%, 0.2), hsla(180, 20%, 10%, 0.05) 50%, transparent);
pointer-events: none;
}
.newUI .entry.enabled .style-name:hover .style-name-link {
color: hsla(180, 100%, 15%, 1);
}
2017-12-23 00:11:46 +00:00
.newUI .style-name:after {
text-indent: 1.2rem;
}
.newUI .actions:after {
text-indent: -25px;
}
.newUI .actions .homepage[href=""] {
display: inline-block;
visibility: hidden;
height: 0;
}
.newUI .actions {
width: var(--actions-width);
height: 20px;
white-space: nowrap;
}
.newUI .actions > * {
2017-12-13 02:24:10 +00:00
margin: 0 6px 0 0;
width: 20px;
height: 20px;
}
.newUI .updater-icons > * {
transition: opacity 1s;
display: none;
}
2017-04-22 13:06:05 +00:00
.newUI .entry .svg-icon {
fill: #999;
2017-04-18 13:18:12 +00:00
}
.newUI .entry:hover .svg-icon {
fill: #666;
}
.newUI .entry:hover .svg-icon:hover {
fill: #000;
}
.newUI .checking-update .check-update {
opacity: 0;
display: inline-block;
pointer-events: none;
}
.newUI .can-update .update,
.newUI .no-update:not(.update-problem):not(.update-done) .up-to-date,
.newUI .no-update.update-problem .check-update,
.newUI .update-done .updated {
display: inline-block;
}
.newUI .up-to-date svg,
.newUI .updated svg {
cursor: auto;
}
.newUI .update-done .updated svg {
2017-04-18 13:11:57 +00:00
top: -4px;
position: relative;
/* unprefixed since Chrome 53 */
-webkit-filter: drop-shadow(0 4px 0 currentColor);
2017-04-18 13:11:57 +00:00
filter: drop-shadow(0 5px 0 currentColor);
}
.newUI .can-update .update,
.newUI .no-update.update-problem .check-update {
cursor: pointer;
}
.newUI .can-update[data-details$="locally edited"] .update svg,
.newUI .update-problem .check-update svg {
2017-04-21 12:34:58 +00:00
fill: #ef6969;
}
.newUI .can-update[data-details$="locally edited"]:hover .update svg,
2017-04-21 12:34:58 +00:00
.newUI .entry.update-problem:hover .check-update svg {
fill: #fd4040;
}
.newUI .can-update[data-details$="locally edited"]:hover .update svg:hover,
2017-04-21 12:34:58 +00:00
.newUI .entry.update-problem:hover .check-update svg:hover {
fill: red;
}
.newUI .actions {
z-index: 100;
}
.newUI .updater-icons > :not(.check-update):after {
content: attr(title);
position: absolute;
margin-top: 18px;
margin-left: -36px;
padding: 1ex 1.5ex;
border: 1px solid #ded597;
background-color: #fffbd6;
border-radius: 4px;
box-shadow: 2px 3px 10px rgba(0,0,0,.25);
font-size: 90%;
animation: fadeout 10s;
animation-fill-mode: both;
}
.newUI .update-problem .check-update:after {
background-color: red;
border: 1px solid #d40000;
color: white;
animation: none;
}
.newUI .can-update .update:after {
animation: none;
}
.newUI .can-update:not([data-details$="locally edited"]) .update:after {
background-color: #c0fff0;
border: 1px solid #89cac9;
}
.newUI .applies-to {
padding-top: .25rem;
padding-bottom: .25rem;
}
.newUI .targets {
overflow: hidden;
}
.newUI .applies-to.expanded .targets {
max-height: none;
}
.newUI .target {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: calc(100vw - var(--header-width) - var(--actions-width) - var(--name-padding-left) - 25vw - var(--name-padding-right));
box-sizing: border-box;
padding-right: 1rem;
line-height: 18px;
}
.newUI .applies-to .expander {
margin: 0;
cursor: pointer;
font-size: 3ex;
line-height: .5ex;
vertical-align: super;
letter-spacing: .1ex;
2017-12-13 02:24:10 +00:00
text-decoration: none;
}
.newUI .applies-to:not(.has-more) .expander {
display: none;
}
.newUI .has-favicons .applies-to .expander {
margin-left: 20px;
}
.newUI .target:hover {
background-color: inherit;
}
.newUI .target img {
width: 16px;
height: 16px;
vertical-align: sub;
margin-left: -20px;
margin-right: 4px;
transition: opacity .5s, filter .5s;
/* unprefixed since Chrome 53 */
-webkit-filter: grayscale(1);
filter: grayscale(1);
/* workaround for the buggy CSS filter: images in the hidden overflow are shown on Mac */
backface-visibility: hidden;
opacity: .25;
display: none;
}
.newUI .has-favicons .target {
padding-left: 20px;
}
.newUI .has-favicons .target img[src] {
display: inline;
}
.newUI .entry:hover .target img {
opacity: 1;
/* unprefixed since Chrome 53 */
-webkit-filter: grayscale(0);
filter: grayscale(0);
}
/* Default, no update buttons */
.updater-icons .update,
.updater-icons .check-update {
display: none;
}
/* Check update button for things that can */
.updatable .check-update {
display: inline-block;
}
/* Update check in progress */
.checking-update .check-update {
display: none;
}
/* Updates available */
.can-update .update {
display: inline-block;
}
.can-update[data-details$="locally edited"] button.update:after {
content: "*";
}
.can-update .check-update {
display: none;
}
/* Updates not available */
.no-update:not(.update-problem) .check-update {
display: none;
}
/* Updates done */
.update-done .check-update {
display: none;
}
#apply-all-updates:after {
content: " (" attr(data-value) ")";
}
.update-in-progress #check-all-updates {
position: relative;
}
.update-in-progress #update-progress {
position: absolute;
top: 0;
left: 0;
bottom: 0;
background-color: currentColor;
content: "";
opacity: .35;
}
#check-all-updates-force {
margin-top: 1ex;
}
#update-all-no-updates[data-skipped-edited="true"] {
font-weight: bold;
}
#update-all-no-updates[data-skipped-edited="true"]::after {
font-weight: normal;
display: block;
}
/* highlight updated/added styles */
.highlight {
animation: highlight 10s cubic-bezier(0,.82,.47,.98);
}
.highlight-quick {
animation: highlight .5s;
}
@keyframes highlight {
from {
background-color: rgba(128, 128, 128, .5);
}
to {
background-color: none;
}
}
.hidden {
display: none !important;
}
#filters > label {
display: flex;
align-items: center;
left: -9px;
padding: 2px 0 2px 24px;
}
#filters > label input[type="checkbox"]:not(.slider),
#filters > label input[type="checkbox"]:not(.slider):checked + .svg-icon.checked {
top: 2px;
left: 8px;
}
#filters > label:hover {
background-color: hsla(0, 0%, 50%, .4);
2017-12-03 23:40:22 +00:00
}
#filters {
border: 1px solid transparent;
}
.active #filters-stats {
background-color: darkcyan;
border-color: darkcyan;
color: white;
font-size: 0.7rem;
font-weight: normal;
padding: 2px 5px;
position: relative;
2018-07-16 16:37:01 +00:00
white-space: nowrap;
}
2018-07-16 16:37:01 +00:00
.filter-stats-wrapper {
display: flex;
align-items: center;
margin-left: .2rem;
}
#header #filters summary {
white-space: nowrap;
}
#header #filters summary ::-webkit-details-marker {
margin-top: 4px
}
#reset-filters svg {
fill: hsla(180, 50%, 27%, .5);
width: 24px; /* widen the click area a bit */
height: 20px;
padding: 2px;
box-sizing: border-box;
}
#reset-filters:hover svg {
fill: hsla(180, 50%, 27%, 1);
}
#filters summary:not(.active) #reset-filters,
#filters summary:not(.active) #filters-stats {
display: none;
}
2017-12-23 00:11:46 +00:00
#search-wrapper, #sort-wrapper {
display: flex;
align-items: center;
flex-wrap: wrap;
2018-07-16 16:37:01 +00:00
margin-bottom: .5rem;
}
2018-07-16 16:37:01 +00:00
#search-wrapper {
margin-top: .35rem;
2017-12-23 00:11:46 +00:00
}
#sort-wrapper .sorter-selection {
2018-07-16 16:37:01 +00:00
display: inline-flex;
flex-grow: 1;
2017-12-23 00:11:46 +00:00
position: relative;
2018-07-16 16:37:01 +00:00
max-width: calc(100% - 30px);
2017-12-23 00:11:46 +00:00
}
2018-07-16 16:37:01 +00:00
#manage\.newUI\.sort {
2017-12-23 00:11:46 +00:00
max-width: 100%;
2018-07-16 16:37:01 +00:00
}
#search {
max-width: calc(100% - 30px);
}
#search, #manage\.newUI\.sort {
flex-grow: 1;
2017-12-08 03:18:47 +00:00
background: #fff;
height: 20px;
box-sizing: border-box;
padding: 3px 3px 3px 4px;
color: #000;
border: 1px solid hsl(0, 0%, 66%);
}
2017-12-23 00:11:46 +00:00
#manage\.newUI\.sort {
padding: 0 18px 0 4px;
2017-12-23 00:11:46 +00:00
width: 100%;
}
.firefox #manage\.newUI\.sort {
padding: 0;
}
#search-help, #sorter-help {
2018-07-16 16:37:01 +00:00
margin: 0 -5px 0 2px;
}
2017-12-23 00:11:46 +00:00
#sort-wrapper .select-arrow {
2018-07-16 16:37:01 +00:00
top: 3px;
2017-12-23 00:11:46 +00:00
right: 4px;
}
#message-box.help-text > div {
max-width: 26rem;
}
.help-text li:not(:last-child) {
margin-bottom: 1em;
}
.help-text mark {
background-color: rgba(128, 128, 128, .15);
color: currentColor;
padding: 2px 6px;
font-weight: bold;
font-family: Consolas, monospace;
border: 1px solid rgba(128, 128, 128, .25);
display: inline-block;
margin: 2px;
}
.help-text mark.last {
display: block;
width: -moz-min-content;
width: min-content;
white-space: nowrap;
}
#import ul {
margin-left: 0;
padding-left: 0;
list-style: none;
}
#import li {
margin-bottom: .5em;
}
#import pre {
background: #eee;
overflow: auto;
margin: 0 0 .5em 0;
}
/* drag-n-drop on import button */
.dropzone:after {
background-color: rgba(0, 0, 0, 0.7);
color: white;
left: 0;
top: 0;
right: 0;
bottom: 0;
z-index: 1000;
position: fixed;
padding: calc(50vh - 3em) calc(50vw - 5em);
content: attr(dragndrop-hint);
text-shadow: 1px 1px 10px black;
font-size: xx-large;
text-align: center;
animation: fadein 1s cubic-bezier(.03, .67, .08, .94);
animation-fill-mode: both;
}
.fadeout.dropzone:after {
animation: fadeout .25s ease-in-out;
animation-fill-mode: both;
}
/* post-import report */
#message-box details:not([data-id="invalid"]) div:hover {
background-color: rgba(128, 128, 128, .3);
}
#message-box details:not(:last-child) {
2018-07-16 16:37:01 +00:00
margin-bottom: 1em;
}
#message-box details small div {
2018-07-16 16:37:01 +00:00
margin-left: 1.5em;
}
2017-04-26 20:55:54 +00:00
.update-history-log {
font-size: 11px;
white-space: pre;
overflow-x: hidden;
text-overflow: ellipsis;
}
2017-12-23 00:11:46 +00:00
/* sort font */
@font-face {
font-family: 'sorticon';
src: url('data:application/x-font-ttf;base64,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') format('truetype');
font-weight: normal;
font-style: normal;
unicode-range: U+21E9;
}
#manage\.newUI\.sort {
font-family: 'sorticon', Arial;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
#stylus-embedded-options {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
border: 0;
z-index: 2147483647;
background-color: hsla(0, 0%, 0%, .45);
animation: fadein .25s ease-in-out;
}
#stylus-embedded-options.fadeout {
animation: fadeout .25s ease-in-out;
}
.settings-column {
margin-top: 1rem;
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeout {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes fadein-25pct {
from {
opacity: 0;
}
to {
opacity: .25;
}
}
2018-07-16 16:37:01 +00:00
@media (max-width: 850px) {
body {
display: table;
}
2018-07-16 16:37:01 +00:00
body.all-styles-hidden-by-filters:before {
content: "\2191"; /* up arrow */
top: calc(50% + 2.75rem);
left: 2rem;
}
2018-07-16 16:37:01 +00:00
body.all-styles-hidden-by-filters:after {
top: calc(50% + 4rem);
left: 3.75rem;
}
2018-07-16 16:37:01 +00:00
html:not(.newUI) .applies-to {
word-break: break-all;
}
2018-07-16 16:37:01 +00:00
#installed {
table-layout: fixed;
}
2018-07-16 16:37:01 +00:00
.newUI .entry .actions {
padding-right: 30px
}
2018-07-16 16:37:01 +00:00
#search-wrapper,
#sort-wrapper,
#header summary {
max-width: 247px;
}
2018-07-16 16:37:01 +00:00
#message-box > div {
left: 0;
right: 0!important;
margin-left: auto;
margin-right: auto;
}
2018-07-16 16:37:01 +00:00
.filter-selection {
max-width: 226px;
}
#header {
2018-07-16 16:37:01 +00:00
display: table-header-group;
height: auto;
2018-07-16 16:37:01 +00:00
padding: 0;
width: 100%;
position: static;
border-right: none;
border-bottom: 1px dashed #AAA;
2018-07-16 16:37:01 +00:00
}
#manage-settings {
display: flex;
flex-wrap: wrap;
width: 100%;
padding: .5rem 0 1rem;
}
#manage-settings > .settings-column {
display: flex;
flex-direction: column;
flex: 1;
padding: 0 1rem;
box-sizing: border-box;
}
#installed {
2017-12-23 00:11:46 +00:00
margin-top: 0;
padding-left: 0;
}
#header h1,
#header h2,
#header h3,
#backup-message {
display: none;
}
2018-07-16 16:37:01 +00:00
#backup-buttons {
margin-top: 0;
}
#header summary {
margin-top: 0;
padding-bottom: .25rem;
}
.newUI .entry {
2018-07-16 16:37:01 +00:00
padding: 0;
}
2018-07-16 16:37:01 +00:00
.newUI .entry .checkmate {
position: absolute;
left: 14px;
top: 0;
bottom: 0;
margin: auto;
}
2018-07-16 16:37:01 +00:00
.newUI .entry .style-name {
padding: .5rem 0 .5rem 34px;
text-indent: unset;
}
2018-07-16 16:37:01 +00:00
.newUI .entry .actions {
width: 104px;
padding: .5rem 0 .5rem 6px;
}
2018-07-16 16:37:01 +00:00
.newUI .entry .applies-to {
padding: .25rem .5rem .25rem 0;
}
2018-07-16 16:37:01 +00:00
.newUI .entry .target {
max-width: 100%;
padding-right: 0;
}
2018-07-16 16:37:01 +00:00
.newUI .style-name::after,
.newUI .style-name-link::after {
text-indent: 0;
display: inline-block;
}
}
@supports (-moz-appearance: none) {
.chromium-only {
display: none;
}
#header .filter-selection label .checkmate {
margin: 0;
}
.filter-selection select {
padding-left: 0;
}
#reset-filters {
margin-top: 4px;
}
#filters summary h2 {
margin-left: -2px;
}
}