1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
:host,
:root {
background-color: var(--background-color-box);
}
/** body for Options in Tab **/
/*
body {
padding: 28px 40px;
width: 800px;
background-color: var(--in-content-box-background);
color: var(--in-content-page-color);
}
*/
/** body for Options inline **/
body {
padding-top: 1.5em;
background-color: var(--background-color-box);
}
/* Nicht notwendig, wenn common.css vorhanden ist */
/*
.subcategory:not([hidden]) ~ .subcategory {
margin-top: 16px;
padding-top: 16px;
border-top: 1px solid rgba(211, 211, 211, 0.5);
}
*/
.flex-container {
display: flex;
flex-direction: row;
}
.flex-container > .flex-item {
flex: auto;
}
.flex-container > .raw-item {
}
button {
min-height: 32px;
/* margin-top: 1ex; */
/* margin-bottom: 1ex; */
margin-left: 6px;
min-width: 7em;
text-align: center;
/* float: right; */
}
input[type="text"] {
}
input[type="checkbox"]:not(.position-null),
input[type="radio"]:not(.position-null) {
position: relative;
}
input[type="radio"]:not(.position-null) {
top: 2px;
left: 5px;
}
input[type="checkbox"]:not(.position-null) {
top: 2px;
left: 5px;
}
input[type="checkbox"].position-null {
margin-inline: 0;
}
input[type="select"],
select {
padding-top: 0;
padding-bottom: 0;
}
/* Nicht notwendig, wenn common.css vorhanden ist */
/*
select, input[type="select"] {
padding-top: 5px;
padding-bottom: 5px;
min-height: 32px;
}
*/
/* tweak the buggy background for select options */
/* the "option" itself doesn't work, so the whole select hover has to be tweaked */
@media (prefers-color-scheme: dark) {
select:hover,
option:hover {
background-color: rgb(65, 95, 126) !important;
}
}
@media (prefers-color-scheme: light) {
select:hover,
option:hover {
background-color: rgba(140, 197, 255, 0.6) !important;
}
}
@media (prefers-color-scheme: dark) {
.subcategory_infotext:not(h1) {
color: var(--text-color-deemphasized);
}
}
.subcategory_infotext {
margin-bottom: 0.6em;
}
@media (prefers-color-scheme: dark) {
.warning {
background: #42381F !important;
color: #FCE2A1 !important;
}
/*
.cmd_warning {
background: #4B2F36 !important;
color: #FFB3D2 !important;
}
*/
}
.warning {
background: #ffea00;
border-radius: 2px;
margin: 0.5em 0;
padding: 0.5em 1em;
font-size: 85%;
}
.cmd_warning {
background: #ff7878;
border-radius: 2px;
margin: 0.5em 0;
padding: 0.5em 1em;
font-size: 85%;
}
.hidden {
display: none;
}
.disabled {
opacity: 0.4;
}
.indent {
margin-left: 30px;
}
.indent > label:first-child {
margin-left: 6px;
}
.center {
text-align: center;
}
.flexbox {
display: flex;
}
#box_defaultHtml {
width: 50%;
margin-right: 1em;
/* border-right: 1px; */
}
#box_buttonHtml {
width: 50%;
margin-left: 1em;
}
|