stylus/manage/config-dialog.css
tophf 2deffbc622 show "x" to reset non-default values in usercss config individually
also:
* simplified CSS selectors where possible
* .config-name = var name, 1st element in <label>
* .config-value = var value, 2nd element in <label>
* .nondefault class added on <label>
2017-12-08 03:23:09 +03:00

177 lines
2.9 KiB
CSS

#stylus-manage .config-dialog #message-box-contents {
padding: 2em 16px;
}
#stylus-popup .config-dialog #message-box-contents {
padding: 8px 16px;
}
#stylus-popup .config-body label {
padding: .5em 0;
}
.config-heading {
float: right;
margin: -1.25rem 0 0 0;
font-size: 0.9em;
}
.config-body label {
display: flex;
padding: .75em 0;
align-items: center;
margin-right: -16px; /* for .config-reset-icon */
}
.config-body .select-resizer {
position: static;
}
.config-body label:first-child {
padding-top: 0;
}
.config-body label:last-child {
padding-bottom: 0;
}
.config-body label:not(:first-child) {
border-top: 1px dotted #ccc;
}
.config-body .dirty {
font-style: italic;
}
.config-body .dirty:after {
content: "*";
position: absolute;
left: 6px;
}
.config-body input,
.config-body select,
.config-body .onoffswitch {
width: var(--onoffswitch-width);
margin: 0;
height: 22px;
box-sizing: border-box;
vertical-align: middle;
}
.config-body input[type="text"],
.config-body .select-resizer,
.config-body select {
width: auto;
min-width: var(--onoffswitch-width);
max-width: 124px;
left: auto;
position: relative;
}
.config-body .onoffswitch {
height: auto;
margin: calc((2em - 12px) / 2) 0;
flex-grow: 0;
}
.config-body input[type="text"] {
padding-left: 0.25em;
}
.config-name {
flex-grow: 1;
margin-right: 1em;
}
.config-value {
box-sizing: border-box;
flex-shrink: 0;
}
.config-value:not(.onoffswitch):not(.select-resizer) > :not(:last-child) {
margin-right: 4px;
}
.config-body label:not(.nondefault) .config-reset-icon {
visibility: hidden;
}
.svg-icon.config-reset-icon {
/*position: absolute;*/
pointer-events: all !important;
cursor: pointer;
/*right: -7px;*/
fill: #aaa;
width: 16px;
height: 16px;
padding: 0 1px;
box-sizing: border-box;
flex-shrink: 0;
}
.svg-icon.config-reset-icon:hover {
fill: #666;
}
#config-autosave-wrapper {
position: relative;
padding: 0 0 0 16px;
display: inline-flex;
}
#message-box-buttons {
position: relative;
}
.config-error {
position: absolute;
z-index: 99;
left: 0;
right: 0;
bottom: -1rem;
padding: 0 .75rem;
line-height: 24px;
height: 24px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
background-color: red;
color: white;
font-weight: bold;
text-shadow: 0.5px 0.5px 6px #400;
animation: fadein .5s;
}
.cm-colorview::before,
.color-swatch {
width: var(--onoffswitch-width) !important;
height: 20px !important;
}
.cm-colorview::before {
margin: 1px !important;
}
.color-swatch {
position: absolute;
border: 1px solid gray;
margin-top: -22px;
cursor: pointer;
}
.colorpicker-popup {
z-index: 2147483647 !important;
border: none !important;
box-shadow: 3px 3px 50px rgba(0,0,0,.5) !important;
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}