| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- #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;
- }
- }
|