@public-ui/themes 1.6.0-rc.1 → 1.6.0-rc.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1158 -187
- package/dist/index.mjs +1158 -187
- package/package.json +6 -6
package/dist/index.cjs
CHANGED
|
@@ -1126,6 +1126,96 @@ const BPA = KoliBri.createTheme("bpa", {
|
|
|
1126
1126
|
kol-button-wc > button:focus {
|
|
1127
1127
|
outline: none;
|
|
1128
1128
|
}`,
|
|
1129
|
+
"KOL-INPUT-DATE": `:host label {
|
|
1130
|
+
color: var(--color-darkblue);
|
|
1131
|
+
font-size: 0.9375rem;
|
|
1132
|
+
}
|
|
1133
|
+
@media (min-width: 37.5rem) {
|
|
1134
|
+
:host label {
|
|
1135
|
+
font-size: 1.125rem;
|
|
1136
|
+
}
|
|
1137
|
+
} /* Move label over input as placeholder */
|
|
1138
|
+
:host(:not(.has-value)) kol-input:has(input[type="number"]) label {
|
|
1139
|
+
transition: all 0.3s ease-in-out 0ms;
|
|
1140
|
+
transform-origin: 0;
|
|
1141
|
+
}
|
|
1142
|
+
:host(:not(.has-value)) kol-input:has(input[type="number"]):not(:focus-within) label {
|
|
1143
|
+
transform: translateY(1.9375rem) scale(1.3333333333);
|
|
1144
|
+
cursor: text;
|
|
1145
|
+
}
|
|
1146
|
+
:host(:not(.has-value)) kol-input:has(input[type="number"]):not(:focus-within):has(div.icon-left) label {
|
|
1147
|
+
transform: translateX(2.5rem) translateY(1.9375rem) scale(1.3333333333);
|
|
1148
|
+
}
|
|
1149
|
+
:host(:not(.has-value)) kol-input:not(:focus-within) label,
|
|
1150
|
+
input::placeholder {
|
|
1151
|
+
color: var(--color-darkgray);
|
|
1152
|
+
}
|
|
1153
|
+
:host([_error]) kol-input:not(:focus-within) label {
|
|
1154
|
+
color: var(--color-red);
|
|
1155
|
+
}
|
|
1156
|
+
span.hint {
|
|
1157
|
+
order: 1;
|
|
1158
|
+
}
|
|
1159
|
+
kol-alert {
|
|
1160
|
+
order: 2;
|
|
1161
|
+
}
|
|
1162
|
+
:host([_error]) label {
|
|
1163
|
+
color: var(--color-red);
|
|
1164
|
+
}
|
|
1165
|
+
div.input {
|
|
1166
|
+
border-bottom: 1px solid var(--color-lightgray);
|
|
1167
|
+
}
|
|
1168
|
+
div.input:focus-within {
|
|
1169
|
+
border-bottom: 1px solid var(--color-darkgray);
|
|
1170
|
+
}
|
|
1171
|
+
div.input input {
|
|
1172
|
+
border: none;
|
|
1173
|
+
background-color: var(--color-white);
|
|
1174
|
+
outline: none;
|
|
1175
|
+
height: 2.5rem;
|
|
1176
|
+
font-size: 1.5rem;
|
|
1177
|
+
padding: 0;
|
|
1178
|
+
}
|
|
1179
|
+
kol-input:has(label:not([hidden])) div.input input::placeholder {
|
|
1180
|
+
color: transparent;
|
|
1181
|
+
}
|
|
1182
|
+
kol-alert {
|
|
1183
|
+
margin-top: 1.5rem;
|
|
1184
|
+
}
|
|
1185
|
+
kol-button-wc > button > kol-span-wc {
|
|
1186
|
+
padding: 0.625rem 1.125rem;
|
|
1187
|
+
font-family: var(--font);
|
|
1188
|
+
font-size: 1rem;
|
|
1189
|
+
line-height: 1.125rem;
|
|
1190
|
+
border: none;
|
|
1191
|
+
border-radius: 0.125rem;
|
|
1192
|
+
transition: background-color 0.3s ease, border 0.3s ease, color 0.3s ease;
|
|
1193
|
+
}
|
|
1194
|
+
kol-button-wc > button > kol-span-wc > span {
|
|
1195
|
+
gap: 0.625rem;
|
|
1196
|
+
}
|
|
1197
|
+
kol-button-wc > button > kol-span-wc {
|
|
1198
|
+
background-color: var(--color-white);
|
|
1199
|
+
color: var(--color-black);
|
|
1200
|
+
}
|
|
1201
|
+
kol-button-wc > button > kol-span-wc kol-icon {
|
|
1202
|
+
color: var(--color-blue);
|
|
1203
|
+
}
|
|
1204
|
+
kol-button-wc > button:is(:hover, :focus) > kol-span-wc kol-icon {
|
|
1205
|
+
color: var(--color-white);
|
|
1206
|
+
}
|
|
1207
|
+
kol-button-wc > button:is(:hover, :focus) > kol-span-wc {
|
|
1208
|
+
cursor: pointer;
|
|
1209
|
+
background-color: var(--color-blue);
|
|
1210
|
+
color: var(--color-white);
|
|
1211
|
+
}
|
|
1212
|
+
kol-button-wc > button:focus > kol-span-wc {
|
|
1213
|
+
outline: 1px dotted var(--color-black);
|
|
1214
|
+
border: none;
|
|
1215
|
+
}
|
|
1216
|
+
kol-button-wc > button:focus {
|
|
1217
|
+
outline: none;
|
|
1218
|
+
}`,
|
|
1129
1219
|
"KOL-INPUT-COLOR": `:host label {
|
|
1130
1220
|
color: var(--color-darkblue);
|
|
1131
1221
|
font-size: 0.9375rem;
|
|
@@ -1821,6 +1911,16 @@ const BPA = KoliBri.createTheme("bpa", {
|
|
|
1821
1911
|
color: var(--color-white);
|
|
1822
1912
|
background-color: var(--color-darkblue);
|
|
1823
1913
|
border-color: var(--color-darkblue);
|
|
1914
|
+
}`,
|
|
1915
|
+
"KOL-SKIP-NAV": `kol-link-wc > a > kol-span-wc {
|
|
1916
|
+
border: 1px solid var(--color-darkgray);
|
|
1917
|
+
border-radius: 0.125rem;
|
|
1918
|
+
gap: 0.5rem;
|
|
1919
|
+
line-height: 1.125rem;
|
|
1920
|
+
padding: 0.75rem 1rem;
|
|
1921
|
+
background-color: var(--color-blue);
|
|
1922
|
+
color: var(--color-white);
|
|
1923
|
+
cursor: pointer;
|
|
1824
1924
|
}`
|
|
1825
1925
|
});
|
|
1826
1926
|
|
|
@@ -2098,11 +2198,10 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2098
2198
|
button.loading kol-icon {
|
|
2099
2199
|
animation: spin 5s infinite linear;
|
|
2100
2200
|
}`,
|
|
2101
|
-
"KOL-INPUT-
|
|
2201
|
+
"KOL-INPUT-DATE": `kol-input {
|
|
2102
2202
|
display: grid;
|
|
2103
2203
|
padding: 0;
|
|
2104
2204
|
margin: 0;
|
|
2105
|
-
font-size: var(--text-size);
|
|
2106
2205
|
}
|
|
2107
2206
|
input:focus,
|
|
2108
2207
|
input:hover,
|
|
@@ -2110,12 +2209,7 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2110
2209
|
select:hover,
|
|
2111
2210
|
textarea:focus,
|
|
2112
2211
|
textarea:hover {
|
|
2113
|
-
border-color:
|
|
2114
|
-
}
|
|
2115
|
-
.error input:invalid,
|
|
2116
|
-
.error select:invalid,
|
|
2117
|
-
.error textarea:invalid {
|
|
2118
|
-
border-color: var(--color-rot);
|
|
2212
|
+
border-color: black;
|
|
2119
2213
|
}
|
|
2120
2214
|
input:focus-within,
|
|
2121
2215
|
select:focus-within,
|
|
@@ -2126,125 +2220,6 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2126
2220
|
order: 1;
|
|
2127
2221
|
margin-bottom: var(--gapSmallest);
|
|
2128
2222
|
}
|
|
2129
|
-
kol-input > label > span {
|
|
2130
|
-
color: var(--color-text);
|
|
2131
|
-
line-height: 1.5;
|
|
2132
|
-
}
|
|
2133
|
-
kol-input > div.input {
|
|
2134
|
-
background-color: white;
|
|
2135
|
-
display: block;
|
|
2136
|
-
order: 2;
|
|
2137
|
-
}
|
|
2138
|
-
kol-input > kol-alert.error {
|
|
2139
|
-
margin-top: 0.25rem;
|
|
2140
|
-
order: 3;
|
|
2141
|
-
}
|
|
2142
|
-
input,
|
|
2143
|
-
select,
|
|
2144
|
-
textarea {
|
|
2145
|
-
font-family: var(--font-family);
|
|
2146
|
-
background-color: transparent;
|
|
2147
|
-
box-sizing: border-box;
|
|
2148
|
-
font-size: var(--text-size);
|
|
2149
|
-
display: inline-flex;
|
|
2150
|
-
line-height: 1.5;
|
|
2151
|
-
color: black;
|
|
2152
|
-
border-color: var(--color-gruen);
|
|
2153
|
-
border-width: 1px;
|
|
2154
|
-
border-style: solid;
|
|
2155
|
-
padding: 0.5em 0.75em;
|
|
2156
|
-
overflow: hidden;
|
|
2157
|
-
width: 100%;
|
|
2158
|
-
}
|
|
2159
|
-
input:not([type="range"]),
|
|
2160
|
-
select:not([multiple]) {
|
|
2161
|
-
height: 2.75em;
|
|
2162
|
-
}
|
|
2163
|
-
textarea {
|
|
2164
|
-
display: inherit;
|
|
2165
|
-
}
|
|
2166
|
-
input::placeholder {
|
|
2167
|
-
color: var(--color-grau-dunkel);
|
|
2168
|
-
}
|
|
2169
|
-
input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
|
|
2170
|
-
cursor: not-allowed;
|
|
2171
|
-
}
|
|
2172
|
-
.required label > span::after {
|
|
2173
|
-
content: "*";
|
|
2174
|
-
padding-left: 0.125em;
|
|
2175
|
-
}
|
|
2176
|
-
.icons {
|
|
2177
|
-
display: flex;
|
|
2178
|
-
justify-content: space-between;
|
|
2179
|
-
height: 0;
|
|
2180
|
-
}
|
|
2181
|
-
.icons > * {
|
|
2182
|
-
margin: 0.75em;
|
|
2183
|
-
}
|
|
2184
|
-
.icon-left input,
|
|
2185
|
-
.icon-left select {
|
|
2186
|
-
padding-left: 2em;
|
|
2187
|
-
}
|
|
2188
|
-
.icon-right input,
|
|
2189
|
-
.icon-right select {
|
|
2190
|
-
padding-right: 2em;
|
|
2191
|
-
}
|
|
2192
|
-
kol-button-wc {
|
|
2193
|
-
position: relative;
|
|
2194
|
-
float: right;
|
|
2195
|
-
z-index: 1000;
|
|
2196
|
-
margin-top: -33px;
|
|
2197
|
-
}
|
|
2198
|
-
kol-button-wc button {
|
|
2199
|
-
border: 1px solid var(--color-grau-dunkel);
|
|
2200
|
-
box-sizing: border-box;
|
|
2201
|
-
background-color: transparent;
|
|
2202
|
-
cursor: pointer;
|
|
2203
|
-
}
|
|
2204
|
-
.icon-right kol-button-wc {
|
|
2205
|
-
margin-right: 2.5em;
|
|
2206
|
-
}
|
|
2207
|
-
.disabled {
|
|
2208
|
-
opacity: 0.33;
|
|
2209
|
-
}
|
|
2210
|
-
select[multiple],
|
|
2211
|
-
textarea {
|
|
2212
|
-
overflow: auto;
|
|
2213
|
-
}
|
|
2214
|
-
textarea {
|
|
2215
|
-
display: block;
|
|
2216
|
-
}
|
|
2217
|
-
select option {
|
|
2218
|
-
margin: 1px 0;
|
|
2219
|
-
padding: 0.5em;
|
|
2220
|
-
cursor: pointer;
|
|
2221
|
-
}
|
|
2222
|
-
select option:disabled {
|
|
2223
|
-
cursor: not-allowed;
|
|
2224
|
-
}
|
|
2225
|
-
option:active:not(:disabled),
|
|
2226
|
-
option:checked:not(:disabled),
|
|
2227
|
-
option:focus:not(:disabled),
|
|
2228
|
-
option:hover:not(:disabled) {
|
|
2229
|
-
color: white;
|
|
2230
|
-
}`,
|
|
2231
|
-
"KOL-INPUT-PASSWORD": `kol-input {
|
|
2232
|
-
display: grid;
|
|
2233
|
-
padding: 0;
|
|
2234
|
-
margin: 0;
|
|
2235
|
-
}
|
|
2236
|
-
input:focus,
|
|
2237
|
-
input:hover,
|
|
2238
|
-
select:focus,
|
|
2239
|
-
select:hover,
|
|
2240
|
-
textarea:focus,
|
|
2241
|
-
textarea:hover {
|
|
2242
|
-
border-color: black;
|
|
2243
|
-
}
|
|
2244
|
-
kol-input > label {
|
|
2245
|
-
order: 1;
|
|
2246
|
-
margin-bottom: 0.25em;
|
|
2247
|
-
}
|
|
2248
2223
|
kol-input > label > span {
|
|
2249
2224
|
color: black;
|
|
2250
2225
|
font-size: 0.875rem;
|
|
@@ -2262,17 +2237,17 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2262
2237
|
input,
|
|
2263
2238
|
select,
|
|
2264
2239
|
textarea {
|
|
2265
|
-
font-family: var(--
|
|
2240
|
+
font-family: var(--textFont);
|
|
2266
2241
|
background-color: transparent;
|
|
2267
2242
|
box-sizing: border-box;
|
|
2268
|
-
font-size:
|
|
2243
|
+
font-size: var(--textFontSize);
|
|
2269
2244
|
display: inline-flex;
|
|
2270
|
-
line-height: 1.
|
|
2245
|
+
line-height: 1.5;
|
|
2271
2246
|
color: black;
|
|
2272
|
-
border-color: var(--color-
|
|
2247
|
+
border-color: var(--color-gruen);
|
|
2273
2248
|
border-width: 1px;
|
|
2274
2249
|
border-style: solid;
|
|
2275
|
-
padding: 0.5em
|
|
2250
|
+
padding: 0.5em;
|
|
2276
2251
|
overflow: hidden;
|
|
2277
2252
|
width: 100%;
|
|
2278
2253
|
}
|
|
@@ -2312,7 +2287,7 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2312
2287
|
kol-button-wc {
|
|
2313
2288
|
position: relative;
|
|
2314
2289
|
float: right;
|
|
2315
|
-
z-index:
|
|
2290
|
+
z-index: 1;
|
|
2316
2291
|
margin-top: -33px;
|
|
2317
2292
|
}
|
|
2318
2293
|
kol-button-wc button {
|
|
@@ -2346,12 +2321,14 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2346
2321
|
option:checked:not(:disabled),
|
|
2347
2322
|
option:focus:not(:disabled),
|
|
2348
2323
|
option:hover:not(:disabled) {
|
|
2324
|
+
background: var(--color-ocean);
|
|
2349
2325
|
color: white;
|
|
2350
2326
|
}`,
|
|
2351
|
-
"KOL-INPUT-
|
|
2327
|
+
"KOL-INPUT-TEXT": `kol-input {
|
|
2352
2328
|
display: grid;
|
|
2353
2329
|
padding: 0;
|
|
2354
2330
|
margin: 0;
|
|
2331
|
+
font-size: var(--text-size);
|
|
2355
2332
|
}
|
|
2356
2333
|
input:focus,
|
|
2357
2334
|
input:hover,
|
|
@@ -2359,7 +2336,12 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2359
2336
|
select:hover,
|
|
2360
2337
|
textarea:focus,
|
|
2361
2338
|
textarea:hover {
|
|
2362
|
-
border-color:
|
|
2339
|
+
border-color: var(--color-gruen-hell);
|
|
2340
|
+
}
|
|
2341
|
+
.error input:invalid,
|
|
2342
|
+
.error select:invalid,
|
|
2343
|
+
.error textarea:invalid {
|
|
2344
|
+
border-color: var(--color-rot);
|
|
2363
2345
|
}
|
|
2364
2346
|
input:focus-within,
|
|
2365
2347
|
select:focus-within,
|
|
@@ -2371,9 +2353,8 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2371
2353
|
margin-bottom: var(--gapSmallest);
|
|
2372
2354
|
}
|
|
2373
2355
|
kol-input > label > span {
|
|
2374
|
-
color:
|
|
2375
|
-
|
|
2376
|
-
line-height: 1.5rem;
|
|
2356
|
+
color: var(--color-text);
|
|
2357
|
+
line-height: 1.5;
|
|
2377
2358
|
}
|
|
2378
2359
|
kol-input > div.input {
|
|
2379
2360
|
background-color: white;
|
|
@@ -2381,23 +2362,268 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2381
2362
|
order: 2;
|
|
2382
2363
|
}
|
|
2383
2364
|
kol-input > kol-alert.error {
|
|
2384
|
-
margin-top: 0.
|
|
2365
|
+
margin-top: 0.25rem;
|
|
2385
2366
|
order: 3;
|
|
2386
2367
|
}
|
|
2387
2368
|
input,
|
|
2388
2369
|
select,
|
|
2389
2370
|
textarea {
|
|
2390
|
-
font-family: var(--
|
|
2371
|
+
font-family: var(--font-family);
|
|
2391
2372
|
background-color: transparent;
|
|
2392
2373
|
box-sizing: border-box;
|
|
2393
|
-
font-size: var(--
|
|
2374
|
+
font-size: var(--text-size);
|
|
2394
2375
|
display: inline-flex;
|
|
2395
2376
|
line-height: 1.5;
|
|
2396
2377
|
color: black;
|
|
2397
2378
|
border-color: var(--color-gruen);
|
|
2398
2379
|
border-width: 1px;
|
|
2399
2380
|
border-style: solid;
|
|
2400
|
-
padding: 0.5em;
|
|
2381
|
+
padding: 0.5em 0.75em;
|
|
2382
|
+
overflow: hidden;
|
|
2383
|
+
width: 100%;
|
|
2384
|
+
}
|
|
2385
|
+
input:not([type="range"]),
|
|
2386
|
+
select:not([multiple]) {
|
|
2387
|
+
height: 2.75em;
|
|
2388
|
+
}
|
|
2389
|
+
textarea {
|
|
2390
|
+
display: inherit;
|
|
2391
|
+
}
|
|
2392
|
+
input::placeholder {
|
|
2393
|
+
color: var(--color-grau-dunkel);
|
|
2394
|
+
}
|
|
2395
|
+
input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
|
|
2396
|
+
cursor: not-allowed;
|
|
2397
|
+
}
|
|
2398
|
+
.required label > span::after {
|
|
2399
|
+
content: "*";
|
|
2400
|
+
padding-left: 0.125em;
|
|
2401
|
+
}
|
|
2402
|
+
.icons {
|
|
2403
|
+
display: flex;
|
|
2404
|
+
justify-content: space-between;
|
|
2405
|
+
height: 0;
|
|
2406
|
+
}
|
|
2407
|
+
.icons > * {
|
|
2408
|
+
margin: 0.75em;
|
|
2409
|
+
}
|
|
2410
|
+
.icon-left input,
|
|
2411
|
+
.icon-left select {
|
|
2412
|
+
padding-left: 2em;
|
|
2413
|
+
}
|
|
2414
|
+
.icon-right input,
|
|
2415
|
+
.icon-right select {
|
|
2416
|
+
padding-right: 2em;
|
|
2417
|
+
}
|
|
2418
|
+
kol-button-wc {
|
|
2419
|
+
position: relative;
|
|
2420
|
+
float: right;
|
|
2421
|
+
z-index: 1000;
|
|
2422
|
+
margin-top: -33px;
|
|
2423
|
+
}
|
|
2424
|
+
kol-button-wc button {
|
|
2425
|
+
border: 1px solid var(--color-grau-dunkel);
|
|
2426
|
+
box-sizing: border-box;
|
|
2427
|
+
background-color: transparent;
|
|
2428
|
+
cursor: pointer;
|
|
2429
|
+
}
|
|
2430
|
+
.icon-right kol-button-wc {
|
|
2431
|
+
margin-right: 2.5em;
|
|
2432
|
+
}
|
|
2433
|
+
.disabled {
|
|
2434
|
+
opacity: 0.33;
|
|
2435
|
+
}
|
|
2436
|
+
select[multiple],
|
|
2437
|
+
textarea {
|
|
2438
|
+
overflow: auto;
|
|
2439
|
+
}
|
|
2440
|
+
textarea {
|
|
2441
|
+
display: block;
|
|
2442
|
+
}
|
|
2443
|
+
select option {
|
|
2444
|
+
margin: 1px 0;
|
|
2445
|
+
padding: 0.5em;
|
|
2446
|
+
cursor: pointer;
|
|
2447
|
+
}
|
|
2448
|
+
select option:disabled {
|
|
2449
|
+
cursor: not-allowed;
|
|
2450
|
+
}
|
|
2451
|
+
option:active:not(:disabled),
|
|
2452
|
+
option:checked:not(:disabled),
|
|
2453
|
+
option:focus:not(:disabled),
|
|
2454
|
+
option:hover:not(:disabled) {
|
|
2455
|
+
color: white;
|
|
2456
|
+
}`,
|
|
2457
|
+
"KOL-INPUT-PASSWORD": `kol-input {
|
|
2458
|
+
display: grid;
|
|
2459
|
+
padding: 0;
|
|
2460
|
+
margin: 0;
|
|
2461
|
+
}
|
|
2462
|
+
input:focus,
|
|
2463
|
+
input:hover,
|
|
2464
|
+
select:focus,
|
|
2465
|
+
select:hover,
|
|
2466
|
+
textarea:focus,
|
|
2467
|
+
textarea:hover {
|
|
2468
|
+
border-color: black;
|
|
2469
|
+
}
|
|
2470
|
+
kol-input > label {
|
|
2471
|
+
order: 1;
|
|
2472
|
+
margin-bottom: 0.25em;
|
|
2473
|
+
}
|
|
2474
|
+
kol-input > label > span {
|
|
2475
|
+
color: black;
|
|
2476
|
+
font-size: 0.875rem;
|
|
2477
|
+
line-height: 1.5rem;
|
|
2478
|
+
}
|
|
2479
|
+
kol-input > div.input {
|
|
2480
|
+
background-color: white;
|
|
2481
|
+
display: block;
|
|
2482
|
+
order: 2;
|
|
2483
|
+
}
|
|
2484
|
+
kol-input > kol-alert.error {
|
|
2485
|
+
margin-top: 0.25em;
|
|
2486
|
+
order: 3;
|
|
2487
|
+
}
|
|
2488
|
+
input,
|
|
2489
|
+
select,
|
|
2490
|
+
textarea {
|
|
2491
|
+
font-family: var(--font-family);
|
|
2492
|
+
background-color: transparent;
|
|
2493
|
+
box-sizing: border-box;
|
|
2494
|
+
font-size: 1rem;
|
|
2495
|
+
display: inline-flex;
|
|
2496
|
+
line-height: 1.5em;
|
|
2497
|
+
color: black;
|
|
2498
|
+
border-color: var(--color-grau-dunkel);
|
|
2499
|
+
border-width: 1px;
|
|
2500
|
+
border-style: solid;
|
|
2501
|
+
padding: 0.5em 0.75em;
|
|
2502
|
+
overflow: hidden;
|
|
2503
|
+
width: 100%;
|
|
2504
|
+
}
|
|
2505
|
+
input:not([type="range"]),
|
|
2506
|
+
select:not([multiple]) {
|
|
2507
|
+
height: 2.75em;
|
|
2508
|
+
}
|
|
2509
|
+
textarea {
|
|
2510
|
+
display: inherit;
|
|
2511
|
+
}
|
|
2512
|
+
input::placeholder {
|
|
2513
|
+
color: var(--color-grau-dunkel);
|
|
2514
|
+
}
|
|
2515
|
+
input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
|
|
2516
|
+
cursor: not-allowed;
|
|
2517
|
+
}
|
|
2518
|
+
.required label > span::after {
|
|
2519
|
+
content: "*";
|
|
2520
|
+
padding-left: 0.125em;
|
|
2521
|
+
}
|
|
2522
|
+
.icons {
|
|
2523
|
+
display: flex;
|
|
2524
|
+
justify-content: space-between;
|
|
2525
|
+
height: 0;
|
|
2526
|
+
}
|
|
2527
|
+
.icons > * {
|
|
2528
|
+
margin: 0.75em;
|
|
2529
|
+
}
|
|
2530
|
+
.icon-left input,
|
|
2531
|
+
.icon-left select {
|
|
2532
|
+
padding-left: 2em;
|
|
2533
|
+
}
|
|
2534
|
+
.icon-right input,
|
|
2535
|
+
.icon-right select {
|
|
2536
|
+
padding-right: 2em;
|
|
2537
|
+
}
|
|
2538
|
+
kol-button-wc {
|
|
2539
|
+
position: relative;
|
|
2540
|
+
float: right;
|
|
2541
|
+
z-index: 1000;
|
|
2542
|
+
margin-top: -33px;
|
|
2543
|
+
}
|
|
2544
|
+
kol-button-wc button {
|
|
2545
|
+
border: 1px solid var(--color-grau-dunkel);
|
|
2546
|
+
box-sizing: border-box;
|
|
2547
|
+
background-color: transparent;
|
|
2548
|
+
cursor: pointer;
|
|
2549
|
+
}
|
|
2550
|
+
.icon-right kol-button-wc {
|
|
2551
|
+
margin-right: 2.5em;
|
|
2552
|
+
}
|
|
2553
|
+
.disabled {
|
|
2554
|
+
opacity: 0.33;
|
|
2555
|
+
}
|
|
2556
|
+
select[multiple],
|
|
2557
|
+
textarea {
|
|
2558
|
+
overflow: auto;
|
|
2559
|
+
}
|
|
2560
|
+
textarea {
|
|
2561
|
+
display: block;
|
|
2562
|
+
}
|
|
2563
|
+
select option {
|
|
2564
|
+
margin: 1px 0;
|
|
2565
|
+
padding: 0.5em;
|
|
2566
|
+
cursor: pointer;
|
|
2567
|
+
}
|
|
2568
|
+
select option:disabled {
|
|
2569
|
+
cursor: not-allowed;
|
|
2570
|
+
}
|
|
2571
|
+
option:active:not(:disabled),
|
|
2572
|
+
option:checked:not(:disabled),
|
|
2573
|
+
option:focus:not(:disabled),
|
|
2574
|
+
option:hover:not(:disabled) {
|
|
2575
|
+
color: white;
|
|
2576
|
+
}`,
|
|
2577
|
+
"KOL-INPUT-NUMBER": `kol-input {
|
|
2578
|
+
display: grid;
|
|
2579
|
+
padding: 0;
|
|
2580
|
+
margin: 0;
|
|
2581
|
+
}
|
|
2582
|
+
input:focus,
|
|
2583
|
+
input:hover,
|
|
2584
|
+
select:focus,
|
|
2585
|
+
select:hover,
|
|
2586
|
+
textarea:focus,
|
|
2587
|
+
textarea:hover {
|
|
2588
|
+
border-color: black;
|
|
2589
|
+
}
|
|
2590
|
+
input:focus-within,
|
|
2591
|
+
select:focus-within,
|
|
2592
|
+
textarea:focus-within {
|
|
2593
|
+
outline: var(--color-focus) solid 2px;
|
|
2594
|
+
}
|
|
2595
|
+
kol-input > label {
|
|
2596
|
+
order: 1;
|
|
2597
|
+
margin-bottom: var(--gapSmallest);
|
|
2598
|
+
}
|
|
2599
|
+
kol-input > label > span {
|
|
2600
|
+
color: black;
|
|
2601
|
+
font-size: 0.875rem;
|
|
2602
|
+
line-height: 1.5rem;
|
|
2603
|
+
}
|
|
2604
|
+
kol-input > div.input {
|
|
2605
|
+
background-color: white;
|
|
2606
|
+
display: block;
|
|
2607
|
+
order: 2;
|
|
2608
|
+
}
|
|
2609
|
+
kol-input > kol-alert.error {
|
|
2610
|
+
margin-top: 0.25em;
|
|
2611
|
+
order: 3;
|
|
2612
|
+
}
|
|
2613
|
+
input,
|
|
2614
|
+
select,
|
|
2615
|
+
textarea {
|
|
2616
|
+
font-family: var(--textFont);
|
|
2617
|
+
background-color: transparent;
|
|
2618
|
+
box-sizing: border-box;
|
|
2619
|
+
font-size: var(--textFontSize);
|
|
2620
|
+
display: inline-flex;
|
|
2621
|
+
line-height: 1.5;
|
|
2622
|
+
color: black;
|
|
2623
|
+
border-color: var(--color-gruen);
|
|
2624
|
+
border-width: 1px;
|
|
2625
|
+
border-style: solid;
|
|
2626
|
+
padding: 0.5em;
|
|
2401
2627
|
overflow: hidden;
|
|
2402
2628
|
width: 100%;
|
|
2403
2629
|
}
|
|
@@ -4488,6 +4714,18 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
4488
4714
|
}`,
|
|
4489
4715
|
"KOL-TOOLTIP": `:host {
|
|
4490
4716
|
--kolibri-font-size: var(--textFontSize);
|
|
4717
|
+
}`,
|
|
4718
|
+
"KOL-SKIP-NAV": `kol-link-wc > a > kol-span-wc {
|
|
4719
|
+
border-radius: 2px;
|
|
4720
|
+
border-style: solid;
|
|
4721
|
+
border-width: 2px;
|
|
4722
|
+
gap: 0.5rem;
|
|
4723
|
+
line-height: 1rem;
|
|
4724
|
+
padding: 0.75rem 1rem;
|
|
4725
|
+
background-color: var(--colorPrimary);
|
|
4726
|
+
border-color: var(--colorPrimary);
|
|
4727
|
+
color: var(--colorPrimaryFront);
|
|
4728
|
+
cursor: pointer;
|
|
4491
4729
|
}`
|
|
4492
4730
|
});
|
|
4493
4731
|
|
|
@@ -4943,7 +5181,7 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4943
5181
|
border-color: var(--color-granite);
|
|
4944
5182
|
color: var(--color-black);
|
|
4945
5183
|
}`,
|
|
4946
|
-
"KOL-INPUT-
|
|
5184
|
+
"KOL-INPUT-DATE": `kol-input {
|
|
4947
5185
|
gap: 0.25em;
|
|
4948
5186
|
}
|
|
4949
5187
|
kol-input .error {
|
|
@@ -4994,7 +5232,6 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4994
5232
|
.input:hover {
|
|
4995
5233
|
border-color: var(--color-midnight);
|
|
4996
5234
|
}
|
|
4997
|
-
input:read-only,
|
|
4998
5235
|
input:disabled {
|
|
4999
5236
|
cursor: not-allowed;
|
|
5000
5237
|
}
|
|
@@ -5021,7 +5258,7 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5021
5258
|
border-color: var(--color-granite);
|
|
5022
5259
|
color: var(--color-black);
|
|
5023
5260
|
}`,
|
|
5024
|
-
"KOL-INPUT-
|
|
5261
|
+
"KOL-INPUT-EMAIL": `kol-input {
|
|
5025
5262
|
gap: 0.25em;
|
|
5026
5263
|
}
|
|
5027
5264
|
kol-input .error {
|
|
@@ -5038,15 +5275,93 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5038
5275
|
font-size: 0.875em;
|
|
5039
5276
|
font-style: italic;
|
|
5040
5277
|
}
|
|
5041
|
-
kol-input .input input[type="file"] {
|
|
5042
|
-
padding-top: calc(0.5em + 2px);
|
|
5043
|
-
}
|
|
5044
5278
|
input {
|
|
5045
5279
|
border: none;
|
|
5046
5280
|
}
|
|
5047
|
-
input
|
|
5048
|
-
|
|
5049
|
-
}
|
|
5281
|
+
input::placeholder {
|
|
5282
|
+
color: var(--color-grey);
|
|
5283
|
+
}
|
|
5284
|
+
.input {
|
|
5285
|
+
background-color: var(--color-white);
|
|
5286
|
+
border-color: var(--color-grey);
|
|
5287
|
+
border-radius: var(--border-radius);
|
|
5288
|
+
border-style: solid;
|
|
5289
|
+
border-width: 2px;
|
|
5290
|
+
padding: 0 0.5em;
|
|
5291
|
+
}
|
|
5292
|
+
.input > kol-icon {
|
|
5293
|
+
width: 1em;
|
|
5294
|
+
}
|
|
5295
|
+
.input:is(.icon-left, .icon-right) {
|
|
5296
|
+
padding-left: 1em;
|
|
5297
|
+
padding-right: 1em;
|
|
5298
|
+
}
|
|
5299
|
+
.input:is(.icon-left, .icon-right) input {
|
|
5300
|
+
padding-left: 0.5em;
|
|
5301
|
+
padding-right: 0.5em;
|
|
5302
|
+
}
|
|
5303
|
+
.input > input:first-child {
|
|
5304
|
+
padding-left: 0.375em;
|
|
5305
|
+
}
|
|
5306
|
+
.input > input:last-child {
|
|
5307
|
+
padding-right: 0.375em;
|
|
5308
|
+
}
|
|
5309
|
+
.input:hover {
|
|
5310
|
+
border-color: var(--color-midnight);
|
|
5311
|
+
}
|
|
5312
|
+
input:read-only,
|
|
5313
|
+
input:disabled {
|
|
5314
|
+
cursor: not-allowed;
|
|
5315
|
+
}
|
|
5316
|
+
.required label > span::after {
|
|
5317
|
+
content: "*";
|
|
5318
|
+
padding-left: 0.125em;
|
|
5319
|
+
}
|
|
5320
|
+
kol-input.error {
|
|
5321
|
+
border-left: 3px solid var(--color-red);
|
|
5322
|
+
padding-left: 1em;
|
|
5323
|
+
}
|
|
5324
|
+
kol-input.error .input:focus-within {
|
|
5325
|
+
outline-color: var(--color-red) !important;
|
|
5326
|
+
}
|
|
5327
|
+
kol-input.error kol-alert.error {
|
|
5328
|
+
color: var(--color-red);
|
|
5329
|
+
font-weight: 700;
|
|
5330
|
+
}
|
|
5331
|
+
kol-input.disabled :is(input, label) {
|
|
5332
|
+
opacity: 1;
|
|
5333
|
+
}
|
|
5334
|
+
kol-input.disabled :is(input, .input) {
|
|
5335
|
+
background-color: var(--color-smoke);
|
|
5336
|
+
border-color: var(--color-granite);
|
|
5337
|
+
color: var(--color-black);
|
|
5338
|
+
}`,
|
|
5339
|
+
"KOL-INPUT-FILE": `kol-input {
|
|
5340
|
+
gap: 0.25em;
|
|
5341
|
+
}
|
|
5342
|
+
kol-input .error {
|
|
5343
|
+
order: 1;
|
|
5344
|
+
}
|
|
5345
|
+
kol-input label {
|
|
5346
|
+
order: 2;
|
|
5347
|
+
}
|
|
5348
|
+
kol-input .input {
|
|
5349
|
+
order: 3;
|
|
5350
|
+
}
|
|
5351
|
+
kol-input .hint {
|
|
5352
|
+
order: 4;
|
|
5353
|
+
font-size: 0.875em;
|
|
5354
|
+
font-style: italic;
|
|
5355
|
+
}
|
|
5356
|
+
kol-input .input input[type="file"] {
|
|
5357
|
+
padding-top: calc(0.5em + 2px);
|
|
5358
|
+
}
|
|
5359
|
+
input {
|
|
5360
|
+
border: none;
|
|
5361
|
+
}
|
|
5362
|
+
input[type="file"] {
|
|
5363
|
+
background-color: transparent;
|
|
5364
|
+
}
|
|
5050
5365
|
input::placeholder {
|
|
5051
5366
|
color: var(--color-grey);
|
|
5052
5367
|
}
|
|
@@ -13978,6 +14293,18 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
13978
14293
|
u+f0ec, u+f10a-f10b, u+f123, u+f13e, u+f148-f149, u+f14c, u+f156, u+f15e,
|
|
13979
14294
|
u+f160-f161, u+f163, u+f175-f178, u+f195, u+f1f8, u+f219, u+f250, u+f252,
|
|
13980
14295
|
u+f27a;
|
|
14296
|
+
}`,
|
|
14297
|
+
"KOL-SKIP-NAV": `kol-link-wc > a > kol-span-wc {
|
|
14298
|
+
border-radius: var(--a11y-min-size);
|
|
14299
|
+
border-style: solid;
|
|
14300
|
+
border-width: 2px;
|
|
14301
|
+
gap: 0.5rem;
|
|
14302
|
+
line-height: 1rem;
|
|
14303
|
+
padding: 8px 14px;
|
|
14304
|
+
background-color: var(--color-ocean);
|
|
14305
|
+
border-color: var(--color-ocean);
|
|
14306
|
+
color: var(--color-white);
|
|
14307
|
+
cursor: pointer;
|
|
13981
14308
|
}`
|
|
13982
14309
|
});
|
|
13983
14310
|
|
|
@@ -15775,6 +16102,145 @@ const DESYv1 = KoliBri.createTheme("desy-v1", {
|
|
|
15775
16102
|
background: var(--color-primary);
|
|
15776
16103
|
color: white;
|
|
15777
16104
|
}`,
|
|
16105
|
+
"KOL-INPUT-DATE": `kol-input {
|
|
16106
|
+
display: grid;
|
|
16107
|
+
}
|
|
16108
|
+
kol-input label {
|
|
16109
|
+
order: 1;
|
|
16110
|
+
padding: 0.125rem 0 0.4rem;
|
|
16111
|
+
vertical-align: text-top;
|
|
16112
|
+
line-height: 1.2;
|
|
16113
|
+
}
|
|
16114
|
+
kol-input div.input {
|
|
16115
|
+
box-sizing: border-box;
|
|
16116
|
+
order: 2;
|
|
16117
|
+
background-color: white;
|
|
16118
|
+
border-radius: 0.3125rem;
|
|
16119
|
+
}
|
|
16120
|
+
kol-input kol-alert.error {
|
|
16121
|
+
margin-bottom: 0.4em;
|
|
16122
|
+
margin-top: 0.2em;
|
|
16123
|
+
order: 3;
|
|
16124
|
+
}
|
|
16125
|
+
input,
|
|
16126
|
+
select,
|
|
16127
|
+
textarea {
|
|
16128
|
+
font-family: var(--font-family);
|
|
16129
|
+
background-color: transparent;
|
|
16130
|
+
box-sizing: border-box;
|
|
16131
|
+
font-size: 1rem;
|
|
16132
|
+
display: inline-flex;
|
|
16133
|
+
border-color: var(--color-grey);
|
|
16134
|
+
border-width: 1px;
|
|
16135
|
+
border-style: solid;
|
|
16136
|
+
overflow: hidden;
|
|
16137
|
+
width: 100%;
|
|
16138
|
+
line-height: normal;
|
|
16139
|
+
padding: 0.4rem 8px;
|
|
16140
|
+
}
|
|
16141
|
+
input:hover,
|
|
16142
|
+
select:hover,
|
|
16143
|
+
textarea:hover {
|
|
16144
|
+
border-color: #2d6f9e;
|
|
16145
|
+
box-shadow: 0 0 0 1px #2d6f9e inset;
|
|
16146
|
+
}
|
|
16147
|
+
input:focus,
|
|
16148
|
+
select:focus,
|
|
16149
|
+
textarea:focus {
|
|
16150
|
+
border-color: var(--color-primary-20);
|
|
16151
|
+
box-shadow: inset 0 0 0 1px var(--color-primary-20);
|
|
16152
|
+
outline: none;
|
|
16153
|
+
}
|
|
16154
|
+
input,
|
|
16155
|
+
select:not([multiple]) {
|
|
16156
|
+
height: 2.75em;
|
|
16157
|
+
}
|
|
16158
|
+
input::placeholder {
|
|
16159
|
+
color: var(--color-grey);
|
|
16160
|
+
}
|
|
16161
|
+
input:hover {
|
|
16162
|
+
border-color: var(--color-midnight);
|
|
16163
|
+
}
|
|
16164
|
+
input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
|
|
16165
|
+
cursor: not-allowed;
|
|
16166
|
+
border-color: var(--border-default);
|
|
16167
|
+
}
|
|
16168
|
+
.required label > span::after {
|
|
16169
|
+
content: "*";
|
|
16170
|
+
padding-left: 0.125em;
|
|
16171
|
+
}
|
|
16172
|
+
.icons {
|
|
16173
|
+
display: flex;
|
|
16174
|
+
justify-content: space-between;
|
|
16175
|
+
height: 0;
|
|
16176
|
+
}
|
|
16177
|
+
.icons > * {
|
|
16178
|
+
margin: 0.75em;
|
|
16179
|
+
}
|
|
16180
|
+
.icon-left input,
|
|
16181
|
+
.icon-left select {
|
|
16182
|
+
padding-left: 2em;
|
|
16183
|
+
}
|
|
16184
|
+
.icon-right input,
|
|
16185
|
+
.icon-right select {
|
|
16186
|
+
padding-right: 2em;
|
|
16187
|
+
}
|
|
16188
|
+
kol-input.error input:focus,
|
|
16189
|
+
kol-input.error select:focus,
|
|
16190
|
+
kol-input.error textarea:focus {
|
|
16191
|
+
border-color: var(--color-warning);
|
|
16192
|
+
box-shadow: inset 0 0 0 1px var(--color-warning);
|
|
16193
|
+
}
|
|
16194
|
+
kol-input.error kol-alert.error {
|
|
16195
|
+
color: var(--color-warning);
|
|
16196
|
+
}
|
|
16197
|
+
kol-button-wc {
|
|
16198
|
+
position: relative;
|
|
16199
|
+
float: right;
|
|
16200
|
+
z-index: 1000;
|
|
16201
|
+
margin-top: -2.7em;
|
|
16202
|
+
}
|
|
16203
|
+
kol-button-wc button {
|
|
16204
|
+
border: 0;
|
|
16205
|
+
height: 2.7em;
|
|
16206
|
+
box-sizing: border-box;
|
|
16207
|
+
background-color: transparent;
|
|
16208
|
+
cursor: pointer;
|
|
16209
|
+
}
|
|
16210
|
+
kol-button-wc button:focus,
|
|
16211
|
+
kol-button-wc button:hover {
|
|
16212
|
+
background-color: var(--color-primary);
|
|
16213
|
+
color: var(--color-white);
|
|
16214
|
+
}
|
|
16215
|
+
.icon-right kol-button-wc {
|
|
16216
|
+
margin-right: 2.5em;
|
|
16217
|
+
}
|
|
16218
|
+
.disabled {
|
|
16219
|
+
opacity: 0.33;
|
|
16220
|
+
}
|
|
16221
|
+
select[multiple],
|
|
16222
|
+
textarea {
|
|
16223
|
+
overflow: auto;
|
|
16224
|
+
}
|
|
16225
|
+
textarea {
|
|
16226
|
+
display: block;
|
|
16227
|
+
}
|
|
16228
|
+
select option {
|
|
16229
|
+
margin: 1px 0;
|
|
16230
|
+
padding: 0.5em;
|
|
16231
|
+
border-radius: 0.25em;
|
|
16232
|
+
cursor: pointer;
|
|
16233
|
+
}
|
|
16234
|
+
select option:disabled {
|
|
16235
|
+
cursor: not-allowed;
|
|
16236
|
+
}
|
|
16237
|
+
option:active:not(:disabled),
|
|
16238
|
+
option:checked:not(:disabled),
|
|
16239
|
+
option:focus:not(:disabled),
|
|
16240
|
+
option:hover:not(:disabled) {
|
|
16241
|
+
background: var(--color-primary);
|
|
16242
|
+
color: white;
|
|
16243
|
+
}`,
|
|
15778
16244
|
"KOL-INPUT-EMAIL": `kol-input {
|
|
15779
16245
|
display: grid;
|
|
15780
16246
|
}
|
|
@@ -16652,6 +17118,18 @@ const DESYv1 = KoliBri.createTheme("desy-v1", {
|
|
|
16652
17118
|
background: white;
|
|
16653
17119
|
left: unset;
|
|
16654
17120
|
position: unset;
|
|
17121
|
+
}`,
|
|
17122
|
+
"KOL-SKIP-NAV": `kol-link-wc > a > kol-span-wc {
|
|
17123
|
+
border-radius: 2px;
|
|
17124
|
+
border-style: solid;
|
|
17125
|
+
border-width: 2px;
|
|
17126
|
+
gap: 0.5rem;
|
|
17127
|
+
line-height: 1rem;
|
|
17128
|
+
padding: 0.75rem 1rem;
|
|
17129
|
+
background-color: var(--color-primary);
|
|
17130
|
+
border-color: var(--color-primary-10);
|
|
17131
|
+
color: white;
|
|
17132
|
+
cursor: pointer;
|
|
16655
17133
|
}`
|
|
16656
17134
|
});
|
|
16657
17135
|
|
|
@@ -18463,6 +18941,145 @@ const DESYv2 = KoliBri.createTheme("desy-v2", {
|
|
|
18463
18941
|
background: var(--color-primary);
|
|
18464
18942
|
color: white;
|
|
18465
18943
|
}`,
|
|
18944
|
+
"KOL-INPUT-DATE": `kol-input {
|
|
18945
|
+
display: grid;
|
|
18946
|
+
}
|
|
18947
|
+
kol-input label {
|
|
18948
|
+
order: 1;
|
|
18949
|
+
padding: 0.125rem 0 0.4rem;
|
|
18950
|
+
vertical-align: text-top;
|
|
18951
|
+
line-height: 1.2;
|
|
18952
|
+
}
|
|
18953
|
+
kol-input div.input {
|
|
18954
|
+
box-sizing: border-box;
|
|
18955
|
+
order: 2;
|
|
18956
|
+
background-color: white;
|
|
18957
|
+
border-radius: 0.3125rem;
|
|
18958
|
+
}
|
|
18959
|
+
kol-input kol-alert.error {
|
|
18960
|
+
margin-bottom: 0.4em;
|
|
18961
|
+
margin-top: 0.2em;
|
|
18962
|
+
order: 3;
|
|
18963
|
+
}
|
|
18964
|
+
input,
|
|
18965
|
+
select,
|
|
18966
|
+
textarea {
|
|
18967
|
+
font-family: var(--font-family);
|
|
18968
|
+
background-color: transparent;
|
|
18969
|
+
box-sizing: border-box;
|
|
18970
|
+
font-size: 1rem;
|
|
18971
|
+
display: inline-flex;
|
|
18972
|
+
border-color: var(--color-grey);
|
|
18973
|
+
border-width: 1px;
|
|
18974
|
+
border-style: solid;
|
|
18975
|
+
overflow: hidden;
|
|
18976
|
+
width: 100%;
|
|
18977
|
+
line-height: normal;
|
|
18978
|
+
padding: 0.4rem 8px;
|
|
18979
|
+
}
|
|
18980
|
+
input:hover,
|
|
18981
|
+
select:hover,
|
|
18982
|
+
textarea:hover {
|
|
18983
|
+
border-color: #2d6f9e;
|
|
18984
|
+
box-shadow: 0 0 0 1px #2d6f9e inset;
|
|
18985
|
+
}
|
|
18986
|
+
input:focus,
|
|
18987
|
+
select:focus,
|
|
18988
|
+
textarea:focus {
|
|
18989
|
+
border-color: var(--color-primary-20);
|
|
18990
|
+
box-shadow: inset 0 0 0 1px var(--color-primary-20);
|
|
18991
|
+
outline: none;
|
|
18992
|
+
}
|
|
18993
|
+
input,
|
|
18994
|
+
select:not([multiple]) {
|
|
18995
|
+
height: 2.75em;
|
|
18996
|
+
}
|
|
18997
|
+
input::placeholder {
|
|
18998
|
+
color: var(--color-grey);
|
|
18999
|
+
}
|
|
19000
|
+
input:hover {
|
|
19001
|
+
border-color: var(--color-midnight);
|
|
19002
|
+
}
|
|
19003
|
+
input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
|
|
19004
|
+
cursor: not-allowed;
|
|
19005
|
+
border-color: var(--border-default);
|
|
19006
|
+
}
|
|
19007
|
+
.required label > span::after {
|
|
19008
|
+
content: "*";
|
|
19009
|
+
padding-left: 0.125em;
|
|
19010
|
+
}
|
|
19011
|
+
.icons {
|
|
19012
|
+
display: flex;
|
|
19013
|
+
justify-content: space-between;
|
|
19014
|
+
height: 0;
|
|
19015
|
+
}
|
|
19016
|
+
.icons > * {
|
|
19017
|
+
margin: 0.75em;
|
|
19018
|
+
}
|
|
19019
|
+
.icon-left input,
|
|
19020
|
+
.icon-left select {
|
|
19021
|
+
padding-left: 2em;
|
|
19022
|
+
}
|
|
19023
|
+
.icon-right input,
|
|
19024
|
+
.icon-right select {
|
|
19025
|
+
padding-right: 2em;
|
|
19026
|
+
}
|
|
19027
|
+
kol-input.error input:focus,
|
|
19028
|
+
kol-input.error select:focus,
|
|
19029
|
+
kol-input.error textarea:focus {
|
|
19030
|
+
border-color: var(--color-warning);
|
|
19031
|
+
box-shadow: inset 0 0 0 1px var(--color-warning);
|
|
19032
|
+
}
|
|
19033
|
+
kol-input.error kol-alert.error {
|
|
19034
|
+
color: var(--color-warning);
|
|
19035
|
+
}
|
|
19036
|
+
kol-button-wc {
|
|
19037
|
+
position: relative;
|
|
19038
|
+
float: right;
|
|
19039
|
+
z-index: 1000;
|
|
19040
|
+
margin-top: -2.7em;
|
|
19041
|
+
}
|
|
19042
|
+
kol-button-wc button {
|
|
19043
|
+
border: 0;
|
|
19044
|
+
height: 2.7em;
|
|
19045
|
+
box-sizing: border-box;
|
|
19046
|
+
background-color: transparent;
|
|
19047
|
+
cursor: pointer;
|
|
19048
|
+
}
|
|
19049
|
+
kol-button-wc button:focus,
|
|
19050
|
+
kol-button-wc button:hover {
|
|
19051
|
+
background-color: var(--color-primary);
|
|
19052
|
+
color: var(--color-white);
|
|
19053
|
+
}
|
|
19054
|
+
.icon-right kol-button-wc {
|
|
19055
|
+
margin-right: 2.5em;
|
|
19056
|
+
}
|
|
19057
|
+
.disabled {
|
|
19058
|
+
opacity: 0.33;
|
|
19059
|
+
}
|
|
19060
|
+
select[multiple],
|
|
19061
|
+
textarea {
|
|
19062
|
+
overflow: auto;
|
|
19063
|
+
}
|
|
19064
|
+
textarea {
|
|
19065
|
+
display: block;
|
|
19066
|
+
}
|
|
19067
|
+
select option {
|
|
19068
|
+
margin: 1px 0;
|
|
19069
|
+
padding: 0.5em;
|
|
19070
|
+
border-radius: 0.25em;
|
|
19071
|
+
cursor: pointer;
|
|
19072
|
+
}
|
|
19073
|
+
select option:disabled {
|
|
19074
|
+
cursor: not-allowed;
|
|
19075
|
+
}
|
|
19076
|
+
option:active:not(:disabled),
|
|
19077
|
+
option:checked:not(:disabled),
|
|
19078
|
+
option:focus:not(:disabled),
|
|
19079
|
+
option:hover:not(:disabled) {
|
|
19080
|
+
background: var(--color-primary);
|
|
19081
|
+
color: white;
|
|
19082
|
+
}`,
|
|
18466
19083
|
"KOL-INPUT-EMAIL": `kol-input {
|
|
18467
19084
|
display: grid;
|
|
18468
19085
|
}
|
|
@@ -19340,6 +19957,18 @@ const DESYv2 = KoliBri.createTheme("desy-v2", {
|
|
|
19340
19957
|
background: white;
|
|
19341
19958
|
left: unset;
|
|
19342
19959
|
position: unset;
|
|
19960
|
+
}`,
|
|
19961
|
+
"KOL-SKIP-NAV": `kol-link-wc > a > kol-span-wc {
|
|
19962
|
+
border-radius: 2px;
|
|
19963
|
+
border-style: solid;
|
|
19964
|
+
border-width: 2px;
|
|
19965
|
+
gap: 0.5rem;
|
|
19966
|
+
line-height: 1rem;
|
|
19967
|
+
padding: 0.75rem 1rem;
|
|
19968
|
+
background-color: var(--color-primary);
|
|
19969
|
+
border-color: var(--color-primary-10);
|
|
19970
|
+
color: white;
|
|
19971
|
+
cursor: pointer;
|
|
19343
19972
|
}`
|
|
19344
19973
|
});
|
|
19345
19974
|
|
|
@@ -20352,6 +20981,58 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
|
|
|
20352
20981
|
.error .input {
|
|
20353
20982
|
border-color: var(--color-red);
|
|
20354
20983
|
}`,
|
|
20984
|
+
"KOL-INPUT-DATE": `kol-input {
|
|
20985
|
+
color: var(--color-grey);
|
|
20986
|
+
gap: var(--spacing-xs);
|
|
20987
|
+
}
|
|
20988
|
+
input,
|
|
20989
|
+
select,
|
|
20990
|
+
textarea {
|
|
20991
|
+
border: none;
|
|
20992
|
+
margin: 1px 0.5em;
|
|
20993
|
+
outline: none;
|
|
20994
|
+
}
|
|
20995
|
+
input,
|
|
20996
|
+
select:not([multiple]) {
|
|
20997
|
+
height: 40px !important;
|
|
20998
|
+
min-height: 40px !important;
|
|
20999
|
+
}
|
|
21000
|
+
label {
|
|
21001
|
+
font-weight: var(--font-weight-bold);
|
|
21002
|
+
order: 1;
|
|
21003
|
+
}
|
|
21004
|
+
.hint {
|
|
21005
|
+
font-size: 0.875rem;
|
|
21006
|
+
order: 2;
|
|
21007
|
+
}
|
|
21008
|
+
kol-alert {
|
|
21009
|
+
color: var(--color-red);
|
|
21010
|
+
font-size: 0.875em;
|
|
21011
|
+
margin-left: calc(-1 * var(--spacing-2xs));
|
|
21012
|
+
order: 3;
|
|
21013
|
+
}
|
|
21014
|
+
.input {
|
|
21015
|
+
min-height: 44px !important;
|
|
21016
|
+
border: 1px solid var(--color-grey-75);
|
|
21017
|
+
color: var(--color-grey);
|
|
21018
|
+
order: 4;
|
|
21019
|
+
align-items: center;
|
|
21020
|
+
}
|
|
21021
|
+
input::placeholder,
|
|
21022
|
+
textarea::placeholder {
|
|
21023
|
+
color: var(--color-grey-50);
|
|
21024
|
+
}
|
|
21025
|
+
.input:focus-within {
|
|
21026
|
+
box-shadow: inset 1px 1px var(--color-blue), inset -1px -1px var(--color-blue);
|
|
21027
|
+
outline: none;
|
|
21028
|
+
}
|
|
21029
|
+
.input:focus-within,
|
|
21030
|
+
.input:hover {
|
|
21031
|
+
border-color: var(--color-blue) !important;
|
|
21032
|
+
}
|
|
21033
|
+
.error .input {
|
|
21034
|
+
border-color: var(--color-red);
|
|
21035
|
+
}`,
|
|
20355
21036
|
"KOL-INPUT-EMAIL": `kol-input {
|
|
20356
21037
|
color: var(--color-grey);
|
|
20357
21038
|
gap: var(--spacing-xs);
|
|
@@ -20712,6 +21393,19 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
|
|
|
20712
21393
|
}
|
|
20713
21394
|
.expanded > div > .expand-button kol-icon::part(icon)::before {
|
|
20714
21395
|
content: "\\eab4";
|
|
21396
|
+
}`,
|
|
21397
|
+
"KOL-SKIP-NAV": `kol-link-wc > a > kol-span-wc {
|
|
21398
|
+
border-radius: 0;
|
|
21399
|
+
border-style: solid;
|
|
21400
|
+
border-width: 2px;
|
|
21401
|
+
font-weight: var(--font-weight-bold);
|
|
21402
|
+
gap: 0.5rem;
|
|
21403
|
+
line-height: 1rem;
|
|
21404
|
+
padding: 0.25em 0.75em;
|
|
21405
|
+
background-color: var(--color-blue);
|
|
21406
|
+
border-color: var(--color-blue);
|
|
21407
|
+
color: var(--color-white);
|
|
21408
|
+
cursor: pointer;
|
|
20715
21409
|
}`
|
|
20716
21410
|
});
|
|
20717
21411
|
|
|
@@ -21701,6 +22395,58 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
|
|
|
21701
22395
|
.error .input {
|
|
21702
22396
|
border-color: var(--color-red);
|
|
21703
22397
|
}`,
|
|
22398
|
+
"KOL-INPUT-DATE": `kol-input {
|
|
22399
|
+
color: var(--color-grey);
|
|
22400
|
+
gap: var(--spacing-xs);
|
|
22401
|
+
}
|
|
22402
|
+
input,
|
|
22403
|
+
select,
|
|
22404
|
+
textarea {
|
|
22405
|
+
border: none;
|
|
22406
|
+
margin: 1px 0.5em;
|
|
22407
|
+
outline: none;
|
|
22408
|
+
}
|
|
22409
|
+
input,
|
|
22410
|
+
select:not([multiple]) {
|
|
22411
|
+
height: 40px !important;
|
|
22412
|
+
min-height: 40px !important;
|
|
22413
|
+
}
|
|
22414
|
+
label {
|
|
22415
|
+
font-weight: var(--font-weight-bold);
|
|
22416
|
+
order: 1;
|
|
22417
|
+
}
|
|
22418
|
+
.hint {
|
|
22419
|
+
font-size: 0.875rem;
|
|
22420
|
+
order: 2;
|
|
22421
|
+
}
|
|
22422
|
+
kol-alert {
|
|
22423
|
+
color: var(--color-red);
|
|
22424
|
+
font-size: 0.875em;
|
|
22425
|
+
margin-left: calc(-1 * var(--spacing-2xs));
|
|
22426
|
+
order: 3;
|
|
22427
|
+
}
|
|
22428
|
+
.input {
|
|
22429
|
+
min-height: 44px !important;
|
|
22430
|
+
border: 1px solid var(--color-grey-75);
|
|
22431
|
+
color: var(--color-grey);
|
|
22432
|
+
order: 4;
|
|
22433
|
+
align-items: center;
|
|
22434
|
+
}
|
|
22435
|
+
input::placeholder,
|
|
22436
|
+
textarea::placeholder {
|
|
22437
|
+
color: var(--color-grey-50);
|
|
22438
|
+
}
|
|
22439
|
+
.input:focus-within {
|
|
22440
|
+
box-shadow: inset 1px 1px var(--color-blue), inset -1px -1px var(--color-blue);
|
|
22441
|
+
outline: none;
|
|
22442
|
+
}
|
|
22443
|
+
.input:focus-within,
|
|
22444
|
+
.input:hover {
|
|
22445
|
+
border-color: var(--color-blue) !important;
|
|
22446
|
+
}
|
|
22447
|
+
.error .input {
|
|
22448
|
+
border-color: var(--color-red);
|
|
22449
|
+
}`,
|
|
21704
22450
|
"KOL-INPUT-PASSWORD": `kol-input {
|
|
21705
22451
|
color: var(--color-grey);
|
|
21706
22452
|
gap: var(--spacing-xs);
|
|
@@ -22125,6 +22871,15 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
|
|
|
22125
22871
|
.hint {
|
|
22126
22872
|
font-size: 0.875rem;
|
|
22127
22873
|
order: 4;
|
|
22874
|
+
}`,
|
|
22875
|
+
"KOL-SKIP-NAV": `kol-link-wc > a > kol-span-wc {
|
|
22876
|
+
border-radius: 4px;
|
|
22877
|
+
gap: 0.5rem;
|
|
22878
|
+
line-height: 1rem;
|
|
22879
|
+
padding: 0.75rem;
|
|
22880
|
+
background-color: #0e47cb;
|
|
22881
|
+
color: #fff;
|
|
22882
|
+
cursor: pointer;
|
|
22128
22883
|
}`
|
|
22129
22884
|
});
|
|
22130
22885
|
|
|
@@ -22658,6 +23413,55 @@ const ITZBund = KoliBri.createTheme("itzbund", {
|
|
|
22658
23413
|
input::placeholder {
|
|
22659
23414
|
font-style: italic;
|
|
22660
23415
|
}`,
|
|
23416
|
+
"KOL-INPUT-DATE": `input:hover,
|
|
23417
|
+
input:focus {
|
|
23418
|
+
border-color: var(--border-color) !important;
|
|
23419
|
+
border-radius: none !important;
|
|
23420
|
+
outline-color: var(--color-achat) !important;
|
|
23421
|
+
outline-offset: 0;
|
|
23422
|
+
outline-style: solid;
|
|
23423
|
+
outline-width: 1px;
|
|
23424
|
+
}
|
|
23425
|
+
label {
|
|
23426
|
+
color: var(--color-anthrazit);
|
|
23427
|
+
font-size: 14px;
|
|
23428
|
+
line-height: 20px;
|
|
23429
|
+
gap: 8px;
|
|
23430
|
+
width: 100%;
|
|
23431
|
+
font-weight: bold;
|
|
23432
|
+
}
|
|
23433
|
+
input {
|
|
23434
|
+
cursor: pointer;
|
|
23435
|
+
width: 100%;
|
|
23436
|
+
color: var(--color-anthrazit);
|
|
23437
|
+
border-width: 1px;
|
|
23438
|
+
border-style: solid;
|
|
23439
|
+
border-color: var(--color-petrol);
|
|
23440
|
+
border-radius: 0;
|
|
23441
|
+
background-color: #e8edf2 !important;
|
|
23442
|
+
overflow: hidden;
|
|
23443
|
+
line-height: 24px;
|
|
23444
|
+
font-size: 16px;
|
|
23445
|
+
}
|
|
23446
|
+
.error input {
|
|
23447
|
+
background-color: var(--color-rotton-20) !important;
|
|
23448
|
+
border-color: var(--color-rotton) !important;
|
|
23449
|
+
}
|
|
23450
|
+
input:disabled {
|
|
23451
|
+
background-color: var(--color-input-bg-default);
|
|
23452
|
+
border-color: var(--border-color);
|
|
23453
|
+
cursor: not-allowed;
|
|
23454
|
+
}
|
|
23455
|
+
kol-alert {
|
|
23456
|
+
margin-top: calc(2 * var(--spacing));
|
|
23457
|
+
display: block;
|
|
23458
|
+
}
|
|
23459
|
+
.kol-required span::after {
|
|
23460
|
+
content: "*";
|
|
23461
|
+
}
|
|
23462
|
+
input::placeholder {
|
|
23463
|
+
font-style: italic;
|
|
23464
|
+
}`,
|
|
22661
23465
|
"KOL-INPUT-EMAIL": `input:hover,
|
|
22662
23466
|
input:focus {
|
|
22663
23467
|
border-color: var(--border-color) !important;
|
|
@@ -23785,6 +24589,17 @@ const ITZBund = KoliBri.createTheme("itzbund", {
|
|
|
23785
24589
|
:host > div.tabs-align-top kol-button-group-wc div {
|
|
23786
24590
|
display: flex;
|
|
23787
24591
|
flex-wrap: wrap;
|
|
24592
|
+
}`,
|
|
24593
|
+
"KOL-SKIP-NAV": `kol-link-wc > a > kol-span-wc {
|
|
24594
|
+
border-radius: 2rem;
|
|
24595
|
+
border-style: solid;
|
|
24596
|
+
gap: 0.5rem;
|
|
24597
|
+
line-height: 1rem;
|
|
24598
|
+
padding: 0 1rem;
|
|
24599
|
+
background-color: var(--color-petrol);
|
|
24600
|
+
border-color: var(--color-petrol);
|
|
24601
|
+
color: var(--color-weiss);
|
|
24602
|
+
cursor: pointer;
|
|
23788
24603
|
}`
|
|
23789
24604
|
});
|
|
23790
24605
|
|
|
@@ -24284,6 +25099,88 @@ const MAPZ = KoliBri.createTheme("mapz", {
|
|
|
24284
25099
|
background-color: var(--kolibri-color-primary);
|
|
24285
25100
|
color: white;
|
|
24286
25101
|
}`,
|
|
25102
|
+
"KOL-INPUT-DATE": `input,
|
|
25103
|
+
select,
|
|
25104
|
+
textarea {
|
|
25105
|
+
border: none;
|
|
25106
|
+
}
|
|
25107
|
+
input[type="color"] {
|
|
25108
|
+
border: none;
|
|
25109
|
+
min-height: 40px !important;
|
|
25110
|
+
}
|
|
25111
|
+
input[type="color"],
|
|
25112
|
+
input[type="file"] {
|
|
25113
|
+
background-color: transparent;
|
|
25114
|
+
}
|
|
25115
|
+
kol-input {
|
|
25116
|
+
gap: var(--spacing);
|
|
25117
|
+
}
|
|
25118
|
+
kol-input > label {
|
|
25119
|
+
order: 1;
|
|
25120
|
+
color: var(--default-letter);
|
|
25121
|
+
}
|
|
25122
|
+
kol-input > .input {
|
|
25123
|
+
border-color: var(--kolibri-border-color);
|
|
25124
|
+
border-radius: 0.25rem;
|
|
25125
|
+
border-style: solid;
|
|
25126
|
+
border-width: 2px;
|
|
25127
|
+
order: 2;
|
|
25128
|
+
}
|
|
25129
|
+
kol-input:hover > .input {
|
|
25130
|
+
border-color: var(--kolibri-color-secondary);
|
|
25131
|
+
}
|
|
25132
|
+
kol-input > .input > kol-icon:first-child {
|
|
25133
|
+
margin-left: 0.75em;
|
|
25134
|
+
}
|
|
25135
|
+
kol-input > .input > kol-icon:last-child {
|
|
25136
|
+
margin-right: 0.75em;
|
|
25137
|
+
}
|
|
25138
|
+
kol-input > .error {
|
|
25139
|
+
order: 3;
|
|
25140
|
+
}
|
|
25141
|
+
kol-input > .hint {
|
|
25142
|
+
order: 4;
|
|
25143
|
+
font-size: 0.875em;
|
|
25144
|
+
}
|
|
25145
|
+
input,
|
|
25146
|
+
select,
|
|
25147
|
+
textarea {
|
|
25148
|
+
color: var(--default-letter);
|
|
25149
|
+
padding: 0.5em 0.75em;
|
|
25150
|
+
}
|
|
25151
|
+
input:not([type="range"]),
|
|
25152
|
+
select:not([multiple]) {
|
|
25153
|
+
height: 2.75em;
|
|
25154
|
+
}
|
|
25155
|
+
textarea {
|
|
25156
|
+
display: inherit;
|
|
25157
|
+
}
|
|
25158
|
+
input::placeholder {
|
|
25159
|
+
color: var(--default-border-hover);
|
|
25160
|
+
}
|
|
25161
|
+
input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
|
|
25162
|
+
cursor: not-allowed;
|
|
25163
|
+
}
|
|
25164
|
+
select[multiple],
|
|
25165
|
+
textarea {
|
|
25166
|
+
overflow: auto;
|
|
25167
|
+
}
|
|
25168
|
+
select option {
|
|
25169
|
+
margin: 1px 0;
|
|
25170
|
+
padding: 0.5em;
|
|
25171
|
+
border-radius: 0.25em;
|
|
25172
|
+
cursor: pointer;
|
|
25173
|
+
}
|
|
25174
|
+
select option:disabled {
|
|
25175
|
+
cursor: not-allowed;
|
|
25176
|
+
}
|
|
25177
|
+
option:active:not(:disabled),
|
|
25178
|
+
option:checked:not(:disabled),
|
|
25179
|
+
option:focus:not(:disabled),
|
|
25180
|
+
option:hover:not(:disabled) {
|
|
25181
|
+
background-color: var(--kolibri-color-primary);
|
|
25182
|
+
color: white;
|
|
25183
|
+
}`,
|
|
24287
25184
|
"KOL-INPUT-EMAIL": `input,
|
|
24288
25185
|
select,
|
|
24289
25186
|
textarea {
|
|
@@ -41284,6 +42181,18 @@ const MAPZ = KoliBri.createTheme("mapz", {
|
|
|
41284
42181
|
option:hover:not(:disabled) {
|
|
41285
42182
|
background-color: var(--kolibri-color-primary);
|
|
41286
42183
|
color: white;
|
|
42184
|
+
}`,
|
|
42185
|
+
"KOL-SKIP-NAV": `kol-link-wc > a > kol-span-wc {
|
|
42186
|
+
border-radius: var(--kolibri-border-radius);
|
|
42187
|
+
border-style: solid;
|
|
42188
|
+
border-width: 2px;
|
|
42189
|
+
gap: 0.5rem;
|
|
42190
|
+
line-height: 1rem;
|
|
42191
|
+
padding: 0.75rem 1rem;
|
|
42192
|
+
background-color: var(--kolibri-color-primary);
|
|
42193
|
+
border-color: var(--kolibri-border-color);
|
|
42194
|
+
color: white;
|
|
42195
|
+
cursor: pointer;
|
|
41287
42196
|
}`
|
|
41288
42197
|
});
|
|
41289
42198
|
|
|
@@ -41300,7 +42209,7 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
41300
42209
|
--color-akzent-dark: #da793c;
|
|
41301
42210
|
--color-akzent-light: #f5ba6c;
|
|
41302
42211
|
--color-neutral: #e3e3e3;
|
|
41303
|
-
--color-neutral-dark: #
|
|
42212
|
+
--color-neutral-dark: #646464;
|
|
41304
42213
|
--color-neutral-light: #f7f7f7;
|
|
41305
42214
|
--color-rot: #ce3033;
|
|
41306
42215
|
--color-gelb: #f6cd35;
|
|
@@ -41330,7 +42239,6 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
41330
42239
|
summary:focus,
|
|
41331
42240
|
kol-input:not(.checkbox, .radio) .input:focus-within,
|
|
41332
42241
|
kol-input:is(.checkbox, .radio) input:focus {
|
|
41333
|
-
border-radius: var(--border-radius);
|
|
41334
42242
|
outline-color: var(--color-blau-dark);
|
|
41335
42243
|
outline-offset: 0.125rem;
|
|
41336
42244
|
outline-style: solid;
|
|
@@ -41584,9 +42492,9 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
41584
42492
|
}
|
|
41585
42493
|
}`,
|
|
41586
42494
|
"KOL-TABLE": `caption {
|
|
41587
|
-
background-color: var(--color-neutral);
|
|
41588
42495
|
caption-side: TOP;
|
|
41589
|
-
font-size: 1.
|
|
42496
|
+
font-size: 1.1rem; /* 1.75rem */ /* line-height: 3rem; */
|
|
42497
|
+
font-weight: var(--font-weight-bold);
|
|
41590
42498
|
margin-bottom: 0.25rem;
|
|
41591
42499
|
padding: 0.75rem;
|
|
41592
42500
|
text-align: left;
|
|
@@ -41598,6 +42506,9 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
41598
42506
|
border-width: 0;
|
|
41599
42507
|
border-top-width: 1px;
|
|
41600
42508
|
}
|
|
42509
|
+
th {
|
|
42510
|
+
background-color: var(--color-neutral);
|
|
42511
|
+
}
|
|
41601
42512
|
td,
|
|
41602
42513
|
th {
|
|
41603
42514
|
color: var(--color-neutral-dark);
|
|
@@ -41607,8 +42518,19 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
41607
42518
|
border-bottom-width: 1px;
|
|
41608
42519
|
padding: 0.5rem;
|
|
41609
42520
|
}
|
|
41610
|
-
|
|
41611
|
-
|
|
42521
|
+
th[data-sort] kol-button::part(icon)::before {
|
|
42522
|
+
font-family: "FontAwesome";
|
|
42523
|
+
color: var(--color-neutral-dark);
|
|
42524
|
+
}
|
|
42525
|
+
th[data-sort="sort-NOS"] kol-button::part(icon)::before,
|
|
42526
|
+
th[data-sort="sort-undefined"] kol-button::part(icon)::before {
|
|
42527
|
+
content: "\f0dc";
|
|
42528
|
+
}
|
|
42529
|
+
th[data-sort="sort-ASC"] kol-button::part(icon)::before {
|
|
42530
|
+
content: "\f0de";
|
|
42531
|
+
}
|
|
42532
|
+
th[data-sort="sort-DESC"] kol-button::part(icon)::before {
|
|
42533
|
+
content: "\f0dd";
|
|
41612
42534
|
}`,
|
|
41613
42535
|
"KOL-ACCORDION": `:host > div {
|
|
41614
42536
|
border-color: var(--border-color);
|
|
@@ -42065,9 +42987,10 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
42065
42987
|
}
|
|
42066
42988
|
label {
|
|
42067
42989
|
cursor: pointer;
|
|
42990
|
+
padding-left: 0.75rem;
|
|
42068
42991
|
}
|
|
42069
42992
|
kol-input:hover label,
|
|
42070
|
-
kol-input:
|
|
42993
|
+
kol-input:focus-within label {
|
|
42071
42994
|
text-decoration: underline;
|
|
42072
42995
|
}
|
|
42073
42996
|
.required label > span::after {
|
|
@@ -42095,7 +43018,6 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
42095
43018
|
}
|
|
42096
43019
|
kol-input > label {
|
|
42097
43020
|
order: 2;
|
|
42098
|
-
padding-left: calc(2 * var(--spacing));
|
|
42099
43021
|
}
|
|
42100
43022
|
kol-input > kol-alert.error {
|
|
42101
43023
|
order: 3;
|
|
@@ -42203,32 +43125,28 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
42203
43125
|
:host {
|
|
42204
43126
|
--spacing: 0.25rem;
|
|
42205
43127
|
}
|
|
43128
|
+
legend {
|
|
43129
|
+
font-weight: var(--font-weight-bold);
|
|
43130
|
+
margin-bottom: 0.5rem;
|
|
43131
|
+
}
|
|
42206
43132
|
input {
|
|
42207
43133
|
border-color: var(--color-neutral-dark);
|
|
42208
43134
|
border-width: 2px;
|
|
42209
43135
|
border-style: solid;
|
|
42210
43136
|
}
|
|
42211
|
-
label {
|
|
42212
|
-
cursor: pointer;
|
|
42213
|
-
}
|
|
42214
43137
|
kol-input:has(input:disabled) input,
|
|
42215
43138
|
kol-input:has(input:disabled) label {
|
|
42216
43139
|
cursor: not-allowed !important;
|
|
42217
43140
|
opacity: 0.5;
|
|
42218
43141
|
}
|
|
42219
|
-
kol-input:hover label,
|
|
42220
|
-
kol-input:
|
|
43142
|
+
kol-input:hover:has(input:not(:disabled)) label,
|
|
43143
|
+
kol-input:focus-within {
|
|
42221
43144
|
text-decoration: underline;
|
|
42222
43145
|
}
|
|
42223
43146
|
.required legend > span::after {
|
|
42224
43147
|
content: "*";
|
|
42225
43148
|
padding-left: 0.125em;
|
|
42226
43149
|
}
|
|
42227
|
-
label {
|
|
42228
|
-
display: grid;
|
|
42229
|
-
gap: 8px;
|
|
42230
|
-
width: 100%;
|
|
42231
|
-
}
|
|
42232
43150
|
input {
|
|
42233
43151
|
width: 100%;
|
|
42234
43152
|
border-color: var(--color-neutral-dark);
|
|
@@ -42244,27 +43162,21 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
42244
43162
|
margin-bottom: 0.4em;
|
|
42245
43163
|
} /* RADIO */
|
|
42246
43164
|
fieldset {
|
|
42247
|
-
border:
|
|
42248
|
-
margin:
|
|
42249
|
-
padding:
|
|
42250
|
-
display: grid;
|
|
42251
|
-
gap: 0.25em;
|
|
42252
|
-
}
|
|
42253
|
-
fieldset div {
|
|
43165
|
+
border: 0;
|
|
43166
|
+
margin: 0;
|
|
43167
|
+
padding: 1.5rem;
|
|
42254
43168
|
display: flex;
|
|
42255
|
-
flex-direction:
|
|
42256
|
-
margin-top: 0.125em;
|
|
42257
|
-
margin-bottom: 0.125em;
|
|
42258
|
-
align-items: center;
|
|
42259
|
-
position: relative;
|
|
43169
|
+
flex-direction: column;
|
|
42260
43170
|
}
|
|
42261
|
-
fieldset div
|
|
43171
|
+
fieldset div.input {
|
|
42262
43172
|
display: flex;
|
|
42263
|
-
padding-left: 0.25em;
|
|
42264
|
-
width: 100%;
|
|
42265
43173
|
}
|
|
42266
|
-
fieldset div
|
|
42267
|
-
margin
|
|
43174
|
+
fieldset div.input > div {
|
|
43175
|
+
margin: auto 0;
|
|
43176
|
+
display: flex;
|
|
43177
|
+
flex-direction: row;
|
|
43178
|
+
align-items: center;
|
|
43179
|
+
gap: 0.75rem;
|
|
42268
43180
|
}
|
|
42269
43181
|
fieldset div input[type="radio"] {
|
|
42270
43182
|
appearance: none;
|
|
@@ -42273,6 +43185,7 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
42273
43185
|
height: calc(6 * var(--spacing));
|
|
42274
43186
|
min-width: calc(6 * var(--spacing));
|
|
42275
43187
|
width: calc(6 * var(--spacing));
|
|
43188
|
+
border-color: var(--color-neutral-dark);
|
|
42276
43189
|
}
|
|
42277
43190
|
fieldset div input[type="radio"]:checked:before {
|
|
42278
43191
|
box-shadow: 0 0 0.1rem black;
|
|
@@ -42293,7 +43206,7 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
42293
43206
|
opacity: 0.33;
|
|
42294
43207
|
}
|
|
42295
43208
|
fieldset.horizontal {
|
|
42296
|
-
|
|
43209
|
+
flex-direction: row;
|
|
42297
43210
|
flex-wrap: wrap;
|
|
42298
43211
|
gap: 0.5rem 1rem;
|
|
42299
43212
|
}
|
|
@@ -42485,6 +43398,52 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
42485
43398
|
kol-input > kol-alert.error {
|
|
42486
43399
|
order: 3;
|
|
42487
43400
|
}`,
|
|
43401
|
+
"KOL-INPUT-DATE": `kol-input {
|
|
43402
|
+
gap: var(--gap);
|
|
43403
|
+
}
|
|
43404
|
+
kol-input .input {
|
|
43405
|
+
border-color: var(--color-grau-30);
|
|
43406
|
+
border-width: 2px;
|
|
43407
|
+
border-style: solid;
|
|
43408
|
+
padding: 0px 0.75em;
|
|
43409
|
+
gap: var(--gap);
|
|
43410
|
+
overflow: hidden;
|
|
43411
|
+
}
|
|
43412
|
+
kol-input .input:focus-within,
|
|
43413
|
+
kol-input .input:hover {
|
|
43414
|
+
border-color: var(--color-grau-60);
|
|
43415
|
+
}
|
|
43416
|
+
kol-input:not(.select, .textarea) .input {
|
|
43417
|
+
height: calc(var(--a11y-min-size) - 4px);
|
|
43418
|
+
}
|
|
43419
|
+
kol-input:not(.range) .input :is(input, select, textarea) {
|
|
43420
|
+
background-color: white;
|
|
43421
|
+
border: 0;
|
|
43422
|
+
}
|
|
43423
|
+
kol-input .input input[type="file"] {
|
|
43424
|
+
padding-top: calc(0.5em + 2px);
|
|
43425
|
+
}
|
|
43426
|
+
kol-input > label {
|
|
43427
|
+
font-weight: var(--font-weight-bold);
|
|
43428
|
+
order: 1;
|
|
43429
|
+
margin-bottom: 0.25rem;
|
|
43430
|
+
}
|
|
43431
|
+
kol-input > label > span {
|
|
43432
|
+
color: var(--default-letter);
|
|
43433
|
+
}
|
|
43434
|
+
kol-input > div.input {
|
|
43435
|
+
border-radius: 0.25rem;
|
|
43436
|
+
order: 2;
|
|
43437
|
+
}
|
|
43438
|
+
kol-input > span.hint {
|
|
43439
|
+
color: var(--color-grau-60);
|
|
43440
|
+
font-style: italic;
|
|
43441
|
+
order: 4;
|
|
43442
|
+
font-size: 0.8rem;
|
|
43443
|
+
}
|
|
43444
|
+
kol-input > kol-alert.error {
|
|
43445
|
+
order: 3;
|
|
43446
|
+
}`,
|
|
42488
43447
|
"KOL-INPUT-TEXT": `kol-input {
|
|
42489
43448
|
gap: var(--gap);
|
|
42490
43449
|
}
|
|
@@ -49840,6 +50799,18 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
49840
50799
|
u+f0ec, u+f10a-f10b, u+f123, u+f13e, u+f148-f149, u+f14c, u+f156, u+f15e,
|
|
49841
50800
|
u+f160-f161, u+f163, u+f175-f178, u+f195, u+f1f8, u+f219, u+f250, u+f252,
|
|
49842
50801
|
u+f27a;
|
|
50802
|
+
}`,
|
|
50803
|
+
"KOL-SKIP-NAV": `kol-link-wc > a > kol-span-wc {
|
|
50804
|
+
border-radius: var(--border-radius);
|
|
50805
|
+
border-style: solid;
|
|
50806
|
+
border-width: 2px;
|
|
50807
|
+
gap: 0.5rem;
|
|
50808
|
+
line-height: 1rem;
|
|
50809
|
+
padding: 0.75rem 1rem;
|
|
50810
|
+
background-color: var(--color-blau);
|
|
50811
|
+
border-color: var(--color-blau-dark);
|
|
50812
|
+
color: white;
|
|
50813
|
+
cursor: pointer;
|
|
49843
50814
|
}`
|
|
49844
50815
|
});
|
|
49845
50816
|
|