stylus/manage/config-dialog.css

119 lines
2.0 KiB
CSS
Raw Normal View History

2017-12-05 21:14:21 +00:00
/* config dialog */
.config-heading {
2017-12-05 21:14:21 +00:00
float: right;
margin: -1.25rem 0 0 0;
font-size: 0.9em;
}
.config-body label {
2017-12-05 21:14:21 +00:00
display: flex;
padding: .75em 0;
align-items: center;
}
.config-dialog .select-resizer {
position: static;
}
.config-body label:first-child {
2017-12-05 21:14:21 +00:00
padding-top: 0;
}
.config-body label:last-child {
2017-12-05 21:14:21 +00:00
padding-bottom: 0;
}
.config-body label:not(:first-child) {
2017-12-05 21:14:21 +00:00
border-top: 1px dotted #ccc;
}
.config-body label > :first-child {
2017-12-05 21:14:21 +00:00
margin-right: 8px;
flex-grow: 1;
}
.config-body label:not([disabled]) > :first-child {
2017-12-05 21:14:21 +00:00
cursor: default;
}
.config-body label:not([disabled]):hover > :first-child {
2017-12-05 21:14:21 +00:00
text-shadow: 0 0 0.01px rgba(0, 0, 0, .25);
cursor: pointer;
}
.config-dialog .dirty:after {
content: "*";
position: absolute;
left: 6px;
}
.config-dialog .dirty {
font-style: italic;
}
.config-body input,
.config-body select,
.config-body .onoffswitch {
2017-12-05 21:14:21 +00:00
width: var(--onoffswitch-width);
margin: 0;
height: 2em;
box-sizing: border-box;
vertical-align: middle;
}
.config-body .select-resizer,
.config-body select {
2017-12-05 21:14:21 +00:00
width: auto;
min-width: var(--onoffswitch-width);
max-width: 124px;
left: auto;
position: relative;
}
.config-body .onoffswitch {
2017-12-05 21:14:21 +00:00
height: auto;
margin: calc((2em - 12px) / 2) 0;
}
.config-body input[type="text"] {
2017-12-05 21:14:21 +00:00
padding-left: 0.25em;
}
.config-body label > :last-child {
2017-12-05 21:14:21 +00:00
box-sizing: border-box;
flex-shrink: 0;
}
.config-body label > :last-child:not(.onoffswitch):not(.select-resizer) > :not(:last-child) {
2017-12-05 21:14:21 +00:00
margin-right: 4px;
}
#config-autosave-wrapper {
position: relative;
padding: 0 0 0 16px;
display: inline-flex;
}
2017-12-05 21:14:21 +00:00
.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;
}