| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167 |
- :root {
- --header-width: 280px;
- --name-padding-left: 20px;
- --name-padding-right: 40px;
- --actions-width: 75px;
- }
- body {
- margin: 0;
- /* Firefox: fill the entire page for drag'n'drop to work */
- display: flex;
- height: 100%;
- }
- #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 {
- content: var(--filteredStylesAllHidden);
- 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;
- padding: 1rem;
- border-right: 1px dashed #AAA;
- box-shadow: 0 0 50px -18px black;
- overflow: auto;
- box-sizing: border-box;
- z-index: 9;
- }
- #update-check,
- #update-all {
- margin-bottom: .5rem;
- }
- #check-all-updates {
- 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;
- margin-right: 8px;
- }
- #add-style-wrapper {
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- }
- #add-style-wrapper > * {
- /* in case the children are wrapped */
- 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 {
- 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%;
- align-self: start;
- }
- .entry {
- margin: 0;
- padding: 1.25em 2em;
- border-top: 1px solid #ddd;
- }
- .entry:first-child {
- border-top: none;
- }
- .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;
- }
- .applies-to-extra-expander {
- font-weight: bold;
- cursor: pointer;
- }
- .applies-to-extra-expander {
- list-style-type: none; /* for FF, allegedly */
- }
- .applies-to-extra-expander::-webkit-details-marker {
- display: none;
- }
- .oldUI .disabled h2::after,
- .entry.usercss .style-name-link::after {
- font-size: 11px;
- border-radius: 4px;
- margin-left: 1ex;
- white-space: nowrap;
- content: "UC";
- background-color: hsla(180, 35%, 50%, .35);
- padding: 2px 3px;
- color: #000;
- }
- .oldUI .disabled h2::after {
- content: var(--genericDisabledLabel);
- text-transform: lowercase;
- font-weight: normal;
- background: rgba(128, 128, 128, .2);
- padding: 2px 5px 3px;
- vertical-align: middle;
- }
- .oldUI .entry.usercss .style-name-link::after {
- content: "usercss";
- font-weight: normal;
- vertical-align: middle;
- }
- .disabled h2 .style-name-link,
- .disabled .applies-to,
- .newUI .disabled.entry .svg-icon {
- color: #888;
- fill: #c4c4c4;
- font-weight: normal;
- transition: color .5s .1s, fill .5s .1s;
- }
- .disabled.usercss .style-name-link::after {
- background-color: hsla(180, 35%, 50%, .2);
- }
- .disabled:hover .actions {
- opacity: 1;
- }
- .disabled .disable {
- display: none;
- }
- .enabled .enable {
- display: none;
- }
- /* collapsibles */
- #add-style-wrapper {
- margin-bottom: 0;
- }
- #backup-buttons {
- display: flex;
- flex-wrap: wrap;
- margin-top: .5rem;
- }
- #backup-buttons button {
- margin: 0 .2rem .5rem 0;
- }
- #header details:not([open]),
- #header details:not([open]) h2 {
- padding-bottom: 0;
- }
- #header details[open] summary {
- padding-bottom: .5rem;
- }
- #header summary {
- margin-top: .25rem;
- align-items: center;
- margin-left: -13px;
- cursor: pointer;
- }
- #header #filters summary {
- margin: 0 0 -2px -13px;
- }
- #header #filters summary h2 {
- margin-left: -4px;
- }
- #header summary h2 {
- display: inline-flex;
- flex-wrap: wrap;
- border-bottom: 1px dotted transparent;
- margin-top: .1em;
- margin-bottom: .1em;
- }
- #header summary:hover h2 {
- border-color: #bbb;
- }
- /* compact layout */
- .newUI #installed {
- display: table;
- margin-top: .75rem;
- margin-bottom: .75rem;
- }
- .newUI .entry {
- display: table-row;
- padding-top: 0;
- padding-bottom: 0;
- }
- .newUI .entry.odd {
- background-color: rgba(128, 128, 128, 0.05);
- }
- .newUI .entry > * {
- padding: .5rem 0;
- margin: 0;
- display: table-cell;
- vertical-align: middle;
- }
- .newUI .entry .actions {
- position: relative;
- }
- .style-info[data-type=version] {
- color: #666;
- padding-left: .5em;
- font-weight: normal;
- }
- .newUI .style-info[data-type=version][data-is-date],
- .newUI .style-info[data-type=version][data-value=""],
- .newUI .style-info[data-type=version][data-value="1.0.0"] {
- display: none;
- }
- .newUI .entry .style-info[data-type=age] {
- color: #999;
- text-align: right;
- padding-right: 1em;
- }
- /************ checkbox & select************/
- #newUIoptions > div, #newUIoptions > label {
- margin: 4px 0;
- }
- .filter-selection {
- position: relative;
- left: -9px;
- }
- #header label {
- padding-left: 16px;
- position: relative;
- white-space: nowrap;
- }
- #header .filter-selection label {
- display: flex;
- box-sizing: border-box;
- align-items: center;
- height: 18px;
- padding: 0 0 0 8px;
- }
- #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;
- padding-right: 14px;
- }
- .filter-selection .select-arrow {
- margin-top: 2px;
- top: 0;
- right: 0;
- }
- .select-resizer {
- cursor: default;
- border: none;
- max-width: calc(100% - 2em);
- position: absolute;
- top: 0;
- left: 20px;
- }
- #filters label,
- #filters .filter-selection {
- transition: background-color .25s;
- }
- #filters label:hover,
- #filters .filter-selection:hover {
- background-color: hsla(0, 0%, 50%, .2);
- }
- .checkmate {
- position: relative;
- height: 12px;
- width: 12px;
- display: inline-flex;
- }
- .entry .checkmate {
- vertical-align: middle;
- margin: -2px 1ex 0 0;
- }
- #manage-text {
- display: flex;
- flex-wrap: wrap;
- padding-top: .35rem;
- }
- #manage-text > * {
- display: flex;
- align-items: center;
- }
- #manage-text > :not(:last-child):after {
- content: "|";
- margin: 0 .5em;
- }
- .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;
- 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);
- }
- .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 > * {
- margin: 0 6px 0 0;
- width: 20px;
- height: 20px;
- }
- .newUI .updater-icons > * {
- transition: opacity 1s;
- display: none;
- }
- .newUI .entry .svg-icon {
- fill: #999;
- }
- .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 {
- top: -4px;
- position: relative;
- 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 {
- fill: #ef6969;
- }
- .newUI .can-update[data-details$="locally edited"]:hover .update svg,
- .newUI .entry.update-problem:hover .check-update svg {
- fill: #fd4040;
- }
- .newUI .can-update[data-details$="locally edited"]:hover .update svg:hover,
- .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;
- max-height: calc(var(--num-targets) * 18px);
- }
- .newUI .applies-to.expanded .targets {
- max-height: none;
- }
- .newUI .target {
- display: block;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- max-width: calc(75vw - var(--header-width) - var(--actions-width) - var(--name-padding-left) - var(--name-padding-right) - 6rem);
- 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;
- 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: middle;
- margin: -1px 4px 0 -20px;
- transition: opacity .5s, filter .5s;
- /* workaround for the buggy CSS filter: images in the hidden overflow are shown on Mac */
- backface-visibility: hidden;
- display: none;
- }
- .newUI .favicons-grayed .target img {
- filter: grayscale(1);
- opacity: .25;
- }
- .newUI .has-favicons .target {
- padding-left: 20px;
- }
- .newUI .has-favicons .target img[src] {
- display: inline;
- }
- .newUI .entry:hover .target img {
- opacity: 1;
- filter: none;
- }
- /* 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 {
- content: " " var(--updateAllCheckSucceededSomeEdited);
- font-weight: normal;
- display: block;
- margin: .75em 0 .5em;
- }
- /* 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: transparent;
- }
- }
- .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);
- }
- .active #filters-stats {
- background-color: darkcyan;
- border-color: darkcyan;
- color: white;
- font-size: 0.7rem;
- font-weight: normal;
- padding: 2px 5px;
- position: relative;
- white-space: nowrap;
- }
- .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;
- }
- #search-wrapper, #sort-wrapper {
- display: flex;
- align-items: center;
- margin-bottom: .5rem;
- }
- #searchMode {
- margin-left: -1px;
- }
- #search-wrapper {
- margin-top: .35rem;
- }
- #sort-wrapper .sorter-selection {
- display: inline-flex;
- flex-grow: 1;
- position: relative;
- }
- #manage\.newUI\.sort {
- max-width: 100%;
- }
- #search, #manage\.newUI\.sort {
- min-width: 4em; /* reduces the big default width */
- flex-grow: 1;
- background: #fff;
- height: 20px;
- box-sizing: border-box;
- padding: 3px 3px 3px 4px;
- color: #000;
- border: 1px solid hsl(0, 0%, 66%);
- }
- #manage\.newUI\.sort {
- padding: 0 18px 0 4px;
- width: 100%;
- }
- .firefox #manage\.newUI\.sort {
- padding: 0;
- }
- #search-help, #sorter-help {
- margin: 0 -5px 0 2px;
- }
- #sort-wrapper .select-arrow {
- top: 3px;
- 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;
- }
- /* 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 */
- #import details:not([data-id="invalid"]) div:hover {
- background-color: rgba(128, 128, 128, .3);
- }
- #import details:not(:last-child) {
- margin-bottom: 1em;
- }
- #import details small > * {
- margin-left: 1.5em;
- }
- #import details > button {
- margin: .5em 1.25em 0;
- }
- .update-history-log {
- font-size: 11px;
- white-space: pre;
- overflow-x: hidden;
- text-overflow: ellipsis;
- }
- /* 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;
- }
- }
- @media (max-width: 1000px) {
- .newUI .entry > .style-info {
- display: none;
- }
- }
- @media (max-width: 850px) {
- :root {
- --name-padding-left: 34px;
- }
- body {
- display: table;
- }
- body.all-styles-hidden-by-filters:before {
- content: "\2191"; /* up arrow */
- top: calc(50% + 2.75rem);
- left: 2rem;
- }
- body.all-styles-hidden-by-filters:after {
- top: calc(50% + 4rem);
- left: 3.75rem;
- }
- html:not(.newUI) .applies-to {
- word-break: break-all;
- }
- #installed {
- table-layout: fixed;
- }
- .newUI .entry .actions {
- padding-right: 30px
- }
- #search-wrapper,
- #sort-wrapper,
- #header summary {
- max-width: 247px;
- }
- #message-box > div {
- left: 0;
- right: 0!important;
- margin-left: auto;
- margin-right: auto;
- }
- .filter-selection {
- max-width: 226px;
- }
- #header {
- display: table-header-group;
- height: auto;
- padding: 0;
- width: 100%;
- position: static;
- border-right: none;
- border-bottom: 1px dashed #AAA;
- }
- #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 {
- margin-top: 0;
- padding-left: 0;
- }
- #header h1,
- #header h2,
- #header h3,
- #backup-message {
- display: none;
- }
- #backup-buttons {
- margin-top: 0;
- }
- #header summary {
- margin-top: 0;
- padding-bottom: .25rem;
- }
- .newUI .entry {
- padding: 0;
- }
- .newUI .entry .checkmate {
- position: absolute;
- left: 14px;
- top: 0;
- bottom: 0;
- margin: auto;
- }
- .newUI .entry .style-name {
- text-indent: unset;
- }
- .newUI .entry .actions {
- width: 104px;
- padding: .5rem 0 .5rem 6px;
- }
- .newUI .entry .applies-to {
- padding: .25rem .5rem .25rem 0;
- }
- .newUI .entry .target {
- max-width: 100%;
- padding-right: 0;
- }
- .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;
- }
- #filters summary h2 {
- margin-left: -2px;
- }
- }
|