2017-03-21 01:32:38 +00:00
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
font: 12px arial, sans-serif;
|
|
|
|
}
|
|
|
|
|
2017-04-01 04:37:25 +00:00
|
|
|
a {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
#header {
|
|
|
|
width: 280px;
|
|
|
|
height: 100vh;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
padding: 15px;
|
|
|
|
border-right: 1px dashed #AAA;
|
|
|
|
-webkit-box-shadow: 0 0 50px -18px black;
|
|
|
|
overflow: auto;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header h1 {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#installed {
|
|
|
|
position: relative;
|
|
|
|
margin-left: 280px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
|
|
|
margin-top: -4px;
|
2017-04-01 04:37:25 +00:00
|
|
|
transition: fill .5s;
|
2017-03-21 01:32:38 +00:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2017-04-01 04:37:25 +00:00
|
|
|
fill: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.svg-icon:hover {
|
|
|
|
fill: #666;
|
|
|
|
}
|
|
|
|
|
|
|
|
.homepage {
|
|
|
|
margin-left: 0.1em;
|
|
|
|
margin-right: 0.1em;
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.style-name {
|
|
|
|
margin-top: .25em;
|
2017-03-26 06:41:54 +00:00
|
|
|
word-break: break-word;
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.style-name a, .style-edit-link {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2017-03-23 04:47:30 +00:00
|
|
|
.style-name-link:hover {
|
|
|
|
text-decoration: underline;
|
2017-04-01 04:37:25 +00:00
|
|
|
color: #000;
|
2017-03-23 04:47:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
.applies-to {
|
|
|
|
word-break: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
.applies-to,
|
|
|
|
.actions {
|
|
|
|
padding-left: 15px;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2017-03-23 04:47:30 +00:00
|
|
|
.actions {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.actions > * {
|
|
|
|
margin-bottom: .25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.actions > *:not(:last-child) {
|
|
|
|
margin-right: .25rem;
|
|
|
|
}
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
.applies-to > :first-child {
|
|
|
|
margin-right: .5ex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.applies-to .target:hover {
|
|
|
|
background-color: rgba(128, 128, 128, .15);
|
|
|
|
}
|
|
|
|
|
|
|
|
.applies-to-extra {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2017-03-24 02:51:44 +00:00
|
|
|
summary {
|
2017-03-21 01:32:38 +00:00
|
|
|
font-weight: bold;
|
|
|
|
cursor: pointer;
|
2017-03-24 02:51:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.applies-to-extra summary {
|
2017-03-21 01:32:38 +00:00
|
|
|
list-style-type: none; /* for FF, allegedly */
|
|
|
|
}
|
|
|
|
|
|
|
|
.applies-to-extra summary::-webkit-details-marker {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.disabled h2::after {
|
|
|
|
content: " (Disabled)";
|
|
|
|
}
|
|
|
|
|
|
|
|
.disabled {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.disabled .disable {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.enabled .enable {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Default, no update buttons */
|
|
|
|
.update,
|
|
|
|
.check-update {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check update button for things that can*/
|
|
|
|
*[style-update-url] .check-update {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Update check in progress */
|
|
|
|
.checking-update .check-update {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Updates available */
|
|
|
|
.can-update .update {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.can-update .check-update {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Updates not available */
|
|
|
|
.no-update .check-update {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Updates done */
|
|
|
|
.update-done .check-update {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-03-23 04:47:30 +00:00
|
|
|
/* highlight updated/added styles */
|
|
|
|
.highlight {
|
|
|
|
animation: highlight 10s cubic-bezier(0,.82,.47,.98);
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes highlight {
|
|
|
|
from {
|
|
|
|
background-color: rgba(128, 128, 128, .5);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
background-color: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
.hidden {
|
|
|
|
display: none
|
|
|
|
}
|
|
|
|
|
|
|
|
fieldset {
|
|
|
|
border-width: 1px;
|
|
|
|
border-radius: 6px;
|
|
|
|
margin: 1em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.enabled-only > .disabled,
|
|
|
|
.edited-only > [style-update-url] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#search {
|
|
|
|
width: calc(100% - 4px);
|
|
|
|
margin: 0.25rem 4px 0;
|
|
|
|
border-radius: 0.25rem;
|
|
|
|
padding-left: 0.25rem;
|
|
|
|
border-width: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#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-03-21 01:32:38 +00:00
|
|
|
@keyframes fadein {
|
|
|
|
from {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeout {
|
|
|
|
from {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 675px) {
|
|
|
|
#header {
|
|
|
|
height: auto;
|
|
|
|
position: static;
|
|
|
|
width: auto;
|
|
|
|
border-right: none;
|
|
|
|
border-bottom: 1px dashed #AAA;
|
|
|
|
}
|
|
|
|
|
|
|
|
#installed {
|
|
|
|
position: static;
|
|
|
|
margin-left: 0;
|
|
|
|
overflow: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header h1,
|
|
|
|
#header h2,
|
|
|
|
#header h3,
|
|
|
|
#backup-message {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header p,
|
|
|
|
#header fieldset div,
|
|
|
|
#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;
|
|
|
|
}
|
|
|
|
|
|
|
|
#backup p,
|
|
|
|
#header fieldset {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entry {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|