2017-11-29 12:14:14 +00:00
|
|
|
:root {
|
|
|
|
--header-width: 280px;
|
|
|
|
--checkbox-width: 24px;
|
|
|
|
--name-padding-left: 40px;
|
|
|
|
--name-padding-right: 40px;
|
|
|
|
--actions-width: 75px;
|
|
|
|
--onoffswitch-width: 60px;
|
|
|
|
}
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
font: 12px arial, sans-serif;
|
2017-04-09 06:43:51 +00:00
|
|
|
/* Firefox: fill the entire page for drag'n'drop to work */
|
|
|
|
display: flex;
|
|
|
|
height: 100%;
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
2017-12-03 23:38:44 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2017-11-27 22:26:20 +00:00
|
|
|
a, .disabled a:hover {
|
2017-04-01 04:37:25 +00:00
|
|
|
color: #000;
|
|
|
|
transition: color .5s;
|
|
|
|
text-decoration-skip: ink;
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
2017-04-01 04:37:25 +00:00
|
|
|
a:hover {
|
|
|
|
color: #666;
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
2017-09-09 13:04:10 +00:00
|
|
|
select {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
2017-09-09 13:06:43 +00:00
|
|
|
.nowrap {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nowrap > * {
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow-x: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
#header {
|
2017-11-29 12:14:14 +00:00
|
|
|
width: var(--header-width);
|
2017-03-21 01:32:38 +00:00
|
|
|
height: 100vh;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
padding: 15px;
|
|
|
|
border-right: 1px dashed #AAA;
|
|
|
|
-webkit-box-shadow: 0 0 50px -18px black;
|
2017-11-29 12:14:14 +00:00
|
|
|
box-shadow: 0 0 50px -18px black;
|
2017-03-21 01:32:38 +00:00
|
|
|
overflow: auto;
|
|
|
|
box-sizing: border-box;
|
2017-04-16 07:19:12 +00:00
|
|
|
z-index: 9;
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
2017-08-18 05:30:55 +00:00
|
|
|
#check-all-updates {
|
|
|
|
max-width: 220px;
|
|
|
|
}
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
#header h1 {
|
|
|
|
margin-top: 0;
|
2017-12-05 21:05:23 +00:00
|
|
|
margin-bottom: .3em;
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
2017-04-09 16:47:51 +00:00
|
|
|
#header a[href^="edit"] {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2017-11-22 14:05:28 +00:00
|
|
|
#add-style-label {
|
|
|
|
margin-right: .25em;
|
|
|
|
margin-bottom: .25em;
|
|
|
|
}
|
|
|
|
|
2017-12-06 03:22:40 +00:00
|
|
|
#add-style-as-usercss-wrapper {
|
2017-12-05 17:58:39 +00:00
|
|
|
display: inline-flex;
|
|
|
|
}
|
|
|
|
|
2017-12-06 03:22:40 +00:00
|
|
|
#add-style-as-usercss-wrapper:not(:hover) input:not(:checked) ~ a svg {
|
2017-11-22 18:13:09 +00:00
|
|
|
fill: #aaa;
|
|
|
|
}
|
|
|
|
|
2017-12-04 16:14:04 +00:00
|
|
|
#usercss-wiki svg {
|
2017-12-05 17:58:39 +00:00
|
|
|
margin-top: -4px;
|
2017-11-22 14:05:28 +00:00
|
|
|
}
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
#installed {
|
|
|
|
position: relative;
|
2017-11-29 12:14:14 +00:00
|
|
|
padding-left: var(--header-width);
|
2017-04-16 07:19:12 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.entry {
|
|
|
|
margin: 0;
|
2017-03-23 04:47:30 +00:00
|
|
|
padding: 1.25em 2em;
|
2017-03-21 01:32:38 +00:00
|
|
|
border-top: 1px solid #ddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entry:first-child {
|
|
|
|
border-top: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.svg-icon {
|
|
|
|
cursor: pointer;
|
|
|
|
vertical-align: middle;
|
2017-04-01 04:37:25 +00:00
|
|
|
transition: fill .5s;
|
2017-04-05 13:14:59 +00:00
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
2017-11-27 05:16:42 +00:00
|
|
|
fill: #666;
|
2017-04-13 07:54:56 +00:00
|
|
|
}
|
|
|
|
|
2017-04-26 20:55:54 +00:00
|
|
|
.svg-icon:hover {
|
2017-04-01 04:37:25 +00:00
|
|
|
fill: #000;
|
|
|
|
}
|
|
|
|
|
2017-04-13 07:54:56 +00:00
|
|
|
.svg-icon.info {
|
|
|
|
width: 14px;
|
|
|
|
height: 16px;
|
|
|
|
margin-left: .5ex;
|
|
|
|
}
|
|
|
|
|
2017-12-06 21:11:30 +00:00
|
|
|
.svg-icon.config {
|
2017-11-27 05:16:42 +00:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
|
2017-04-01 04:37:25 +00:00
|
|
|
.homepage {
|
|
|
|
margin-left: 0.1em;
|
|
|
|
margin-right: 0.1em;
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
2017-04-10 08:26:30 +00:00
|
|
|
.homepage[href=""] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-04-05 13:14:59 +00:00
|
|
|
.homepage .svg-icon {
|
|
|
|
margin-top: -4px;
|
|
|
|
margin-left: .5ex;
|
|
|
|
}
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
.style-name {
|
|
|
|
margin-top: .25em;
|
2017-09-30 17:14:44 +00:00
|
|
|
overflow-wrap: break-word;
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.style-name a, .style-edit-link {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.applies-to {
|
2017-09-30 17:14:44 +00:00
|
|
|
overflow-wrap: break-word;
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.applies-to,
|
|
|
|
.actions {
|
|
|
|
padding-left: 15px;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2017-03-23 04:47:30 +00:00
|
|
|
.actions {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2017-04-02 06:06:28 +00:00
|
|
|
align-items: center;
|
2017-03-23 04:47:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.actions > * {
|
|
|
|
margin-bottom: .25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.actions > *:not(:last-child) {
|
|
|
|
margin-right: .25rem;
|
|
|
|
}
|
|
|
|
|
2017-04-05 13:14:59 +00:00
|
|
|
.applies-to label {
|
2017-03-21 01:32:38 +00:00
|
|
|
margin-right: .5ex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.applies-to .target:hover {
|
|
|
|
background-color: rgba(128, 128, 128, .15);
|
|
|
|
}
|
|
|
|
|
2017-04-05 13:14:59 +00:00
|
|
|
.applies-to-extra:not([open]) {
|
2017-03-21 01:32:38 +00:00
|
|
|
display: inline;
|
2017-04-05 13:14:59 +00:00
|
|
|
margin-left: 1ex;
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
2017-11-29 16:05:47 +00:00
|
|
|
.applies-to-extra-expander {
|
2017-03-21 01:32:38 +00:00
|
|
|
font-weight: bold;
|
|
|
|
cursor: pointer;
|
2017-04-13 05:32:41 +00:00
|
|
|
outline: none;
|
2017-03-24 02:51:44 +00:00
|
|
|
}
|
|
|
|
|
2017-11-29 16:05:47 +00:00
|
|
|
.applies-to-extra-expander {
|
2017-03-21 01:32:38 +00:00
|
|
|
list-style-type: none; /* for FF, allegedly */
|
|
|
|
}
|
|
|
|
|
2017-11-29 16:05:47 +00:00
|
|
|
.applies-to-extra-expander::-webkit-details-marker {
|
2017-03-21 01:32:38 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-11-26 17:24:42 +00:00
|
|
|
.disabled h2::after, .entry.usercss .style-name-link::after {
|
2017-04-18 15:19:02 +00:00
|
|
|
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-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2017-11-27 22:26:20 +00:00
|
|
|
.disabled h2 .style-name-link,
|
2017-11-29 14:56:13 +00:00
|
|
|
.disabled h2::after,
|
2017-11-29 14:37:51 +00:00
|
|
|
.disabled .actions,
|
2017-11-27 22:26:20 +00:00
|
|
|
.disabled .applies-to {
|
2017-11-29 21:14:17 +00:00
|
|
|
opacity: 0.6;
|
2017-11-27 22:26:20 +00:00
|
|
|
font-weight: normal;
|
2017-11-29 14:37:51 +00:00
|
|
|
transition: opacity .5s .1s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.disabled:hover .actions {
|
|
|
|
opacity: 1;
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.disabled .disable {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.enabled .enable {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-11-29 16:05:47 +00:00
|
|
|
/* collapsibles */
|
2017-12-05 21:05:23 +00:00
|
|
|
#header details:not(#filters),
|
|
|
|
#add-style-wrapper {
|
|
|
|
padding-bottom: .7em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#add-style-wrapper,
|
|
|
|
#options :last-child,
|
|
|
|
#backup :last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2017-11-29 16:05:47 +00:00
|
|
|
|
2017-12-05 21:05:23 +00:00
|
|
|
#header details:not([open]),
|
2017-11-29 16:05:47 +00:00
|
|
|
#header details:not([open]) h2 {
|
2017-12-05 21:05:23 +00:00
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header details[open] summary {
|
|
|
|
padding-bottom: .5em;
|
2017-11-29 16:05:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#header summary {
|
|
|
|
align-items: center;
|
|
|
|
margin-left: -13px;
|
|
|
|
cursor: pointer;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header summary h2 {
|
|
|
|
display: inline-block;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2017-04-05 13:14:59 +00:00
|
|
|
/* compact layout */
|
|
|
|
|
2017-04-09 04:53:16 +00:00
|
|
|
.newUI #installed {
|
2017-04-05 13:14:59 +00:00
|
|
|
display: table;
|
2017-04-09 04:53:16 +00:00
|
|
|
margin-top: .75rem;
|
|
|
|
margin-bottom: .75rem;
|
2017-04-05 13:14:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.newUI .disabled {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.newUI .entry {
|
|
|
|
display: table-row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.newUI .entry:nth-child(2n) {
|
|
|
|
background-color: rgba(128, 128, 128, 0.05);
|
|
|
|
}
|
|
|
|
|
|
|
|
.newUI .entry > * {
|
|
|
|
padding: .9rem 0 1rem;
|
|
|
|
margin: 0;
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2017-12-03 23:40:22 +00:00
|
|
|
/************ checkbox & select************/
|
2017-04-05 13:14:59 +00:00
|
|
|
|
|
|
|
.newUI .checker {
|
2017-12-03 23:40:22 +00:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#newUIoptions > div {
|
|
|
|
margin: 4px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-selection {
|
|
|
|
position: relative;
|
2017-12-05 21:05:23 +00:00
|
|
|
left: -9px;
|
2017-12-03 23:40:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#header label {
|
|
|
|
padding-left: 16px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header .filter-selection label {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
height: 18px;
|
|
|
|
width: 100%;
|
|
|
|
padding: 0 0 0 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header .filter-selection label .checkmate {
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-top: -2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.newUI #newUIoptions > label {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-selection select {
|
|
|
|
height: 18px;
|
|
|
|
outline: none;
|
|
|
|
border: none;
|
|
|
|
max-width: 100%;
|
2017-12-04 16:14:04 +00:00
|
|
|
padding-left: 4px;
|
2017-12-03 23:40:22 +00:00
|
|
|
padding-right: 14px;
|
2017-12-05 21:05:23 +00:00
|
|
|
margin-left: 4px;
|
2017-12-04 16:14:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
2017-12-04 16:14:04 +00:00
|
|
|
left: 16px;
|
2017-12-03 23:40:22 +00:00
|
|
|
}
|
|
|
|
|
2017-12-05 21:05:23 +00:00
|
|
|
#filters label,
|
|
|
|
#filters .filter-selection {
|
2017-12-03 23:40:22 +00:00
|
|
|
transition: background-color .25s;
|
|
|
|
}
|
|
|
|
|
2017-12-05 21:05:23 +00:00
|
|
|
#filters label:hover,
|
|
|
|
#filters .filter-selection:hover {
|
2017-12-03 23:40:22 +00:00
|
|
|
background-color: hsla(0, 0%, 50%, .2);
|
|
|
|
}
|
|
|
|
|
2017-12-06 22:39:15 +00:00
|
|
|
#only-updates {
|
|
|
|
position: relative;
|
|
|
|
left: -5px;
|
|
|
|
margin-top: 2px;
|
|
|
|
margin-bottom: 2px;
|
|
|
|
}
|
|
|
|
|
2017-12-03 23:40:22 +00:00
|
|
|
.checkmate {
|
2017-04-05 13:14:59 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
.newUI .entry .svg-icon.checked,
|
|
|
|
.newUI .entry:hover .svg-icon.checked {
|
|
|
|
fill: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.newUI .entry input[type="checkbox"]:not(.slider) {
|
|
|
|
pointer-events: all;
|
|
|
|
}
|
|
|
|
|
2017-04-05 13:14:59 +00:00
|
|
|
.newUI .style-name {
|
|
|
|
font-size: 14px;
|
|
|
|
font-family: sans-serif;
|
2017-11-29 14:37:51 +00:00
|
|
|
text-indent: calc(var(--checkbox-width) - var(--name-padding-left) - 4px);
|
2017-11-29 12:14:14 +00:00
|
|
|
padding-left: var(--name-padding-left);
|
|
|
|
padding-right: var(--name-padding-right);
|
2017-11-26 17:25:25 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2017-11-27 22:26:20 +00:00
|
|
|
.newUI .entry.enabled .style-name:hover .style-name-link {
|
2017-11-26 17:25:25 +00:00
|
|
|
color: hsla(180, 100%, 15%, 1);
|
2017-04-05 13:14:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.newUI .homepage .svg-icon {
|
|
|
|
position: absolute;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-left: -28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.newUI .actions {
|
2017-11-29 12:14:14 +00:00
|
|
|
width: var(--actions-width);
|
2017-04-05 13:14:59 +00:00
|
|
|
height: 20px;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.newUI .actions > * {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.newUI .actions .svg-icon {
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2017-04-05 13:14:59 +00:00
|
|
|
.newUI .checking-update .check-update {
|
|
|
|
opacity: 0;
|
|
|
|
display: inline;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.newUI .can-update .update,
|
2017-04-22 12:09:48 +00:00
|
|
|
.newUI .no-update:not(.update-problem):not(.update-done) .up-to-date,
|
2017-04-05 13:14:59 +00:00
|
|
|
.newUI .no-update.update-problem .check-update,
|
|
|
|
.newUI .update-done .updated {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2017-12-02 04:07:12 +00:00
|
|
|
.newUI .up-to-date svg,
|
|
|
|
.newUI .updated svg {
|
|
|
|
cursor: auto;
|
|
|
|
}
|
|
|
|
|
2017-04-14 20:38:10 +00:00
|
|
|
.newUI .update-done .updated svg {
|
2017-04-18 13:11:57 +00:00
|
|
|
top: -4px;
|
2017-04-14 20:38:10 +00:00
|
|
|
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);
|
2017-04-14 20:38:10 +00:00
|
|
|
}
|
|
|
|
|
2017-04-09 16:04:00 +00:00
|
|
|
.newUI .can-update .update,
|
|
|
|
.newUI .no-update.update-problem .check-update {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2017-04-25 11:17:37 +00:00
|
|
|
.newUI .can-update[data-details$="locally edited"] .update svg,
|
2017-04-24 13:29:48 +00:00
|
|
|
.newUI .update-problem .check-update svg {
|
2017-04-21 12:34:58 +00:00
|
|
|
fill: #ef6969;
|
|
|
|
}
|
|
|
|
|
2017-04-25 11:17:37 +00:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2017-04-25 11:17:37 +00:00
|
|
|
.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;
|
2017-04-05 13:14:59 +00:00
|
|
|
}
|
|
|
|
|
2017-04-25 11:17:37 +00:00
|
|
|
.newUI .updater-icons > :not(.check-update):after {
|
2017-04-09 16:04:00 +00:00
|
|
|
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;
|
|
|
|
z-index: 999;
|
|
|
|
}
|
|
|
|
|
2017-04-25 11:17:37 +00:00
|
|
|
.newUI .update-problem .check-update:after {
|
2017-04-09 16:04:00 +00:00
|
|
|
background-color: red;
|
|
|
|
border: 1px solid #d40000;
|
|
|
|
color: white;
|
|
|
|
animation: none;
|
|
|
|
}
|
|
|
|
|
2017-04-25 11:17:37 +00:00
|
|
|
.newUI .can-update .update:after {
|
2017-04-25 22:44:09 +00:00
|
|
|
animation: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.newUI .can-update:not([data-details$="locally edited"]) .update:after {
|
2017-04-09 16:04:00 +00:00
|
|
|
background-color: #c0fff0;
|
|
|
|
border: 1px solid #89cac9;
|
|
|
|
}
|
|
|
|
|
2017-04-05 13:14:59 +00:00
|
|
|
.newUI .applies-to {
|
|
|
|
padding-top: .25rem;
|
|
|
|
padding-bottom: .25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.newUI .targets {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.newUI .applies-to.expanded .targets {
|
2017-09-15 10:52:21 +00:00
|
|
|
max-height: none;
|
2017-04-05 13:14:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.newUI .target {
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2017-11-29 12:14:14 +00:00
|
|
|
max-width: calc(100vw - var(--header-width) - var(--actions-width) - var(--name-padding-left) - 25vw - var(--name-padding-right));
|
2017-04-05 13:14:59 +00:00
|
|
|
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-04-10 08:26:30 +00:00
|
|
|
.newUI .applies-to:not(.has-more) .expander {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-04-09 06:43:51 +00:00
|
|
|
.newUI .has-favicons .applies-to .expander {
|
|
|
|
padding-left: 20px;
|
|
|
|
}
|
|
|
|
|
2017-04-05 13:14:59 +00:00
|
|
|
.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);
|
2017-04-13 12:06:43 +00:00
|
|
|
/* workaround for the buggy CSS filter: images in the hidden overflow are shown on Mac */
|
|
|
|
backface-visibility: hidden;
|
2017-04-05 13:14:59 +00:00
|
|
|
opacity: .25;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-04-09 04:53:16 +00:00
|
|
|
.newUI .has-favicons .target {
|
|
|
|
padding-left: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.newUI .has-favicons .target img[src] {
|
2017-04-05 13:14:59 +00:00
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.newUI .entry:hover .target img {
|
|
|
|
opacity: 1;
|
|
|
|
/* unprefixed since Chrome 53 */
|
|
|
|
-webkit-filter: grayscale(0);
|
|
|
|
filter: grayscale(0);
|
|
|
|
}
|
|
|
|
|
2017-04-08 11:03:54 +00:00
|
|
|
#newUIoptions {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.newUI #newUIoptions {
|
|
|
|
display: initial;
|
|
|
|
}
|
|
|
|
|
2017-04-13 07:54:56 +00:00
|
|
|
#newUIoptions > * {
|
2017-04-05 13:14:59 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: auto;
|
2017-04-13 07:54:56 +00:00
|
|
|
flex-wrap: wrap;
|
2017-12-06 06:39:45 +00:00
|
|
|
position: relative;
|
2017-04-05 13:14:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#newUIoptions input[type="number"] {
|
|
|
|
width: 3em;
|
|
|
|
margin-right: .5em;
|
|
|
|
}
|
|
|
|
|
2017-12-06 06:39:45 +00:00
|
|
|
#newUIoptions [data-toggle-on-click] {
|
|
|
|
transform: rotate(-90deg);
|
|
|
|
cursor: pointer;
|
|
|
|
right: -16px;
|
|
|
|
top: 0;
|
|
|
|
pointer-events: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#newUIoptions [data-toggle-on-click][open] {
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
|
2017-04-05 13:14:59 +00:00
|
|
|
input[id^="manage.newUI"] {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
2017-04-13 07:54:56 +00:00
|
|
|
#faviconsHelp {
|
|
|
|
overflow-y: auto;
|
|
|
|
font-size: 90%;
|
|
|
|
padding: 1ex 0 2ex 16px;
|
|
|
|
}
|
|
|
|
|
2017-04-18 18:49:04 +00:00
|
|
|
#faviconsHelp div {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: 1ex;
|
|
|
|
}
|
2017-04-13 07:54:56 +00:00
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
/* Default, no update buttons */
|
|
|
|
.update,
|
|
|
|
.check-update {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check update button for things that can*/
|
2017-04-09 04:53:16 +00:00
|
|
|
.updatable .check-update {
|
2017-03-21 01:32:38 +00:00
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Update check in progress */
|
|
|
|
.checking-update .check-update {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Updates available */
|
|
|
|
.can-update .update {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2017-04-25 11:17:37 +00:00
|
|
|
.can-update[data-details$="locally edited"] button.update:after {
|
|
|
|
content: "*";
|
|
|
|
}
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
.can-update .check-update {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Updates not available */
|
2017-04-25 11:17:37 +00:00
|
|
|
.no-update:not(.update-problem) .check-update {
|
2017-03-21 01:32:38 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Updates done */
|
|
|
|
.update-done .check-update {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-04-14 20:25:54 +00:00
|
|
|
#apply-all-updates:after {
|
|
|
|
content: " (" attr(data-value) ")";
|
|
|
|
}
|
|
|
|
|
2017-04-26 10:56:32 +00:00
|
|
|
.update-in-progress #check-all-updates {
|
2017-04-14 20:25:54 +00:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2017-04-26 10:56:32 +00:00
|
|
|
.update-in-progress #update-progress {
|
2017-04-14 20:25:54 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
background-color: currentColor;
|
|
|
|
content: "";
|
|
|
|
opacity: .35;
|
|
|
|
}
|
|
|
|
|
2017-04-25 11:17:37 +00:00
|
|
|
#check-all-updates-force {
|
|
|
|
margin-top: 1ex;
|
|
|
|
}
|
|
|
|
|
2017-03-23 04:47:30 +00:00
|
|
|
/* highlight updated/added styles */
|
|
|
|
.highlight {
|
|
|
|
animation: highlight 10s cubic-bezier(0,.82,.47,.98);
|
|
|
|
}
|
2017-11-29 02:39:24 +00:00
|
|
|
.highlight-quick {
|
|
|
|
animation: highlight .5s;
|
|
|
|
}
|
2017-03-23 04:47:30 +00:00
|
|
|
|
|
|
|
@keyframes highlight {
|
|
|
|
from {
|
|
|
|
background-color: rgba(128, 128, 128, .5);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
background-color: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
.hidden {
|
2017-04-16 11:24:49 +00:00
|
|
|
display: none !important;
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
2017-12-05 21:05:23 +00:00
|
|
|
#filters label {
|
2017-04-16 11:24:49 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2017-12-03 23:40:22 +00:00
|
|
|
padding-left: 20px;
|
|
|
|
}
|
|
|
|
|
2017-12-05 21:05:23 +00:00
|
|
|
#filters label input[type="checkbox"]:not(.slider),
|
|
|
|
#filters label input[type="checkbox"]:not(.slider):checked + .svg-icon.checked{
|
2017-12-03 23:40:22 +00:00
|
|
|
left: 4px;
|
2017-11-26 17:36:43 +00:00
|
|
|
}
|
|
|
|
|
2017-08-15 10:56:51 +00:00
|
|
|
#filters {
|
|
|
|
border: 1px solid transparent;
|
|
|
|
}
|
|
|
|
|
2017-12-06 07:37:01 +00:00
|
|
|
#filters summary h2 {
|
|
|
|
margin-left: -4px;
|
|
|
|
}
|
|
|
|
|
2017-12-05 21:05:23 +00:00
|
|
|
.active #filters-stats {
|
2017-08-15 10:56:51 +00:00
|
|
|
background-color: darkcyan;
|
|
|
|
border-color: darkcyan;
|
|
|
|
color: white;
|
2017-12-05 21:05:23 +00:00
|
|
|
font-size: 0.7rem;
|
|
|
|
font-weight: normal;
|
|
|
|
padding: 2px 5px;
|
|
|
|
position: relative;
|
|
|
|
top: -2px;
|
2017-08-15 10:56:51 +00:00
|
|
|
}
|
|
|
|
|
2017-12-06 01:18:51 +00:00
|
|
|
#reset-filters {
|
|
|
|
position: absolute;
|
|
|
|
margin-top: 2px;
|
|
|
|
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 {
|
|
|
|
fill: hsla(180, 50%, 27%, 1);
|
|
|
|
}
|
|
|
|
|
2017-12-06 01:21:30 +00:00
|
|
|
#filters summary:not(.active) #reset-filters,
|
|
|
|
#filters summary:not(.active) #filters-stats {
|
2017-08-15 10:56:51 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-12-06 06:39:45 +00:00
|
|
|
#search-wrapper {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
#search {
|
2017-12-06 06:39:45 +00:00
|
|
|
flex-grow: 1;
|
2017-12-05 21:05:23 +00:00
|
|
|
margin: 0.25rem 0 0;
|
2017-03-21 01:32:38 +00:00
|
|
|
padding-left: 0.25rem;
|
|
|
|
border-width: 1px;
|
|
|
|
}
|
|
|
|
|
2017-12-06 06:39:45 +00:00
|
|
|
#search-wrapper .info {
|
|
|
|
margin: 4px -5px 0 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#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: 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;
|
|
|
|
}
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
#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;
|
|
|
|
}
|
|
|
|
|
2017-03-24 02:51:44 +00:00
|
|
|
/* 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) {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#message-box details small div {
|
|
|
|
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-03-21 01:32:38 +00:00
|
|
|
@keyframes fadein {
|
|
|
|
from {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeout {
|
|
|
|
from {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-05 13:14:59 +00:00
|
|
|
@keyframes fadein-25pct {
|
|
|
|
from {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: .25;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
@media (max-width: 675px) {
|
|
|
|
#installed {
|
|
|
|
position: static;
|
2017-04-16 07:19:12 +00:00
|
|
|
padding-left: 0;
|
2017-03-21 01:32:38 +00:00
|
|
|
overflow: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header p,
|
|
|
|
#backup {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2017-03-31 22:49:51 +00:00
|
|
|
#find-editor-styles {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
#backup {
|
|
|
|
margin-right: 1em;
|
|
|
|
}
|
|
|
|
|
2017-12-05 21:05:23 +00:00
|
|
|
#backup p {
|
2017-03-21 01:32:38 +00:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entry {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
2017-04-09 16:47:51 +00:00
|
|
|
|
|
|
|
@media (max-width: 800px) {
|
|
|
|
body {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2017-12-03 23:38:44 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2017-08-27 12:38:53 +00:00
|
|
|
#header {
|
2017-04-09 16:47:51 +00:00
|
|
|
height: auto;
|
|
|
|
position: static;
|
|
|
|
width: auto;
|
|
|
|
border-right: none;
|
|
|
|
border-bottom: 1px dashed #AAA;
|
|
|
|
overflow: visible;
|
2017-08-27 12:38:53 +00:00
|
|
|
-webkit-column-count: 2;
|
|
|
|
-moz-column-count: 2;
|
|
|
|
column-count: 2;
|
2017-04-09 16:47:51 +00:00
|
|
|
}
|
|
|
|
|
2017-08-27 12:38:53 +00:00
|
|
|
#installed {
|
2017-04-16 07:19:12 +00:00
|
|
|
padding-left: 0;
|
2017-04-09 16:47:51 +00:00
|
|
|
}
|
|
|
|
|
2017-08-27 12:38:53 +00:00
|
|
|
#header h1,
|
|
|
|
#header h2,
|
|
|
|
#header h3,
|
|
|
|
#backup-message {
|
|
|
|
display: none;
|
2017-04-09 16:47:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.newUI .entry {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.newUI .style-name {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.newUI .target {
|
2017-11-29 12:14:14 +00:00
|
|
|
max-width: calc(50vw - var(--actions-width));
|
2017-04-09 16:47:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
2017-08-27 12:38:53 +00:00
|
|
|
#header {
|
|
|
|
-webkit-column-count: 1;
|
|
|
|
-moz-column-count: 1;
|
|
|
|
column-count: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.newUI #header > *:not(h1),
|
|
|
|
.newUI #newUIoptions,
|
2017-12-05 21:05:23 +00:00
|
|
|
#newUIoptions > * {
|
2017-04-09 16:47:51 +00:00
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2017-08-27 12:38:53 +00:00
|
|
|
#header label {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2017-04-09 16:47:51 +00:00
|
|
|
.newUI .style-name {
|
|
|
|
word-break: break-all;
|
|
|
|
}
|
|
|
|
}
|
2017-12-06 07:37:01 +00:00
|
|
|
|
|
|
|
@supports (-moz-appearance: none) {
|
|
|
|
.chromium-only {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header .filter-selection label .checkmate {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-selection select {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.select-resizer {
|
|
|
|
left: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#reset-filters {
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#filters summary h2 {
|
|
|
|
margin-left: -2px;
|
|
|
|
}
|
|
|
|
}
|