stylus/js/dlg/config-dialog.css
tophf fdbfb23547
API groups + use executeScript for early injection (#1149)
* parserlib: fast section extraction, tweaks and speedups
* csslint: "simple-not" rule
* csslint: enable and fix "selector-newline" rule
* simplify db: resolve with result
* simplify download()
* remove noCode param as it wastes more time/memory on copying
* styleManager: switch style<->data names to reflect their actual contents
* inline method bodies to avoid indirection and enable better autocomplete/hint/jump support in IDE
* upgrade getEventKeyName to handle mouse clicks
* don't trust location.href as it hides text fragment
* getAllKeys is implemented since Chrome48, FF44
* allow recoverable css errors + async'ify usercss.js
* openManage: unminimize windows
* remove the obsolete Chrome pre-65 workaround
* fix temporal dead zone in apply.js
* ff bug workaround for simple editor window
* consistent window scrolling in scrollToEditor and jumpToPos
* rework waitForSelector and collapsible <details>
* blank paint frame workaround for new Chrome
* extract stuff from edit.js and load on demand
* simplify regexpTester::isShown
* move MozDocMapper to sections-util.js
* extract fitSelectBox()
* initialize router earlier
* use helpPopup.close()
* fix autofocus in popups, follow-up to 5bb1b5ef
* clone objects in prefs.get() + cosmetics
* reuse getAll result for INC
2021-01-01 17:27:58 +03:00

211 lines
3.3 KiB
CSS

:root {
--onoffswitch-width: 60px;
}
#stylus-manage .config-dialog #message-box-contents {
padding: 2em 16px;
}
#stylus-popup .config-dialog #message-box-contents {
padding: 8px 16px;
}
#stylus-popup .config-dialog > div {
position: relative;
}
#stylus-popup .config-body label {
padding: .5em 0;
}
.config-heading {
top: -1em;
position: relative;
text-align: right;
font-size: 0.9em;
}
#stylus-popup .config-heading {
top: -.25em;
}
.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;
}
.current-value {
padding: 2px 4px;
margin-right: 4px;
}
.config-number span, .config-range span {
line-height: 22px;
}
.config-body label:not(.nondefault) .config-reset-icon {
visibility: hidden;
}
.config-reset-icon {
height: 16px;
}
.config-reset-icon .svg-icon {
cursor: pointer;
fill: #aaa;
width: 16px;
height: 16px;
padding: 0 1px;
box-sizing: border-box;
flex-shrink: 0;
}
.config-reset-icon:hover .svg-icon {
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;
}
#message-box .colorview-swatch {
padding: 0;
box-sizing: content-box;
}
#message-box .colorview-swatch,
#message-box .colorview-swatch::before,
#message-box .colorview-swatch::after,
.color-swatch {
width: var(--onoffswitch-width);
height: 20px;
left: 0;
margin: 0;
border: 1px solid transparent;
box-sizing: content-box;
background-position: unset;
}
.color-swatch {
position: absolute;
top: 0;
left: 0;
border: 1px solid gray;
cursor: pointer;
opacity: 1;
z-index: 2;
}
.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;
}
}