2017-11-29 12:14:14 +00:00
|
|
|
:root {
|
2018-11-25 23:35:54 +00:00
|
|
|
--icon-size: 20px;
|
|
|
|
--narrow-column: 60px;
|
|
|
|
--header-height: 40px;
|
2018-11-29 04:21:13 +00:00
|
|
|
--toolbar-height: 35px;
|
2018-11-25 23:35:54 +00:00
|
|
|
--entry-header-height: 25px;
|
2017-11-29 12:14:14 +00:00
|
|
|
--onoffswitch-width: 60px;
|
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
html {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
*, *:before, *:after {
|
|
|
|
box-sizing: inherit;
|
|
|
|
}
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
body {
|
|
|
|
margin: 0;
|
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
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
body.dark {
|
|
|
|
background: #181818;
|
|
|
|
color: #ddd;
|
2017-12-03 23:38:44 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
a,
|
|
|
|
.disabled a:hover {
|
2017-04-01 04:37:25 +00:00
|
|
|
color: #000;
|
|
|
|
transition: color .5s;
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
a {
|
|
|
|
cursor: pointer;
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
a:hover {
|
|
|
|
color: #666;
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.invisible {
|
|
|
|
visibility: hidden;
|
|
|
|
pointer-events: none;
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.svg-icon {
|
|
|
|
cursor: pointer;
|
|
|
|
vertical-align: middle;
|
2017-04-01 04:37:25 +00:00
|
|
|
transition: fill .5s;
|
2018-11-25 23:35:54 +00:00
|
|
|
width: var(--icon-size);
|
|
|
|
height: var(--icon-size);
|
2017-11-27 05:16:42 +00:00
|
|
|
fill: #666;
|
2017-04-13 07:54:56 +00:00
|
|
|
}
|
|
|
|
|
2018-11-27 23:50:11 +00:00
|
|
|
.entry-actions > a,
|
|
|
|
.bulk-actions-select,
|
|
|
|
#bulk-actions-apply {
|
2018-11-25 23:35:54 +00:00
|
|
|
margin-left: 2px;
|
2017-04-13 07:54:56 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.svg-icon:hover {
|
|
|
|
fill: #000;
|
2017-11-27 05:16:42 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
#header {
|
|
|
|
background: #111;
|
|
|
|
color: #ddd;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
width: 100vw;
|
|
|
|
height: var(--header-height);
|
|
|
|
z-index: 100;
|
|
|
|
padding: 2px 8px;
|
|
|
|
margin: 0;
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
#header .ext-version {
|
|
|
|
font-size: .5em;
|
2017-04-10 08:26:30 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
#header svg {
|
|
|
|
vertical-align: bottom;
|
2017-04-05 13:14:59 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
#header .tabs {
|
|
|
|
float: right;
|
|
|
|
margin-right: 20px;
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
#header .tabs a {
|
|
|
|
font-size: .7em;
|
|
|
|
color: #aaa;
|
2017-03-21 01:32:38 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
#header .tabs a.active,
|
|
|
|
#header .tabs a:hover {
|
|
|
|
color: #c0fff0;
|
2017-03-23 04:47:30 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
#header:lang(ja) {
|
2017-04-18 15:19:02 +00:00
|
|
|
font-weight: normal;
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
#installed .entry-header {
|
|
|
|
background: #eee;
|
|
|
|
position: fixed;
|
|
|
|
top: var(--header-height);
|
|
|
|
height: var(--entry-header-height);
|
|
|
|
z-index: 100;
|
2017-12-05 21:05:23 +00:00
|
|
|
}
|
2017-11-29 16:05:47 +00:00
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
#installed .entry,
|
|
|
|
#installed .entry-header {
|
|
|
|
width: calc(100vw - 1.5em);
|
2018-07-16 16:37:01 +00:00
|
|
|
display: flex;
|
2018-11-25 23:35:54 +00:00
|
|
|
flex: 0 0 var(--narrow-column);
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
align-content: stretch;
|
2017-11-29 16:05:47 +00:00
|
|
|
align-items: center;
|
2018-11-25 23:35:54 +00:00
|
|
|
justify-content: center;
|
2017-11-29 16:05:47 +00:00
|
|
|
}
|
|
|
|
|
2018-11-27 03:28:11 +00:00
|
|
|
#installed {
|
2018-11-25 23:35:54 +00:00
|
|
|
margin-top: calc(var(--header-height) + var(--entry-header-height));
|
2017-04-05 13:14:59 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
#installed .entry:last-child {
|
|
|
|
margin-bottom: 10px;
|
2017-04-05 13:14:59 +00:00
|
|
|
}
|
|
|
|
|
2018-11-27 03:28:11 +00:00
|
|
|
.entry-header {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0 4px;
|
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.entry {
|
2017-04-05 13:14:59 +00:00
|
|
|
margin: 0;
|
2018-11-25 23:35:54 +00:00
|
|
|
padding: 4px 8px;
|
|
|
|
border-top: 1px solid #ddd;
|
2017-12-23 00:11:46 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.entry-col {
|
|
|
|
padding-left: 4px;
|
|
|
|
flex: 1;
|
|
|
|
justify-content: space-evenly;
|
2017-04-05 13:14:59 +00:00
|
|
|
}
|
2017-12-23 00:11:46 +00:00
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.center-text,
|
|
|
|
.entry-filter,
|
|
|
|
.entry-state,
|
|
|
|
.entry-sort,
|
|
|
|
.entry-last-update {
|
|
|
|
text-align: center;
|
|
|
|
justify-content: center;
|
|
|
|
max-width: var(--narrow-column);
|
|
|
|
padding: 0;
|
2017-12-03 23:40:22 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.header-version,
|
|
|
|
.entry-version {
|
|
|
|
max-width: var(--narrow-column);
|
2017-12-03 23:40:22 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.header-name,
|
|
|
|
.entry-name {
|
|
|
|
flex: 3;
|
2017-12-03 23:40:22 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.header-id,
|
|
|
|
.entry-id {
|
|
|
|
text-align: right;
|
|
|
|
padding-right: 8px;
|
|
|
|
max-width: 50px;
|
2017-12-03 23:40:22 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.entry, .targets {
|
|
|
|
position: relative;
|
2017-12-03 23:40:22 +00:00
|
|
|
display: flex;
|
2018-11-25 23:35:54 +00:00
|
|
|
justify-content: start;
|
2017-12-03 23:40:22 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.entry-name {
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
font-weight: 600;
|
|
|
|
text-decoration: none;
|
|
|
|
margin-right: 8px;
|
2017-12-03 23:40:22 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.entry-sort {
|
|
|
|
cursor: move;
|
2017-12-03 23:40:22 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.targets {
|
2018-08-06 15:48:05 +00:00
|
|
|
flex-wrap: wrap;
|
2017-12-13 03:53:25 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.targets .target {
|
|
|
|
max-width: var(--icon-size);
|
|
|
|
max-height: var(--icon-size);
|
|
|
|
width: var(--icon-size);
|
|
|
|
margin-left: 2px;
|
2017-12-13 03:53:25 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.applies-to-extra img.target {
|
|
|
|
margin-bottom: 2px;
|
2017-12-03 23:40:22 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
#installed.faviconsGray img.target {
|
|
|
|
-webkit-filter: grayscale(1);
|
|
|
|
filter: grayscale(1);
|
2017-12-03 23:40:22 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.entry.odd {
|
|
|
|
background-color: rgba(128, 128, 128, 0.05);
|
2017-11-26 17:25:25 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.entry:hover div.entry-name:before {
|
2017-11-26 17:25:25 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2018-11-25 23:37:08 +00:00
|
|
|
body.dragging .entry:not(.dragging) .entry-name:before {
|
|
|
|
/* hide the sustained hover */
|
|
|
|
background-image: none !important;
|
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.entry.dragging {
|
2018-11-25 23:37:08 +00:00
|
|
|
background: linear-gradient(to right, hsla(350, 50%, 30%, 0.2), hsla(180, 20%, 10%, 0.05) 50%, transparent);
|
2018-11-25 23:35:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.entry.enabled .entry-name:hover .style-name {
|
2017-11-26 17:25:25 +00:00
|
|
|
color: hsla(180, 100%, 15%, 1);
|
2017-04-05 13:14:59 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.entry:hover .svg-icon:hover {
|
|
|
|
fill: #000;
|
2017-12-23 00:11:46 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.entry-label {
|
|
|
|
padding: 2px 4px;
|
|
|
|
margin-left: 2px;
|
|
|
|
border-radius: 4px;
|
|
|
|
font-size: .8em;
|
2018-11-29 04:21:13 +00:00
|
|
|
text-transform: lowercase;
|
2017-12-23 00:11:46 +00:00
|
|
|
}
|
|
|
|
|
2018-11-29 04:21:13 +00:00
|
|
|
.entry-label[data-label="usercss"] {
|
2018-11-25 23:35:54 +00:00
|
|
|
background-color: hsla(180, 100%, 20%, 1);
|
|
|
|
color: white;
|
|
|
|
text-transform: lowercase;
|
2017-04-05 13:14:59 +00:00
|
|
|
}
|
|
|
|
|
2018-11-29 04:21:13 +00:00
|
|
|
.entry-label[data-label="disabled"] {
|
2018-11-25 23:35:54 +00:00
|
|
|
background: rgba(128, 128, 128, .2);
|
|
|
|
color: #222;
|
2017-04-05 13:14:59 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.disabled .entry-name,
|
|
|
|
.disabled .entry-actions,
|
|
|
|
.disabled .entry-sort,
|
|
|
|
.disabled .entry-version,
|
|
|
|
.disabled .entry-last-update {
|
|
|
|
opacity: 0.6;
|
|
|
|
font-weight: normal;
|
|
|
|
transition: opacity .5s .1s;
|
2017-12-09 15:25:44 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.disabled:hover .entry-actions {
|
|
|
|
opacity: 1;
|
2017-04-05 13:14:59 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.disabled .entry-applies-to .svg-icon {
|
|
|
|
fill: rgba(92, 92, 92, 0.6);
|
2017-04-18 13:18:12 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
a svg, .svg-icon.sort {
|
|
|
|
pointer-events: none;
|
2017-04-18 13:18:12 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
/* Checkbox */
|
2018-11-27 03:28:11 +00:00
|
|
|
.checkmate input:checked + svg.checkbox {
|
2018-11-25 23:35:54 +00:00
|
|
|
background: #66bb6a;
|
|
|
|
border-radius: var(--icon-size);
|
2017-04-18 13:18:12 +00:00
|
|
|
}
|
|
|
|
|
2018-11-27 03:28:11 +00:00
|
|
|
.checkmate input[type="checkbox"],
|
|
|
|
.checkmate input:checked + svg.checkbox .circle,
|
2018-11-27 23:50:11 +00:00
|
|
|
.checkmate input:not(:checked) + svg .checkmark,
|
|
|
|
.checkmate input:not(:indeterminate) + svg .indeterminate {
|
2018-11-25 23:35:54 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2018-11-27 03:28:11 +00:00
|
|
|
.checkmate input:checked + svg.checkbox .checkmark {
|
2018-11-25 23:35:54 +00:00
|
|
|
fill: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.checking-update .check-update {
|
2017-04-05 13:14:59 +00:00
|
|
|
opacity: 0;
|
2017-12-12 18:33:41 +00:00
|
|
|
display: inline-block;
|
2017-04-05 13:14:59 +00:00
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2018-11-27 03:28:11 +00:00
|
|
|
/* Update icons */
|
2018-11-25 23:35:54 +00:00
|
|
|
.can-update .update,
|
|
|
|
.no-update:not(.update-problem):not(.update-done) .up-to-date,
|
|
|
|
.no-update.update-problem .check-update,
|
|
|
|
.update-done .updated {
|
2017-12-12 18:33:41 +00:00
|
|
|
display: inline-block;
|
2017-04-05 13:14:59 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.up-to-date svg,
|
|
|
|
.updated svg {
|
2017-12-02 04:07:12 +00:00
|
|
|
cursor: auto;
|
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.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
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.can-update .update,
|
|
|
|
.no-update.update-problem .check-update {
|
2017-04-09 16:04:00 +00:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.can-update[data-details$="locally edited"] .update svg,
|
|
|
|
.update-problem .check-update svg {
|
2017-04-21 12:34:58 +00:00
|
|
|
fill: #ef6969;
|
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.can-update[data-details$="locally edited"]:hover .update svg,
|
|
|
|
.entry.update-problem:hover .check-update svg {
|
2017-04-21 12:34:58 +00:00
|
|
|
fill: #fd4040;
|
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.can-update[data-details$="locally edited"]:hover .update svg:hover,
|
|
|
|
.entry.update-problem:hover .check-update svg:hover {
|
2017-04-21 12:34:58 +00:00
|
|
|
fill: red;
|
2017-04-05 13:14:59 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.update-problem .check-update:after {
|
2017-04-09 16:04:00 +00:00
|
|
|
background-color: red;
|
|
|
|
border: 1px solid #d40000;
|
|
|
|
color: white;
|
|
|
|
animation: none;
|
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.can-update .update:after {
|
2017-04-25 22:44:09 +00:00
|
|
|
animation: none;
|
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.can-update:not([data-details$="locally edited"]) .update:after {
|
2017-04-09 16:04:00 +00:00
|
|
|
background-color: #c0fff0;
|
|
|
|
border: 1px solid #89cac9;
|
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.entry .svg-icon.world {
|
|
|
|
fill: #ef6969;
|
2017-04-09 06:43:51 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
img.target:hover {
|
2017-04-05 13:14:59 +00:00
|
|
|
background-color: inherit;
|
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
img.target {
|
|
|
|
width: var(--icon-size);
|
|
|
|
height: var(--icon-size);
|
2017-04-05 13:14:59 +00:00
|
|
|
vertical-align: sub;
|
|
|
|
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;
|
2018-11-25 23:35:54 +00:00
|
|
|
opacity: .5;
|
2017-04-09 04:53:16 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.entry:hover img.target {
|
2017-04-05 13:14:59 +00:00
|
|
|
opacity: 1;
|
|
|
|
/* unprefixed since Chrome 53 */
|
|
|
|
-webkit-filter: grayscale(0);
|
|
|
|
filter: grayscale(0);
|
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.targets details.applies-to-extra {
|
|
|
|
margin-left: 4px;
|
|
|
|
margin-top: 5px;
|
2017-04-08 11:03:54 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
details.applies-to-extra[open] {
|
|
|
|
position: absolute;
|
|
|
|
background: #eee;
|
|
|
|
z-index: 90;
|
|
|
|
padding: 10px;
|
2017-04-05 13:14:59 +00:00
|
|
|
}
|
|
|
|
|
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 {
|
2018-07-16 16:37:01 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: 1ex;
|
2017-04-18 18:49:04 +00:00
|
|
|
}
|
2017-04-13 07:54:56 +00:00
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
/* Default, no update buttons */
|
2017-12-09 15:25:44 +00:00
|
|
|
.updater-icons .update,
|
|
|
|
.updater-icons .check-update {
|
2017-03-21 01:32:38 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
.updater-icons > * {
|
|
|
|
transition: opacity 1s;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-12-09 15:25:44 +00:00
|
|
|
/* Check update button for things that can */
|
2017-04-09 04:53:16 +00:00
|
|
|
.updatable .check-update {
|
2017-12-12 18:33:41 +00:00
|
|
|
display: inline-block;
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Update check in progress */
|
|
|
|
.checking-update .check-update {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Updates available */
|
|
|
|
.can-update .update {
|
2017-12-12 18:33:41 +00:00
|
|
|
display: inline-block;
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2018-08-27 14:18:41 +00:00
|
|
|
#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;
|
|
|
|
}
|
|
|
|
|
2018-11-27 03:28:11 +00:00
|
|
|
/* bulk actions */
|
2018-11-29 04:21:13 +00:00
|
|
|
#tools-wrapper {
|
2018-11-27 03:28:11 +00:00
|
|
|
background: #ddd;
|
|
|
|
width: 100vw;
|
|
|
|
position: fixed;
|
|
|
|
top: var(--header-height);
|
|
|
|
left: 0;
|
2018-11-29 04:21:13 +00:00
|
|
|
height: var(--toolbar-height);
|
2018-11-27 03:28:11 +00:00
|
|
|
padding: 4px 16px;
|
|
|
|
z-index: 100;
|
|
|
|
}
|
|
|
|
|
2018-11-29 04:21:13 +00:00
|
|
|
#tools-wrapper:not(.hidden) + #installed {
|
|
|
|
margin-top: calc(var(--header-height) + var(--toolbar-height) + var(--entry-header-height));
|
2018-11-27 03:28:11 +00:00
|
|
|
}
|
2018-11-29 04:21:13 +00:00
|
|
|
#tools-wrapper:not(.hidden) + #installed .entry-header {
|
|
|
|
top: calc(var(--header-height) + var(--toolbar-height));
|
2018-11-27 03:28:11 +00:00
|
|
|
}
|
|
|
|
|
2018-11-29 04:21:13 +00:00
|
|
|
#tools-wrapper .select-resizer {
|
2018-11-27 23:50:11 +00:00
|
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
|
2018-11-27 03:28:11 +00:00
|
|
|
.manage-row {
|
2018-11-27 23:50:11 +00:00
|
|
|
padding: 2px 10px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2018-11-29 04:21:13 +00:00
|
|
|
justify-content: space-between;
|
2018-11-27 23:50:11 +00:00
|
|
|
}
|
|
|
|
|
2018-11-29 04:21:13 +00:00
|
|
|
#filters-wrapper,
|
2018-11-28 13:50:54 +00:00
|
|
|
#bulk-filter-count {
|
2018-11-27 23:50:11 +00:00
|
|
|
margin-right: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#search {
|
|
|
|
width: 15vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
#search-help {
|
|
|
|
text-decoration: none;
|
2018-11-27 03:28:11 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2018-11-27 03:28:11 +00:00
|
|
|
|
2018-11-29 04:21:13 +00:00
|
|
|
#filters-wrapper filter-selection {
|
2018-11-27 03:28:11 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2018-11-28 13:50:54 +00:00
|
|
|
.active #filters-stats,
|
|
|
|
#bulk-filter-count:not(:empty) {
|
2018-11-27 03:28:11 +00:00
|
|
|
background-color: darkcyan;
|
|
|
|
border-color: darkcyan;
|
2018-11-28 13:50:54 +00:00
|
|
|
border-radius: 2px;
|
2018-11-27 03:28:11 +00:00
|
|
|
color: white;
|
|
|
|
font-size: 0.7rem;
|
|
|
|
font-weight: normal;
|
|
|
|
padding: 2px 5px;
|
|
|
|
position: relative;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-stats-wrapper {
|
|
|
|
margin-left: .2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#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);
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-stats-wrapper:not(.active) #reset-filters,
|
|
|
|
.filter-stats-wrapper:not(.active) #filters-stats {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
/* 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) {
|
2018-07-16 16:37:01 +00:00
|
|
|
margin-bottom: 1em;
|
2017-03-24 02:51:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#message-box details small div {
|
2018-07-16 16:37:01 +00:00
|
|
|
margin-left: 1.5em;
|
2017-03-24 02:51:44 +00:00
|
|
|
}
|
|
|
|
|
2017-04-26 20:55:54 +00:00
|
|
|
.update-history-log {
|
|
|
|
font-size: 11px;
|
|
|
|
white-space: pre;
|
|
|
|
overflow-x: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
2018-11-03 18:33:35 +00:00
|
|
|
/* export/import buttons */
|
|
|
|
#backup-buttons .dropbtn {
|
|
|
|
padding: 3px 7px;
|
|
|
|
cursor: pointer;
|
|
|
|
text-overflow: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
#backup-buttons .dropbtn span {
|
|
|
|
display: inline-block;
|
2018-11-12 03:02:13 +00:00
|
|
|
margin-right: 12px;
|
2018-11-03 18:33:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#backup-buttons .dropdown {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
#backup-buttons .dropdown-content {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
background-color: #f9f9f9;
|
|
|
|
min-width: 160px;
|
|
|
|
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#backup-buttons .dropdown-content a {
|
|
|
|
color: black;
|
2018-11-12 03:02:13 +00:00
|
|
|
padding: 8px;
|
2018-11-03 18:33:35 +00:00
|
|
|
text-decoration: none;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
#backup-buttons .dropdown-content a:hover {
|
|
|
|
/* background-color: #f2f2f2 */
|
|
|
|
background-color: #e9e9e9
|
|
|
|
}
|
|
|
|
|
|
|
|
#backup-buttons .dropdown:hover .dropdown-content {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
#backup-buttons .dropdown:hover .dropbtn {
|
|
|
|
background-color: hsl(0, 0%, 95%);
|
|
|
|
border-color: hsl(0, 0%, 52%);
|
|
|
|
/* background-color: #3e8e41; */
|
|
|
|
}
|
|
|
|
|
2017-12-23 00:11:46 +00:00
|
|
|
/* sort font */
|
|
|
|
@font-face {
|
|
|
|
font-family: 'sorticon';
|
|
|
|
src: url('data:application/x-font-ttf;base64,AAEAAAAQAQAABAAARkZUTYJtzGIAAAdIAAAAHEdERUYAJwAKAAAHKAAAAB5PUy8yURpfNAAAAYgAAABgY21hcEPk4dUAAAH4AAABSmN2dCAAFQAAAAAEvAAAAAJmcGdtBlicNgAAA0QAAAFzZ2FzcP//ABAAAAcgAAAACGdseWaLrdd8AAAEzAAAAHxoZWFkD8F3ewAAAQwAAAA2aGhlYQeIA8UAAAFEAAAAJGhtdHgMAP/YAAAB6AAAABBsb2NhAD4AAAAABMAAAAAKbWF4cAIUADsAAAFoAAAAIG5hbWX6WE3YAAAFSAAAAZtwb3N0Qb4dhQAABuQAAAA5cHJlcLgAACsAAAS4AAAABAABAAAAAAAA74lHPl8PPPUAHwQAAAAAANZkpgYAAAAA1mSNgP/Y/5wD7gNcAAAACAACAAAAAAAAAAEAAAPA/8AAAAQA/9gAAAPuAAEAAAAAAAAAAAAAAAAAAAAEAAEAAAAEABcABQAAAAAAAQAAAAAACgAAAgAAIwAAAAAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAICAgIABAIekh6QPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAEEAAAAAAAAAAQAAAAEAP/YAAAAAwAAAAMAAAAcAAEAAAAAAEQAAwABAAAAHAAEACgAAAAGAAQAAQACAAAh6f//AAAAACHp//8AAd4aAAEAAAAAAAAAAAEGAAABAAAAAAAAAAECAAAAAgAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC4AAAsS7gACFBYsQEBjlm4Af+FuABEHbkACAADX14tuAABLCAgRWlEsAFgLbgAAiy4AAEqIS24AAMsIEawAyVGUlgjWSCKIIpJZIogRiBoYWSwBCVGIGhhZFJYI2WKWS8gsABTWGkgsABUWCGwQFkbaSCwAFRYIbBAZVlZOi24AAQsIEawBCVGUlgjilkgRiBqYWSwBCVGIGphZFJYI4pZL/0tuAAFLEsgsAMmUFhRWLCARBuwQERZGyEhIEWwwFBYsMBEGyFZWS24AAYsICBFaUSwAWAgIEV9aRhEsAFgLbgAByy4AAYqLbgACCxLILADJlNYsEAbsABZioogsAMmU1gjIbCAioobiiNZILADJlNYIyG4AMCKihuKI1kgsAMmU1gjIbgBAIqKG4ojWSCwAyZTWCMhuAFAioobiiNZILgAAyZTWLADJUW4AYBQWCMhuAGAIyEbsAMlRSMhIyFZGyFZRC24AAksS1NYRUQbISFZLQC4AAArABUAAAAAAAAAAAAAAD4AAAAF/9j/nAPuA1wABgAKAA4AEgAWACMAuAAPL7gACy+4AAcvuAATL7gABC+4AAUvuAADL7gABi8wMSUJATMRMxETIRUhFSEVIRUhFSEVMxUjAgr++f7V6ICyAfz+BAGG/noBEf7vm5uc/wABAALA/UACwFZbVlpXWlYAAAAAAAAOAK4AAQAAAAAAAQAHABAAAQAAAAAAAgAHACgAAQAAAAAAAwAHAEAAAQAAAAAABAAHAFgAAQAAAAAABQALAHgAAQAAAAAABgAHAJQAAQAAAAAACgAaANIAAwABBAkAAQAOAAAAAwABBAkAAgAOABgAAwABBAkAAwAOADAAAwABBAkABAAOAEgAAwABBAkABQAWAGAAAwABBAkABgAOAIQAAwABBAkACgA0AJwAaQBjAG8AbQBvAG8AbgAAaWNvbW9vbgAAUgBlAGcAdQBsAGEAcgAAUmVndWxhcgAAaQBjAG8AbQBvAG8AbgAAaWNvbW9vbgAAaQBjAG8AbQBvAG8AbgAAaWNvbW9vbgAAVgBlAHIAcwBpAG8AbgAgADEALgAwAABWZXJzaW9uIDEuMAAAaQBjAG8AbQBvAG8AbgAAaWNvbW9vbgAARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAABGb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAQIAAgEDBmdseXBoMQd1bmkyMUU5AAAAAAAAAf//AA8AAQAAAAwAAAAWAAAAAgABAAEAAwABAAQAAAACAAAAAAAAAAEAAAAA1aSY2wAAAADWZKYGAAAAANZkjYA=') format('truetype');
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
unicode-range: U+21E9;
|
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
#manage.sort {
|
2017-12-23 00:11:46 +00:00
|
|
|
font-family: 'sorticon', Arial;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
}
|
|
|
|
|
2020-02-02 04:36:54 +00:00
|
|
|
#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;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-25 23:35:54 +00:00
|
|
|
@media (max-width: 1000px) {
|
2017-12-06 07:37:01 +00:00
|
|
|
|
|
|
|
}
|
2020-02-02 14:02:25 +00:00
|
|
|
|
|
|
|
/* Deprecated dropbox backup (dropbox-sync) */
|
|
|
|
#sync-dropbox-export,
|
|
|
|
#sync-dropbox-import {
|
|
|
|
opacity: 0.5;
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
#backup-buttons .dropdown-content #sync-dropbox-export:hover,
|
|
|
|
#backup-buttons .dropdown-content #sync-dropbox-import:hover {
|
|
|
|
background: transparent;
|
|
|
|
}
|