@public-ui/themes 1.6.0-rc.1 → 1.6.0-rc.2
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 +1010 -158
- package/dist/index.mjs +1010 -158
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -1124,6 +1124,96 @@ const BPA = KoliBri.createTheme("bpa", {
|
|
|
1124
1124
|
kol-button-wc > button:focus {
|
|
1125
1125
|
outline: none;
|
|
1126
1126
|
}`,
|
|
1127
|
+
"KOL-INPUT-DATE": `:host label {
|
|
1128
|
+
color: var(--color-darkblue);
|
|
1129
|
+
font-size: 0.9375rem;
|
|
1130
|
+
}
|
|
1131
|
+
@media (min-width: 37.5rem) {
|
|
1132
|
+
:host label {
|
|
1133
|
+
font-size: 1.125rem;
|
|
1134
|
+
}
|
|
1135
|
+
} /* Move label over input as placeholder */
|
|
1136
|
+
:host(:not(.has-value)) kol-input:has(input[type="number"]) label {
|
|
1137
|
+
transition: all 0.3s ease-in-out 0ms;
|
|
1138
|
+
transform-origin: 0;
|
|
1139
|
+
}
|
|
1140
|
+
:host(:not(.has-value)) kol-input:has(input[type="number"]):not(:focus-within) label {
|
|
1141
|
+
transform: translateY(1.9375rem) scale(1.3333333333);
|
|
1142
|
+
cursor: text;
|
|
1143
|
+
}
|
|
1144
|
+
:host(:not(.has-value)) kol-input:has(input[type="number"]):not(:focus-within):has(div.icon-left) label {
|
|
1145
|
+
transform: translateX(2.5rem) translateY(1.9375rem) scale(1.3333333333);
|
|
1146
|
+
}
|
|
1147
|
+
:host(:not(.has-value)) kol-input:not(:focus-within) label,
|
|
1148
|
+
input::placeholder {
|
|
1149
|
+
color: var(--color-darkgray);
|
|
1150
|
+
}
|
|
1151
|
+
:host([_error]) kol-input:not(:focus-within) label {
|
|
1152
|
+
color: var(--color-red);
|
|
1153
|
+
}
|
|
1154
|
+
span.hint {
|
|
1155
|
+
order: 1;
|
|
1156
|
+
}
|
|
1157
|
+
kol-alert {
|
|
1158
|
+
order: 2;
|
|
1159
|
+
}
|
|
1160
|
+
:host([_error]) label {
|
|
1161
|
+
color: var(--color-red);
|
|
1162
|
+
}
|
|
1163
|
+
div.input {
|
|
1164
|
+
border-bottom: 1px solid var(--color-lightgray);
|
|
1165
|
+
}
|
|
1166
|
+
div.input:focus-within {
|
|
1167
|
+
border-bottom: 1px solid var(--color-darkgray);
|
|
1168
|
+
}
|
|
1169
|
+
div.input input {
|
|
1170
|
+
border: none;
|
|
1171
|
+
background-color: var(--color-white);
|
|
1172
|
+
outline: none;
|
|
1173
|
+
height: 2.5rem;
|
|
1174
|
+
font-size: 1.5rem;
|
|
1175
|
+
padding: 0;
|
|
1176
|
+
}
|
|
1177
|
+
kol-input:has(label:not([hidden])) div.input input::placeholder {
|
|
1178
|
+
color: transparent;
|
|
1179
|
+
}
|
|
1180
|
+
kol-alert {
|
|
1181
|
+
margin-top: 1.5rem;
|
|
1182
|
+
}
|
|
1183
|
+
kol-button-wc > button > kol-span-wc {
|
|
1184
|
+
padding: 0.625rem 1.125rem;
|
|
1185
|
+
font-family: var(--font);
|
|
1186
|
+
font-size: 1rem;
|
|
1187
|
+
line-height: 1.125rem;
|
|
1188
|
+
border: none;
|
|
1189
|
+
border-radius: 0.125rem;
|
|
1190
|
+
transition: background-color 0.3s ease, border 0.3s ease, color 0.3s ease;
|
|
1191
|
+
}
|
|
1192
|
+
kol-button-wc > button > kol-span-wc > span {
|
|
1193
|
+
gap: 0.625rem;
|
|
1194
|
+
}
|
|
1195
|
+
kol-button-wc > button > kol-span-wc {
|
|
1196
|
+
background-color: var(--color-white);
|
|
1197
|
+
color: var(--color-black);
|
|
1198
|
+
}
|
|
1199
|
+
kol-button-wc > button > kol-span-wc kol-icon {
|
|
1200
|
+
color: var(--color-blue);
|
|
1201
|
+
}
|
|
1202
|
+
kol-button-wc > button:is(:hover, :focus) > kol-span-wc kol-icon {
|
|
1203
|
+
color: var(--color-white);
|
|
1204
|
+
}
|
|
1205
|
+
kol-button-wc > button:is(:hover, :focus) > kol-span-wc {
|
|
1206
|
+
cursor: pointer;
|
|
1207
|
+
background-color: var(--color-blue);
|
|
1208
|
+
color: var(--color-white);
|
|
1209
|
+
}
|
|
1210
|
+
kol-button-wc > button:focus > kol-span-wc {
|
|
1211
|
+
outline: 1px dotted var(--color-black);
|
|
1212
|
+
border: none;
|
|
1213
|
+
}
|
|
1214
|
+
kol-button-wc > button:focus {
|
|
1215
|
+
outline: none;
|
|
1216
|
+
}`,
|
|
1127
1217
|
"KOL-INPUT-COLOR": `:host label {
|
|
1128
1218
|
color: var(--color-darkblue);
|
|
1129
1219
|
font-size: 0.9375rem;
|
|
@@ -2096,11 +2186,10 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2096
2186
|
button.loading kol-icon {
|
|
2097
2187
|
animation: spin 5s infinite linear;
|
|
2098
2188
|
}`,
|
|
2099
|
-
"KOL-INPUT-
|
|
2189
|
+
"KOL-INPUT-DATE": `kol-input {
|
|
2100
2190
|
display: grid;
|
|
2101
2191
|
padding: 0;
|
|
2102
2192
|
margin: 0;
|
|
2103
|
-
font-size: var(--text-size);
|
|
2104
2193
|
}
|
|
2105
2194
|
input:focus,
|
|
2106
2195
|
input:hover,
|
|
@@ -2108,12 +2197,7 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2108
2197
|
select:hover,
|
|
2109
2198
|
textarea:focus,
|
|
2110
2199
|
textarea:hover {
|
|
2111
|
-
border-color:
|
|
2112
|
-
}
|
|
2113
|
-
.error input:invalid,
|
|
2114
|
-
.error select:invalid,
|
|
2115
|
-
.error textarea:invalid {
|
|
2116
|
-
border-color: var(--color-rot);
|
|
2200
|
+
border-color: black;
|
|
2117
2201
|
}
|
|
2118
2202
|
input:focus-within,
|
|
2119
2203
|
select:focus-within,
|
|
@@ -2124,125 +2208,6 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2124
2208
|
order: 1;
|
|
2125
2209
|
margin-bottom: var(--gapSmallest);
|
|
2126
2210
|
}
|
|
2127
|
-
kol-input > label > span {
|
|
2128
|
-
color: var(--color-text);
|
|
2129
|
-
line-height: 1.5;
|
|
2130
|
-
}
|
|
2131
|
-
kol-input > div.input {
|
|
2132
|
-
background-color: white;
|
|
2133
|
-
display: block;
|
|
2134
|
-
order: 2;
|
|
2135
|
-
}
|
|
2136
|
-
kol-input > kol-alert.error {
|
|
2137
|
-
margin-top: 0.25rem;
|
|
2138
|
-
order: 3;
|
|
2139
|
-
}
|
|
2140
|
-
input,
|
|
2141
|
-
select,
|
|
2142
|
-
textarea {
|
|
2143
|
-
font-family: var(--font-family);
|
|
2144
|
-
background-color: transparent;
|
|
2145
|
-
box-sizing: border-box;
|
|
2146
|
-
font-size: var(--text-size);
|
|
2147
|
-
display: inline-flex;
|
|
2148
|
-
line-height: 1.5;
|
|
2149
|
-
color: black;
|
|
2150
|
-
border-color: var(--color-gruen);
|
|
2151
|
-
border-width: 1px;
|
|
2152
|
-
border-style: solid;
|
|
2153
|
-
padding: 0.5em 0.75em;
|
|
2154
|
-
overflow: hidden;
|
|
2155
|
-
width: 100%;
|
|
2156
|
-
}
|
|
2157
|
-
input:not([type="range"]),
|
|
2158
|
-
select:not([multiple]) {
|
|
2159
|
-
height: 2.75em;
|
|
2160
|
-
}
|
|
2161
|
-
textarea {
|
|
2162
|
-
display: inherit;
|
|
2163
|
-
}
|
|
2164
|
-
input::placeholder {
|
|
2165
|
-
color: var(--color-grau-dunkel);
|
|
2166
|
-
}
|
|
2167
|
-
input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
|
|
2168
|
-
cursor: not-allowed;
|
|
2169
|
-
}
|
|
2170
|
-
.required label > span::after {
|
|
2171
|
-
content: "*";
|
|
2172
|
-
padding-left: 0.125em;
|
|
2173
|
-
}
|
|
2174
|
-
.icons {
|
|
2175
|
-
display: flex;
|
|
2176
|
-
justify-content: space-between;
|
|
2177
|
-
height: 0;
|
|
2178
|
-
}
|
|
2179
|
-
.icons > * {
|
|
2180
|
-
margin: 0.75em;
|
|
2181
|
-
}
|
|
2182
|
-
.icon-left input,
|
|
2183
|
-
.icon-left select {
|
|
2184
|
-
padding-left: 2em;
|
|
2185
|
-
}
|
|
2186
|
-
.icon-right input,
|
|
2187
|
-
.icon-right select {
|
|
2188
|
-
padding-right: 2em;
|
|
2189
|
-
}
|
|
2190
|
-
kol-button-wc {
|
|
2191
|
-
position: relative;
|
|
2192
|
-
float: right;
|
|
2193
|
-
z-index: 1000;
|
|
2194
|
-
margin-top: -33px;
|
|
2195
|
-
}
|
|
2196
|
-
kol-button-wc button {
|
|
2197
|
-
border: 1px solid var(--color-grau-dunkel);
|
|
2198
|
-
box-sizing: border-box;
|
|
2199
|
-
background-color: transparent;
|
|
2200
|
-
cursor: pointer;
|
|
2201
|
-
}
|
|
2202
|
-
.icon-right kol-button-wc {
|
|
2203
|
-
margin-right: 2.5em;
|
|
2204
|
-
}
|
|
2205
|
-
.disabled {
|
|
2206
|
-
opacity: 0.33;
|
|
2207
|
-
}
|
|
2208
|
-
select[multiple],
|
|
2209
|
-
textarea {
|
|
2210
|
-
overflow: auto;
|
|
2211
|
-
}
|
|
2212
|
-
textarea {
|
|
2213
|
-
display: block;
|
|
2214
|
-
}
|
|
2215
|
-
select option {
|
|
2216
|
-
margin: 1px 0;
|
|
2217
|
-
padding: 0.5em;
|
|
2218
|
-
cursor: pointer;
|
|
2219
|
-
}
|
|
2220
|
-
select option:disabled {
|
|
2221
|
-
cursor: not-allowed;
|
|
2222
|
-
}
|
|
2223
|
-
option:active:not(:disabled),
|
|
2224
|
-
option:checked:not(:disabled),
|
|
2225
|
-
option:focus:not(:disabled),
|
|
2226
|
-
option:hover:not(:disabled) {
|
|
2227
|
-
color: white;
|
|
2228
|
-
}`,
|
|
2229
|
-
"KOL-INPUT-PASSWORD": `kol-input {
|
|
2230
|
-
display: grid;
|
|
2231
|
-
padding: 0;
|
|
2232
|
-
margin: 0;
|
|
2233
|
-
}
|
|
2234
|
-
input:focus,
|
|
2235
|
-
input:hover,
|
|
2236
|
-
select:focus,
|
|
2237
|
-
select:hover,
|
|
2238
|
-
textarea:focus,
|
|
2239
|
-
textarea:hover {
|
|
2240
|
-
border-color: black;
|
|
2241
|
-
}
|
|
2242
|
-
kol-input > label {
|
|
2243
|
-
order: 1;
|
|
2244
|
-
margin-bottom: 0.25em;
|
|
2245
|
-
}
|
|
2246
2211
|
kol-input > label > span {
|
|
2247
2212
|
color: black;
|
|
2248
2213
|
font-size: 0.875rem;
|
|
@@ -2260,17 +2225,17 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2260
2225
|
input,
|
|
2261
2226
|
select,
|
|
2262
2227
|
textarea {
|
|
2263
|
-
font-family: var(--
|
|
2228
|
+
font-family: var(--textFont);
|
|
2264
2229
|
background-color: transparent;
|
|
2265
2230
|
box-sizing: border-box;
|
|
2266
|
-
font-size:
|
|
2231
|
+
font-size: var(--textFontSize);
|
|
2267
2232
|
display: inline-flex;
|
|
2268
|
-
line-height: 1.
|
|
2233
|
+
line-height: 1.5;
|
|
2269
2234
|
color: black;
|
|
2270
|
-
border-color: var(--color-
|
|
2235
|
+
border-color: var(--color-gruen);
|
|
2271
2236
|
border-width: 1px;
|
|
2272
2237
|
border-style: solid;
|
|
2273
|
-
padding: 0.5em
|
|
2238
|
+
padding: 0.5em;
|
|
2274
2239
|
overflow: hidden;
|
|
2275
2240
|
width: 100%;
|
|
2276
2241
|
}
|
|
@@ -2310,7 +2275,7 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2310
2275
|
kol-button-wc {
|
|
2311
2276
|
position: relative;
|
|
2312
2277
|
float: right;
|
|
2313
|
-
z-index:
|
|
2278
|
+
z-index: 1;
|
|
2314
2279
|
margin-top: -33px;
|
|
2315
2280
|
}
|
|
2316
2281
|
kol-button-wc button {
|
|
@@ -2344,12 +2309,14 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2344
2309
|
option:checked:not(:disabled),
|
|
2345
2310
|
option:focus:not(:disabled),
|
|
2346
2311
|
option:hover:not(:disabled) {
|
|
2312
|
+
background: var(--color-ocean);
|
|
2347
2313
|
color: white;
|
|
2348
2314
|
}`,
|
|
2349
|
-
"KOL-INPUT-
|
|
2315
|
+
"KOL-INPUT-TEXT": `kol-input {
|
|
2350
2316
|
display: grid;
|
|
2351
2317
|
padding: 0;
|
|
2352
2318
|
margin: 0;
|
|
2319
|
+
font-size: var(--text-size);
|
|
2353
2320
|
}
|
|
2354
2321
|
input:focus,
|
|
2355
2322
|
input:hover,
|
|
@@ -2357,7 +2324,12 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2357
2324
|
select:hover,
|
|
2358
2325
|
textarea:focus,
|
|
2359
2326
|
textarea:hover {
|
|
2360
|
-
border-color:
|
|
2327
|
+
border-color: var(--color-gruen-hell);
|
|
2328
|
+
}
|
|
2329
|
+
.error input:invalid,
|
|
2330
|
+
.error select:invalid,
|
|
2331
|
+
.error textarea:invalid {
|
|
2332
|
+
border-color: var(--color-rot);
|
|
2361
2333
|
}
|
|
2362
2334
|
input:focus-within,
|
|
2363
2335
|
select:focus-within,
|
|
@@ -2369,9 +2341,8 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2369
2341
|
margin-bottom: var(--gapSmallest);
|
|
2370
2342
|
}
|
|
2371
2343
|
kol-input > label > span {
|
|
2372
|
-
color:
|
|
2373
|
-
|
|
2374
|
-
line-height: 1.5rem;
|
|
2344
|
+
color: var(--color-text);
|
|
2345
|
+
line-height: 1.5;
|
|
2375
2346
|
}
|
|
2376
2347
|
kol-input > div.input {
|
|
2377
2348
|
background-color: white;
|
|
@@ -2379,23 +2350,23 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2379
2350
|
order: 2;
|
|
2380
2351
|
}
|
|
2381
2352
|
kol-input > kol-alert.error {
|
|
2382
|
-
margin-top: 0.
|
|
2353
|
+
margin-top: 0.25rem;
|
|
2383
2354
|
order: 3;
|
|
2384
2355
|
}
|
|
2385
2356
|
input,
|
|
2386
2357
|
select,
|
|
2387
2358
|
textarea {
|
|
2388
|
-
font-family: var(--
|
|
2359
|
+
font-family: var(--font-family);
|
|
2389
2360
|
background-color: transparent;
|
|
2390
2361
|
box-sizing: border-box;
|
|
2391
|
-
font-size: var(--
|
|
2362
|
+
font-size: var(--text-size);
|
|
2392
2363
|
display: inline-flex;
|
|
2393
2364
|
line-height: 1.5;
|
|
2394
2365
|
color: black;
|
|
2395
2366
|
border-color: var(--color-gruen);
|
|
2396
2367
|
border-width: 1px;
|
|
2397
2368
|
border-style: solid;
|
|
2398
|
-
padding: 0.5em;
|
|
2369
|
+
padding: 0.5em 0.75em;
|
|
2399
2370
|
overflow: hidden;
|
|
2400
2371
|
width: 100%;
|
|
2401
2372
|
}
|
|
@@ -2435,7 +2406,7 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2435
2406
|
kol-button-wc {
|
|
2436
2407
|
position: relative;
|
|
2437
2408
|
float: right;
|
|
2438
|
-
z-index:
|
|
2409
|
+
z-index: 1000;
|
|
2439
2410
|
margin-top: -33px;
|
|
2440
2411
|
}
|
|
2441
2412
|
kol-button-wc button {
|
|
@@ -2469,10 +2440,255 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2469
2440
|
option:checked:not(:disabled),
|
|
2470
2441
|
option:focus:not(:disabled),
|
|
2471
2442
|
option:hover:not(:disabled) {
|
|
2472
|
-
background: var(--color-ocean);
|
|
2473
2443
|
color: white;
|
|
2474
2444
|
}`,
|
|
2475
|
-
"KOL-INPUT-
|
|
2445
|
+
"KOL-INPUT-PASSWORD": `kol-input {
|
|
2446
|
+
display: grid;
|
|
2447
|
+
padding: 0;
|
|
2448
|
+
margin: 0;
|
|
2449
|
+
}
|
|
2450
|
+
input:focus,
|
|
2451
|
+
input:hover,
|
|
2452
|
+
select:focus,
|
|
2453
|
+
select:hover,
|
|
2454
|
+
textarea:focus,
|
|
2455
|
+
textarea:hover {
|
|
2456
|
+
border-color: black;
|
|
2457
|
+
}
|
|
2458
|
+
kol-input > label {
|
|
2459
|
+
order: 1;
|
|
2460
|
+
margin-bottom: 0.25em;
|
|
2461
|
+
}
|
|
2462
|
+
kol-input > label > span {
|
|
2463
|
+
color: black;
|
|
2464
|
+
font-size: 0.875rem;
|
|
2465
|
+
line-height: 1.5rem;
|
|
2466
|
+
}
|
|
2467
|
+
kol-input > div.input {
|
|
2468
|
+
background-color: white;
|
|
2469
|
+
display: block;
|
|
2470
|
+
order: 2;
|
|
2471
|
+
}
|
|
2472
|
+
kol-input > kol-alert.error {
|
|
2473
|
+
margin-top: 0.25em;
|
|
2474
|
+
order: 3;
|
|
2475
|
+
}
|
|
2476
|
+
input,
|
|
2477
|
+
select,
|
|
2478
|
+
textarea {
|
|
2479
|
+
font-family: var(--font-family);
|
|
2480
|
+
background-color: transparent;
|
|
2481
|
+
box-sizing: border-box;
|
|
2482
|
+
font-size: 1rem;
|
|
2483
|
+
display: inline-flex;
|
|
2484
|
+
line-height: 1.5em;
|
|
2485
|
+
color: black;
|
|
2486
|
+
border-color: var(--color-grau-dunkel);
|
|
2487
|
+
border-width: 1px;
|
|
2488
|
+
border-style: solid;
|
|
2489
|
+
padding: 0.5em 0.75em;
|
|
2490
|
+
overflow: hidden;
|
|
2491
|
+
width: 100%;
|
|
2492
|
+
}
|
|
2493
|
+
input:not([type="range"]),
|
|
2494
|
+
select:not([multiple]) {
|
|
2495
|
+
height: 2.75em;
|
|
2496
|
+
}
|
|
2497
|
+
textarea {
|
|
2498
|
+
display: inherit;
|
|
2499
|
+
}
|
|
2500
|
+
input::placeholder {
|
|
2501
|
+
color: var(--color-grau-dunkel);
|
|
2502
|
+
}
|
|
2503
|
+
input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
|
|
2504
|
+
cursor: not-allowed;
|
|
2505
|
+
}
|
|
2506
|
+
.required label > span::after {
|
|
2507
|
+
content: "*";
|
|
2508
|
+
padding-left: 0.125em;
|
|
2509
|
+
}
|
|
2510
|
+
.icons {
|
|
2511
|
+
display: flex;
|
|
2512
|
+
justify-content: space-between;
|
|
2513
|
+
height: 0;
|
|
2514
|
+
}
|
|
2515
|
+
.icons > * {
|
|
2516
|
+
margin: 0.75em;
|
|
2517
|
+
}
|
|
2518
|
+
.icon-left input,
|
|
2519
|
+
.icon-left select {
|
|
2520
|
+
padding-left: 2em;
|
|
2521
|
+
}
|
|
2522
|
+
.icon-right input,
|
|
2523
|
+
.icon-right select {
|
|
2524
|
+
padding-right: 2em;
|
|
2525
|
+
}
|
|
2526
|
+
kol-button-wc {
|
|
2527
|
+
position: relative;
|
|
2528
|
+
float: right;
|
|
2529
|
+
z-index: 1000;
|
|
2530
|
+
margin-top: -33px;
|
|
2531
|
+
}
|
|
2532
|
+
kol-button-wc button {
|
|
2533
|
+
border: 1px solid var(--color-grau-dunkel);
|
|
2534
|
+
box-sizing: border-box;
|
|
2535
|
+
background-color: transparent;
|
|
2536
|
+
cursor: pointer;
|
|
2537
|
+
}
|
|
2538
|
+
.icon-right kol-button-wc {
|
|
2539
|
+
margin-right: 2.5em;
|
|
2540
|
+
}
|
|
2541
|
+
.disabled {
|
|
2542
|
+
opacity: 0.33;
|
|
2543
|
+
}
|
|
2544
|
+
select[multiple],
|
|
2545
|
+
textarea {
|
|
2546
|
+
overflow: auto;
|
|
2547
|
+
}
|
|
2548
|
+
textarea {
|
|
2549
|
+
display: block;
|
|
2550
|
+
}
|
|
2551
|
+
select option {
|
|
2552
|
+
margin: 1px 0;
|
|
2553
|
+
padding: 0.5em;
|
|
2554
|
+
cursor: pointer;
|
|
2555
|
+
}
|
|
2556
|
+
select option:disabled {
|
|
2557
|
+
cursor: not-allowed;
|
|
2558
|
+
}
|
|
2559
|
+
option:active:not(:disabled),
|
|
2560
|
+
option:checked:not(:disabled),
|
|
2561
|
+
option:focus:not(:disabled),
|
|
2562
|
+
option:hover:not(:disabled) {
|
|
2563
|
+
color: white;
|
|
2564
|
+
}`,
|
|
2565
|
+
"KOL-INPUT-NUMBER": `kol-input {
|
|
2566
|
+
display: grid;
|
|
2567
|
+
padding: 0;
|
|
2568
|
+
margin: 0;
|
|
2569
|
+
}
|
|
2570
|
+
input:focus,
|
|
2571
|
+
input:hover,
|
|
2572
|
+
select:focus,
|
|
2573
|
+
select:hover,
|
|
2574
|
+
textarea:focus,
|
|
2575
|
+
textarea:hover {
|
|
2576
|
+
border-color: black;
|
|
2577
|
+
}
|
|
2578
|
+
input:focus-within,
|
|
2579
|
+
select:focus-within,
|
|
2580
|
+
textarea:focus-within {
|
|
2581
|
+
outline: var(--color-focus) solid 2px;
|
|
2582
|
+
}
|
|
2583
|
+
kol-input > label {
|
|
2584
|
+
order: 1;
|
|
2585
|
+
margin-bottom: var(--gapSmallest);
|
|
2586
|
+
}
|
|
2587
|
+
kol-input > label > span {
|
|
2588
|
+
color: black;
|
|
2589
|
+
font-size: 0.875rem;
|
|
2590
|
+
line-height: 1.5rem;
|
|
2591
|
+
}
|
|
2592
|
+
kol-input > div.input {
|
|
2593
|
+
background-color: white;
|
|
2594
|
+
display: block;
|
|
2595
|
+
order: 2;
|
|
2596
|
+
}
|
|
2597
|
+
kol-input > kol-alert.error {
|
|
2598
|
+
margin-top: 0.25em;
|
|
2599
|
+
order: 3;
|
|
2600
|
+
}
|
|
2601
|
+
input,
|
|
2602
|
+
select,
|
|
2603
|
+
textarea {
|
|
2604
|
+
font-family: var(--textFont);
|
|
2605
|
+
background-color: transparent;
|
|
2606
|
+
box-sizing: border-box;
|
|
2607
|
+
font-size: var(--textFontSize);
|
|
2608
|
+
display: inline-flex;
|
|
2609
|
+
line-height: 1.5;
|
|
2610
|
+
color: black;
|
|
2611
|
+
border-color: var(--color-gruen);
|
|
2612
|
+
border-width: 1px;
|
|
2613
|
+
border-style: solid;
|
|
2614
|
+
padding: 0.5em;
|
|
2615
|
+
overflow: hidden;
|
|
2616
|
+
width: 100%;
|
|
2617
|
+
}
|
|
2618
|
+
input:not([type="range"]),
|
|
2619
|
+
select:not([multiple]) {
|
|
2620
|
+
height: 2.75em;
|
|
2621
|
+
}
|
|
2622
|
+
textarea {
|
|
2623
|
+
display: inherit;
|
|
2624
|
+
}
|
|
2625
|
+
input::placeholder {
|
|
2626
|
+
color: var(--color-grau-dunkel);
|
|
2627
|
+
}
|
|
2628
|
+
input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
|
|
2629
|
+
cursor: not-allowed;
|
|
2630
|
+
}
|
|
2631
|
+
.required label > span::after {
|
|
2632
|
+
content: "*";
|
|
2633
|
+
padding-left: 0.125em;
|
|
2634
|
+
}
|
|
2635
|
+
.icons {
|
|
2636
|
+
display: flex;
|
|
2637
|
+
justify-content: space-between;
|
|
2638
|
+
height: 0;
|
|
2639
|
+
}
|
|
2640
|
+
.icons > * {
|
|
2641
|
+
margin: 0.75em;
|
|
2642
|
+
}
|
|
2643
|
+
.icon-left input,
|
|
2644
|
+
.icon-left select {
|
|
2645
|
+
padding-left: 2em;
|
|
2646
|
+
}
|
|
2647
|
+
.icon-right input,
|
|
2648
|
+
.icon-right select {
|
|
2649
|
+
padding-right: 2em;
|
|
2650
|
+
}
|
|
2651
|
+
kol-button-wc {
|
|
2652
|
+
position: relative;
|
|
2653
|
+
float: right;
|
|
2654
|
+
z-index: 1;
|
|
2655
|
+
margin-top: -33px;
|
|
2656
|
+
}
|
|
2657
|
+
kol-button-wc button {
|
|
2658
|
+
border: 1px solid var(--color-grau-dunkel);
|
|
2659
|
+
box-sizing: border-box;
|
|
2660
|
+
background-color: transparent;
|
|
2661
|
+
cursor: pointer;
|
|
2662
|
+
}
|
|
2663
|
+
.icon-right kol-button-wc {
|
|
2664
|
+
margin-right: 2.5em;
|
|
2665
|
+
}
|
|
2666
|
+
.disabled {
|
|
2667
|
+
opacity: 0.33;
|
|
2668
|
+
}
|
|
2669
|
+
select[multiple],
|
|
2670
|
+
textarea {
|
|
2671
|
+
overflow: auto;
|
|
2672
|
+
}
|
|
2673
|
+
textarea {
|
|
2674
|
+
display: block;
|
|
2675
|
+
}
|
|
2676
|
+
select option {
|
|
2677
|
+
margin: 1px 0;
|
|
2678
|
+
padding: 0.5em;
|
|
2679
|
+
cursor: pointer;
|
|
2680
|
+
}
|
|
2681
|
+
select option:disabled {
|
|
2682
|
+
cursor: not-allowed;
|
|
2683
|
+
}
|
|
2684
|
+
option:active:not(:disabled),
|
|
2685
|
+
option:checked:not(:disabled),
|
|
2686
|
+
option:focus:not(:disabled),
|
|
2687
|
+
option:hover:not(:disabled) {
|
|
2688
|
+
background: var(--color-ocean);
|
|
2689
|
+
color: white;
|
|
2690
|
+
}`,
|
|
2691
|
+
"KOL-INPUT-EMAIL": `kol-input {
|
|
2476
2692
|
display: grid;
|
|
2477
2693
|
padding: 0;
|
|
2478
2694
|
margin: 0;
|
|
@@ -4941,7 +5157,7 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4941
5157
|
border-color: var(--color-granite);
|
|
4942
5158
|
color: var(--color-black);
|
|
4943
5159
|
}`,
|
|
4944
|
-
"KOL-INPUT-
|
|
5160
|
+
"KOL-INPUT-DATE": `kol-input {
|
|
4945
5161
|
gap: 0.25em;
|
|
4946
5162
|
}
|
|
4947
5163
|
kol-input .error {
|
|
@@ -4992,7 +5208,6 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4992
5208
|
.input:hover {
|
|
4993
5209
|
border-color: var(--color-midnight);
|
|
4994
5210
|
}
|
|
4995
|
-
input:read-only,
|
|
4996
5211
|
input:disabled {
|
|
4997
5212
|
cursor: not-allowed;
|
|
4998
5213
|
}
|
|
@@ -5019,7 +5234,7 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5019
5234
|
border-color: var(--color-granite);
|
|
5020
5235
|
color: var(--color-black);
|
|
5021
5236
|
}`,
|
|
5022
|
-
"KOL-INPUT-
|
|
5237
|
+
"KOL-INPUT-EMAIL": `kol-input {
|
|
5023
5238
|
gap: 0.25em;
|
|
5024
5239
|
}
|
|
5025
5240
|
kol-input .error {
|
|
@@ -5036,15 +5251,9 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5036
5251
|
font-size: 0.875em;
|
|
5037
5252
|
font-style: italic;
|
|
5038
5253
|
}
|
|
5039
|
-
kol-input .input input[type="file"] {
|
|
5040
|
-
padding-top: calc(0.5em + 2px);
|
|
5041
|
-
}
|
|
5042
5254
|
input {
|
|
5043
5255
|
border: none;
|
|
5044
5256
|
}
|
|
5045
|
-
input[type="file"] {
|
|
5046
|
-
background-color: transparent;
|
|
5047
|
-
}
|
|
5048
5257
|
input::placeholder {
|
|
5049
5258
|
color: var(--color-grey);
|
|
5050
5259
|
}
|
|
@@ -5095,15 +5304,15 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5095
5304
|
color: var(--color-red);
|
|
5096
5305
|
font-weight: 700;
|
|
5097
5306
|
}
|
|
5098
|
-
kol-input.disabled :is(
|
|
5307
|
+
kol-input.disabled :is(input, label) {
|
|
5099
5308
|
opacity: 1;
|
|
5100
5309
|
}
|
|
5101
|
-
kol-input.disabled :is(input,
|
|
5310
|
+
kol-input.disabled :is(input, .input) {
|
|
5102
5311
|
background-color: var(--color-smoke);
|
|
5103
5312
|
border-color: var(--color-granite);
|
|
5104
5313
|
color: var(--color-black);
|
|
5105
5314
|
}`,
|
|
5106
|
-
"KOL-
|
|
5315
|
+
"KOL-INPUT-FILE": `kol-input {
|
|
5107
5316
|
gap: 0.25em;
|
|
5108
5317
|
}
|
|
5109
5318
|
kol-input .error {
|
|
@@ -5120,7 +5329,91 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5120
5329
|
font-size: 0.875em;
|
|
5121
5330
|
font-style: italic;
|
|
5122
5331
|
}
|
|
5123
|
-
|
|
5332
|
+
kol-input .input input[type="file"] {
|
|
5333
|
+
padding-top: calc(0.5em + 2px);
|
|
5334
|
+
}
|
|
5335
|
+
input {
|
|
5336
|
+
border: none;
|
|
5337
|
+
}
|
|
5338
|
+
input[type="file"] {
|
|
5339
|
+
background-color: transparent;
|
|
5340
|
+
}
|
|
5341
|
+
input::placeholder {
|
|
5342
|
+
color: var(--color-grey);
|
|
5343
|
+
}
|
|
5344
|
+
.input {
|
|
5345
|
+
background-color: var(--color-white);
|
|
5346
|
+
border-color: var(--color-grey);
|
|
5347
|
+
border-radius: var(--border-radius);
|
|
5348
|
+
border-style: solid;
|
|
5349
|
+
border-width: 2px;
|
|
5350
|
+
padding: 0 0.5em;
|
|
5351
|
+
}
|
|
5352
|
+
.input > kol-icon {
|
|
5353
|
+
width: 1em;
|
|
5354
|
+
}
|
|
5355
|
+
.input:is(.icon-left, .icon-right) {
|
|
5356
|
+
padding-left: 1em;
|
|
5357
|
+
padding-right: 1em;
|
|
5358
|
+
}
|
|
5359
|
+
.input:is(.icon-left, .icon-right) input {
|
|
5360
|
+
padding-left: 0.5em;
|
|
5361
|
+
padding-right: 0.5em;
|
|
5362
|
+
}
|
|
5363
|
+
.input > input:first-child {
|
|
5364
|
+
padding-left: 0.375em;
|
|
5365
|
+
}
|
|
5366
|
+
.input > input:last-child {
|
|
5367
|
+
padding-right: 0.375em;
|
|
5368
|
+
}
|
|
5369
|
+
.input:hover {
|
|
5370
|
+
border-color: var(--color-midnight);
|
|
5371
|
+
}
|
|
5372
|
+
input:read-only,
|
|
5373
|
+
input:disabled {
|
|
5374
|
+
cursor: not-allowed;
|
|
5375
|
+
}
|
|
5376
|
+
.required label > span::after {
|
|
5377
|
+
content: "*";
|
|
5378
|
+
padding-left: 0.125em;
|
|
5379
|
+
}
|
|
5380
|
+
kol-input.error {
|
|
5381
|
+
border-left: 3px solid var(--color-red);
|
|
5382
|
+
padding-left: 1em;
|
|
5383
|
+
}
|
|
5384
|
+
kol-input.error .input:focus-within {
|
|
5385
|
+
outline-color: var(--color-red) !important;
|
|
5386
|
+
}
|
|
5387
|
+
kol-input.error kol-alert.error {
|
|
5388
|
+
color: var(--color-red);
|
|
5389
|
+
font-weight: 700;
|
|
5390
|
+
}
|
|
5391
|
+
kol-input.disabled :is(button, input, label, option, select, textarea) {
|
|
5392
|
+
opacity: 1;
|
|
5393
|
+
}
|
|
5394
|
+
kol-input.disabled :is(input, select, textarea, .input) {
|
|
5395
|
+
background-color: var(--color-smoke);
|
|
5396
|
+
border-color: var(--color-granite);
|
|
5397
|
+
color: var(--color-black);
|
|
5398
|
+
}`,
|
|
5399
|
+
"KOL-TEXTAREA": `kol-input {
|
|
5400
|
+
gap: 0.25em;
|
|
5401
|
+
}
|
|
5402
|
+
kol-input .error {
|
|
5403
|
+
order: 1;
|
|
5404
|
+
}
|
|
5405
|
+
kol-input label {
|
|
5406
|
+
order: 2;
|
|
5407
|
+
}
|
|
5408
|
+
kol-input .input {
|
|
5409
|
+
order: 3;
|
|
5410
|
+
}
|
|
5411
|
+
kol-input .hint {
|
|
5412
|
+
order: 4;
|
|
5413
|
+
font-size: 0.875em;
|
|
5414
|
+
font-style: italic;
|
|
5415
|
+
}
|
|
5416
|
+
textarea {
|
|
5124
5417
|
border: none;
|
|
5125
5418
|
}
|
|
5126
5419
|
input::placeholder {
|
|
@@ -15773,6 +16066,145 @@ const DESYv1 = KoliBri.createTheme("desy-v1", {
|
|
|
15773
16066
|
background: var(--color-primary);
|
|
15774
16067
|
color: white;
|
|
15775
16068
|
}`,
|
|
16069
|
+
"KOL-INPUT-DATE": `kol-input {
|
|
16070
|
+
display: grid;
|
|
16071
|
+
}
|
|
16072
|
+
kol-input label {
|
|
16073
|
+
order: 1;
|
|
16074
|
+
padding: 0.125rem 0 0.4rem;
|
|
16075
|
+
vertical-align: text-top;
|
|
16076
|
+
line-height: 1.2;
|
|
16077
|
+
}
|
|
16078
|
+
kol-input div.input {
|
|
16079
|
+
box-sizing: border-box;
|
|
16080
|
+
order: 2;
|
|
16081
|
+
background-color: white;
|
|
16082
|
+
border-radius: 0.3125rem;
|
|
16083
|
+
}
|
|
16084
|
+
kol-input kol-alert.error {
|
|
16085
|
+
margin-bottom: 0.4em;
|
|
16086
|
+
margin-top: 0.2em;
|
|
16087
|
+
order: 3;
|
|
16088
|
+
}
|
|
16089
|
+
input,
|
|
16090
|
+
select,
|
|
16091
|
+
textarea {
|
|
16092
|
+
font-family: var(--font-family);
|
|
16093
|
+
background-color: transparent;
|
|
16094
|
+
box-sizing: border-box;
|
|
16095
|
+
font-size: 1rem;
|
|
16096
|
+
display: inline-flex;
|
|
16097
|
+
border-color: var(--color-grey);
|
|
16098
|
+
border-width: 1px;
|
|
16099
|
+
border-style: solid;
|
|
16100
|
+
overflow: hidden;
|
|
16101
|
+
width: 100%;
|
|
16102
|
+
line-height: normal;
|
|
16103
|
+
padding: 0.4rem 8px;
|
|
16104
|
+
}
|
|
16105
|
+
input:hover,
|
|
16106
|
+
select:hover,
|
|
16107
|
+
textarea:hover {
|
|
16108
|
+
border-color: #2d6f9e;
|
|
16109
|
+
box-shadow: 0 0 0 1px #2d6f9e inset;
|
|
16110
|
+
}
|
|
16111
|
+
input:focus,
|
|
16112
|
+
select:focus,
|
|
16113
|
+
textarea:focus {
|
|
16114
|
+
border-color: var(--color-primary-20);
|
|
16115
|
+
box-shadow: inset 0 0 0 1px var(--color-primary-20);
|
|
16116
|
+
outline: none;
|
|
16117
|
+
}
|
|
16118
|
+
input,
|
|
16119
|
+
select:not([multiple]) {
|
|
16120
|
+
height: 2.75em;
|
|
16121
|
+
}
|
|
16122
|
+
input::placeholder {
|
|
16123
|
+
color: var(--color-grey);
|
|
16124
|
+
}
|
|
16125
|
+
input:hover {
|
|
16126
|
+
border-color: var(--color-midnight);
|
|
16127
|
+
}
|
|
16128
|
+
input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
|
|
16129
|
+
cursor: not-allowed;
|
|
16130
|
+
border-color: var(--border-default);
|
|
16131
|
+
}
|
|
16132
|
+
.required label > span::after {
|
|
16133
|
+
content: "*";
|
|
16134
|
+
padding-left: 0.125em;
|
|
16135
|
+
}
|
|
16136
|
+
.icons {
|
|
16137
|
+
display: flex;
|
|
16138
|
+
justify-content: space-between;
|
|
16139
|
+
height: 0;
|
|
16140
|
+
}
|
|
16141
|
+
.icons > * {
|
|
16142
|
+
margin: 0.75em;
|
|
16143
|
+
}
|
|
16144
|
+
.icon-left input,
|
|
16145
|
+
.icon-left select {
|
|
16146
|
+
padding-left: 2em;
|
|
16147
|
+
}
|
|
16148
|
+
.icon-right input,
|
|
16149
|
+
.icon-right select {
|
|
16150
|
+
padding-right: 2em;
|
|
16151
|
+
}
|
|
16152
|
+
kol-input.error input:focus,
|
|
16153
|
+
kol-input.error select:focus,
|
|
16154
|
+
kol-input.error textarea:focus {
|
|
16155
|
+
border-color: var(--color-warning);
|
|
16156
|
+
box-shadow: inset 0 0 0 1px var(--color-warning);
|
|
16157
|
+
}
|
|
16158
|
+
kol-input.error kol-alert.error {
|
|
16159
|
+
color: var(--color-warning);
|
|
16160
|
+
}
|
|
16161
|
+
kol-button-wc {
|
|
16162
|
+
position: relative;
|
|
16163
|
+
float: right;
|
|
16164
|
+
z-index: 1000;
|
|
16165
|
+
margin-top: -2.7em;
|
|
16166
|
+
}
|
|
16167
|
+
kol-button-wc button {
|
|
16168
|
+
border: 0;
|
|
16169
|
+
height: 2.7em;
|
|
16170
|
+
box-sizing: border-box;
|
|
16171
|
+
background-color: transparent;
|
|
16172
|
+
cursor: pointer;
|
|
16173
|
+
}
|
|
16174
|
+
kol-button-wc button:focus,
|
|
16175
|
+
kol-button-wc button:hover {
|
|
16176
|
+
background-color: var(--color-primary);
|
|
16177
|
+
color: var(--color-white);
|
|
16178
|
+
}
|
|
16179
|
+
.icon-right kol-button-wc {
|
|
16180
|
+
margin-right: 2.5em;
|
|
16181
|
+
}
|
|
16182
|
+
.disabled {
|
|
16183
|
+
opacity: 0.33;
|
|
16184
|
+
}
|
|
16185
|
+
select[multiple],
|
|
16186
|
+
textarea {
|
|
16187
|
+
overflow: auto;
|
|
16188
|
+
}
|
|
16189
|
+
textarea {
|
|
16190
|
+
display: block;
|
|
16191
|
+
}
|
|
16192
|
+
select option {
|
|
16193
|
+
margin: 1px 0;
|
|
16194
|
+
padding: 0.5em;
|
|
16195
|
+
border-radius: 0.25em;
|
|
16196
|
+
cursor: pointer;
|
|
16197
|
+
}
|
|
16198
|
+
select option:disabled {
|
|
16199
|
+
cursor: not-allowed;
|
|
16200
|
+
}
|
|
16201
|
+
option:active:not(:disabled),
|
|
16202
|
+
option:checked:not(:disabled),
|
|
16203
|
+
option:focus:not(:disabled),
|
|
16204
|
+
option:hover:not(:disabled) {
|
|
16205
|
+
background: var(--color-primary);
|
|
16206
|
+
color: white;
|
|
16207
|
+
}`,
|
|
15776
16208
|
"KOL-INPUT-EMAIL": `kol-input {
|
|
15777
16209
|
display: grid;
|
|
15778
16210
|
}
|
|
@@ -18461,6 +18893,145 @@ const DESYv2 = KoliBri.createTheme("desy-v2", {
|
|
|
18461
18893
|
background: var(--color-primary);
|
|
18462
18894
|
color: white;
|
|
18463
18895
|
}`,
|
|
18896
|
+
"KOL-INPUT-DATE": `kol-input {
|
|
18897
|
+
display: grid;
|
|
18898
|
+
}
|
|
18899
|
+
kol-input label {
|
|
18900
|
+
order: 1;
|
|
18901
|
+
padding: 0.125rem 0 0.4rem;
|
|
18902
|
+
vertical-align: text-top;
|
|
18903
|
+
line-height: 1.2;
|
|
18904
|
+
}
|
|
18905
|
+
kol-input div.input {
|
|
18906
|
+
box-sizing: border-box;
|
|
18907
|
+
order: 2;
|
|
18908
|
+
background-color: white;
|
|
18909
|
+
border-radius: 0.3125rem;
|
|
18910
|
+
}
|
|
18911
|
+
kol-input kol-alert.error {
|
|
18912
|
+
margin-bottom: 0.4em;
|
|
18913
|
+
margin-top: 0.2em;
|
|
18914
|
+
order: 3;
|
|
18915
|
+
}
|
|
18916
|
+
input,
|
|
18917
|
+
select,
|
|
18918
|
+
textarea {
|
|
18919
|
+
font-family: var(--font-family);
|
|
18920
|
+
background-color: transparent;
|
|
18921
|
+
box-sizing: border-box;
|
|
18922
|
+
font-size: 1rem;
|
|
18923
|
+
display: inline-flex;
|
|
18924
|
+
border-color: var(--color-grey);
|
|
18925
|
+
border-width: 1px;
|
|
18926
|
+
border-style: solid;
|
|
18927
|
+
overflow: hidden;
|
|
18928
|
+
width: 100%;
|
|
18929
|
+
line-height: normal;
|
|
18930
|
+
padding: 0.4rem 8px;
|
|
18931
|
+
}
|
|
18932
|
+
input:hover,
|
|
18933
|
+
select:hover,
|
|
18934
|
+
textarea:hover {
|
|
18935
|
+
border-color: #2d6f9e;
|
|
18936
|
+
box-shadow: 0 0 0 1px #2d6f9e inset;
|
|
18937
|
+
}
|
|
18938
|
+
input:focus,
|
|
18939
|
+
select:focus,
|
|
18940
|
+
textarea:focus {
|
|
18941
|
+
border-color: var(--color-primary-20);
|
|
18942
|
+
box-shadow: inset 0 0 0 1px var(--color-primary-20);
|
|
18943
|
+
outline: none;
|
|
18944
|
+
}
|
|
18945
|
+
input,
|
|
18946
|
+
select:not([multiple]) {
|
|
18947
|
+
height: 2.75em;
|
|
18948
|
+
}
|
|
18949
|
+
input::placeholder {
|
|
18950
|
+
color: var(--color-grey);
|
|
18951
|
+
}
|
|
18952
|
+
input:hover {
|
|
18953
|
+
border-color: var(--color-midnight);
|
|
18954
|
+
}
|
|
18955
|
+
input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
|
|
18956
|
+
cursor: not-allowed;
|
|
18957
|
+
border-color: var(--border-default);
|
|
18958
|
+
}
|
|
18959
|
+
.required label > span::after {
|
|
18960
|
+
content: "*";
|
|
18961
|
+
padding-left: 0.125em;
|
|
18962
|
+
}
|
|
18963
|
+
.icons {
|
|
18964
|
+
display: flex;
|
|
18965
|
+
justify-content: space-between;
|
|
18966
|
+
height: 0;
|
|
18967
|
+
}
|
|
18968
|
+
.icons > * {
|
|
18969
|
+
margin: 0.75em;
|
|
18970
|
+
}
|
|
18971
|
+
.icon-left input,
|
|
18972
|
+
.icon-left select {
|
|
18973
|
+
padding-left: 2em;
|
|
18974
|
+
}
|
|
18975
|
+
.icon-right input,
|
|
18976
|
+
.icon-right select {
|
|
18977
|
+
padding-right: 2em;
|
|
18978
|
+
}
|
|
18979
|
+
kol-input.error input:focus,
|
|
18980
|
+
kol-input.error select:focus,
|
|
18981
|
+
kol-input.error textarea:focus {
|
|
18982
|
+
border-color: var(--color-warning);
|
|
18983
|
+
box-shadow: inset 0 0 0 1px var(--color-warning);
|
|
18984
|
+
}
|
|
18985
|
+
kol-input.error kol-alert.error {
|
|
18986
|
+
color: var(--color-warning);
|
|
18987
|
+
}
|
|
18988
|
+
kol-button-wc {
|
|
18989
|
+
position: relative;
|
|
18990
|
+
float: right;
|
|
18991
|
+
z-index: 1000;
|
|
18992
|
+
margin-top: -2.7em;
|
|
18993
|
+
}
|
|
18994
|
+
kol-button-wc button {
|
|
18995
|
+
border: 0;
|
|
18996
|
+
height: 2.7em;
|
|
18997
|
+
box-sizing: border-box;
|
|
18998
|
+
background-color: transparent;
|
|
18999
|
+
cursor: pointer;
|
|
19000
|
+
}
|
|
19001
|
+
kol-button-wc button:focus,
|
|
19002
|
+
kol-button-wc button:hover {
|
|
19003
|
+
background-color: var(--color-primary);
|
|
19004
|
+
color: var(--color-white);
|
|
19005
|
+
}
|
|
19006
|
+
.icon-right kol-button-wc {
|
|
19007
|
+
margin-right: 2.5em;
|
|
19008
|
+
}
|
|
19009
|
+
.disabled {
|
|
19010
|
+
opacity: 0.33;
|
|
19011
|
+
}
|
|
19012
|
+
select[multiple],
|
|
19013
|
+
textarea {
|
|
19014
|
+
overflow: auto;
|
|
19015
|
+
}
|
|
19016
|
+
textarea {
|
|
19017
|
+
display: block;
|
|
19018
|
+
}
|
|
19019
|
+
select option {
|
|
19020
|
+
margin: 1px 0;
|
|
19021
|
+
padding: 0.5em;
|
|
19022
|
+
border-radius: 0.25em;
|
|
19023
|
+
cursor: pointer;
|
|
19024
|
+
}
|
|
19025
|
+
select option:disabled {
|
|
19026
|
+
cursor: not-allowed;
|
|
19027
|
+
}
|
|
19028
|
+
option:active:not(:disabled),
|
|
19029
|
+
option:checked:not(:disabled),
|
|
19030
|
+
option:focus:not(:disabled),
|
|
19031
|
+
option:hover:not(:disabled) {
|
|
19032
|
+
background: var(--color-primary);
|
|
19033
|
+
color: white;
|
|
19034
|
+
}`,
|
|
18464
19035
|
"KOL-INPUT-EMAIL": `kol-input {
|
|
18465
19036
|
display: grid;
|
|
18466
19037
|
}
|
|
@@ -20350,6 +20921,58 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
|
|
|
20350
20921
|
.error .input {
|
|
20351
20922
|
border-color: var(--color-red);
|
|
20352
20923
|
}`,
|
|
20924
|
+
"KOL-INPUT-DATE": `kol-input {
|
|
20925
|
+
color: var(--color-grey);
|
|
20926
|
+
gap: var(--spacing-xs);
|
|
20927
|
+
}
|
|
20928
|
+
input,
|
|
20929
|
+
select,
|
|
20930
|
+
textarea {
|
|
20931
|
+
border: none;
|
|
20932
|
+
margin: 1px 0.5em;
|
|
20933
|
+
outline: none;
|
|
20934
|
+
}
|
|
20935
|
+
input,
|
|
20936
|
+
select:not([multiple]) {
|
|
20937
|
+
height: 40px !important;
|
|
20938
|
+
min-height: 40px !important;
|
|
20939
|
+
}
|
|
20940
|
+
label {
|
|
20941
|
+
font-weight: var(--font-weight-bold);
|
|
20942
|
+
order: 1;
|
|
20943
|
+
}
|
|
20944
|
+
.hint {
|
|
20945
|
+
font-size: 0.875rem;
|
|
20946
|
+
order: 2;
|
|
20947
|
+
}
|
|
20948
|
+
kol-alert {
|
|
20949
|
+
color: var(--color-red);
|
|
20950
|
+
font-size: 0.875em;
|
|
20951
|
+
margin-left: calc(-1 * var(--spacing-2xs));
|
|
20952
|
+
order: 3;
|
|
20953
|
+
}
|
|
20954
|
+
.input {
|
|
20955
|
+
min-height: 44px !important;
|
|
20956
|
+
border: 1px solid var(--color-grey-75);
|
|
20957
|
+
color: var(--color-grey);
|
|
20958
|
+
order: 4;
|
|
20959
|
+
align-items: center;
|
|
20960
|
+
}
|
|
20961
|
+
input::placeholder,
|
|
20962
|
+
textarea::placeholder {
|
|
20963
|
+
color: var(--color-grey-50);
|
|
20964
|
+
}
|
|
20965
|
+
.input:focus-within {
|
|
20966
|
+
box-shadow: inset 1px 1px var(--color-blue), inset -1px -1px var(--color-blue);
|
|
20967
|
+
outline: none;
|
|
20968
|
+
}
|
|
20969
|
+
.input:focus-within,
|
|
20970
|
+
.input:hover {
|
|
20971
|
+
border-color: var(--color-blue) !important;
|
|
20972
|
+
}
|
|
20973
|
+
.error .input {
|
|
20974
|
+
border-color: var(--color-red);
|
|
20975
|
+
}`,
|
|
20353
20976
|
"KOL-INPUT-EMAIL": `kol-input {
|
|
20354
20977
|
color: var(--color-grey);
|
|
20355
20978
|
gap: var(--spacing-xs);
|
|
@@ -21699,6 +22322,58 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
|
|
|
21699
22322
|
.error .input {
|
|
21700
22323
|
border-color: var(--color-red);
|
|
21701
22324
|
}`,
|
|
22325
|
+
"KOL-INPUT-DATE": `kol-input {
|
|
22326
|
+
color: var(--color-grey);
|
|
22327
|
+
gap: var(--spacing-xs);
|
|
22328
|
+
}
|
|
22329
|
+
input,
|
|
22330
|
+
select,
|
|
22331
|
+
textarea {
|
|
22332
|
+
border: none;
|
|
22333
|
+
margin: 1px 0.5em;
|
|
22334
|
+
outline: none;
|
|
22335
|
+
}
|
|
22336
|
+
input,
|
|
22337
|
+
select:not([multiple]) {
|
|
22338
|
+
height: 40px !important;
|
|
22339
|
+
min-height: 40px !important;
|
|
22340
|
+
}
|
|
22341
|
+
label {
|
|
22342
|
+
font-weight: var(--font-weight-bold);
|
|
22343
|
+
order: 1;
|
|
22344
|
+
}
|
|
22345
|
+
.hint {
|
|
22346
|
+
font-size: 0.875rem;
|
|
22347
|
+
order: 2;
|
|
22348
|
+
}
|
|
22349
|
+
kol-alert {
|
|
22350
|
+
color: var(--color-red);
|
|
22351
|
+
font-size: 0.875em;
|
|
22352
|
+
margin-left: calc(-1 * var(--spacing-2xs));
|
|
22353
|
+
order: 3;
|
|
22354
|
+
}
|
|
22355
|
+
.input {
|
|
22356
|
+
min-height: 44px !important;
|
|
22357
|
+
border: 1px solid var(--color-grey-75);
|
|
22358
|
+
color: var(--color-grey);
|
|
22359
|
+
order: 4;
|
|
22360
|
+
align-items: center;
|
|
22361
|
+
}
|
|
22362
|
+
input::placeholder,
|
|
22363
|
+
textarea::placeholder {
|
|
22364
|
+
color: var(--color-grey-50);
|
|
22365
|
+
}
|
|
22366
|
+
.input:focus-within {
|
|
22367
|
+
box-shadow: inset 1px 1px var(--color-blue), inset -1px -1px var(--color-blue);
|
|
22368
|
+
outline: none;
|
|
22369
|
+
}
|
|
22370
|
+
.input:focus-within,
|
|
22371
|
+
.input:hover {
|
|
22372
|
+
border-color: var(--color-blue) !important;
|
|
22373
|
+
}
|
|
22374
|
+
.error .input {
|
|
22375
|
+
border-color: var(--color-red);
|
|
22376
|
+
}`,
|
|
21702
22377
|
"KOL-INPUT-PASSWORD": `kol-input {
|
|
21703
22378
|
color: var(--color-grey);
|
|
21704
22379
|
gap: var(--spacing-xs);
|
|
@@ -22656,6 +23331,55 @@ const ITZBund = KoliBri.createTheme("itzbund", {
|
|
|
22656
23331
|
input::placeholder {
|
|
22657
23332
|
font-style: italic;
|
|
22658
23333
|
}`,
|
|
23334
|
+
"KOL-INPUT-DATE": `input:hover,
|
|
23335
|
+
input:focus {
|
|
23336
|
+
border-color: var(--border-color) !important;
|
|
23337
|
+
border-radius: none !important;
|
|
23338
|
+
outline-color: var(--color-achat) !important;
|
|
23339
|
+
outline-offset: 0;
|
|
23340
|
+
outline-style: solid;
|
|
23341
|
+
outline-width: 1px;
|
|
23342
|
+
}
|
|
23343
|
+
label {
|
|
23344
|
+
color: var(--color-anthrazit);
|
|
23345
|
+
font-size: 14px;
|
|
23346
|
+
line-height: 20px;
|
|
23347
|
+
gap: 8px;
|
|
23348
|
+
width: 100%;
|
|
23349
|
+
font-weight: bold;
|
|
23350
|
+
}
|
|
23351
|
+
input {
|
|
23352
|
+
cursor: pointer;
|
|
23353
|
+
width: 100%;
|
|
23354
|
+
color: var(--color-anthrazit);
|
|
23355
|
+
border-width: 1px;
|
|
23356
|
+
border-style: solid;
|
|
23357
|
+
border-color: var(--color-petrol);
|
|
23358
|
+
border-radius: 0;
|
|
23359
|
+
background-color: #e8edf2 !important;
|
|
23360
|
+
overflow: hidden;
|
|
23361
|
+
line-height: 24px;
|
|
23362
|
+
font-size: 16px;
|
|
23363
|
+
}
|
|
23364
|
+
.error input {
|
|
23365
|
+
background-color: var(--color-rotton-20) !important;
|
|
23366
|
+
border-color: var(--color-rotton) !important;
|
|
23367
|
+
}
|
|
23368
|
+
input:disabled {
|
|
23369
|
+
background-color: var(--color-input-bg-default);
|
|
23370
|
+
border-color: var(--border-color);
|
|
23371
|
+
cursor: not-allowed;
|
|
23372
|
+
}
|
|
23373
|
+
kol-alert {
|
|
23374
|
+
margin-top: calc(2 * var(--spacing));
|
|
23375
|
+
display: block;
|
|
23376
|
+
}
|
|
23377
|
+
.kol-required span::after {
|
|
23378
|
+
content: "*";
|
|
23379
|
+
}
|
|
23380
|
+
input::placeholder {
|
|
23381
|
+
font-style: italic;
|
|
23382
|
+
}`,
|
|
22659
23383
|
"KOL-INPUT-EMAIL": `input:hover,
|
|
22660
23384
|
input:focus {
|
|
22661
23385
|
border-color: var(--border-color) !important;
|
|
@@ -24282,6 +25006,88 @@ const MAPZ = KoliBri.createTheme("mapz", {
|
|
|
24282
25006
|
background-color: var(--kolibri-color-primary);
|
|
24283
25007
|
color: white;
|
|
24284
25008
|
}`,
|
|
25009
|
+
"KOL-INPUT-DATE": `input,
|
|
25010
|
+
select,
|
|
25011
|
+
textarea {
|
|
25012
|
+
border: none;
|
|
25013
|
+
}
|
|
25014
|
+
input[type="color"] {
|
|
25015
|
+
border: none;
|
|
25016
|
+
min-height: 40px !important;
|
|
25017
|
+
}
|
|
25018
|
+
input[type="color"],
|
|
25019
|
+
input[type="file"] {
|
|
25020
|
+
background-color: transparent;
|
|
25021
|
+
}
|
|
25022
|
+
kol-input {
|
|
25023
|
+
gap: var(--spacing);
|
|
25024
|
+
}
|
|
25025
|
+
kol-input > label {
|
|
25026
|
+
order: 1;
|
|
25027
|
+
color: var(--default-letter);
|
|
25028
|
+
}
|
|
25029
|
+
kol-input > .input {
|
|
25030
|
+
border-color: var(--kolibri-border-color);
|
|
25031
|
+
border-radius: 0.25rem;
|
|
25032
|
+
border-style: solid;
|
|
25033
|
+
border-width: 2px;
|
|
25034
|
+
order: 2;
|
|
25035
|
+
}
|
|
25036
|
+
kol-input:hover > .input {
|
|
25037
|
+
border-color: var(--kolibri-color-secondary);
|
|
25038
|
+
}
|
|
25039
|
+
kol-input > .input > kol-icon:first-child {
|
|
25040
|
+
margin-left: 0.75em;
|
|
25041
|
+
}
|
|
25042
|
+
kol-input > .input > kol-icon:last-child {
|
|
25043
|
+
margin-right: 0.75em;
|
|
25044
|
+
}
|
|
25045
|
+
kol-input > .error {
|
|
25046
|
+
order: 3;
|
|
25047
|
+
}
|
|
25048
|
+
kol-input > .hint {
|
|
25049
|
+
order: 4;
|
|
25050
|
+
font-size: 0.875em;
|
|
25051
|
+
}
|
|
25052
|
+
input,
|
|
25053
|
+
select,
|
|
25054
|
+
textarea {
|
|
25055
|
+
color: var(--default-letter);
|
|
25056
|
+
padding: 0.5em 0.75em;
|
|
25057
|
+
}
|
|
25058
|
+
input:not([type="range"]),
|
|
25059
|
+
select:not([multiple]) {
|
|
25060
|
+
height: 2.75em;
|
|
25061
|
+
}
|
|
25062
|
+
textarea {
|
|
25063
|
+
display: inherit;
|
|
25064
|
+
}
|
|
25065
|
+
input::placeholder {
|
|
25066
|
+
color: var(--default-border-hover);
|
|
25067
|
+
}
|
|
25068
|
+
input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
|
|
25069
|
+
cursor: not-allowed;
|
|
25070
|
+
}
|
|
25071
|
+
select[multiple],
|
|
25072
|
+
textarea {
|
|
25073
|
+
overflow: auto;
|
|
25074
|
+
}
|
|
25075
|
+
select option {
|
|
25076
|
+
margin: 1px 0;
|
|
25077
|
+
padding: 0.5em;
|
|
25078
|
+
border-radius: 0.25em;
|
|
25079
|
+
cursor: pointer;
|
|
25080
|
+
}
|
|
25081
|
+
select option:disabled {
|
|
25082
|
+
cursor: not-allowed;
|
|
25083
|
+
}
|
|
25084
|
+
option:active:not(:disabled),
|
|
25085
|
+
option:checked:not(:disabled),
|
|
25086
|
+
option:focus:not(:disabled),
|
|
25087
|
+
option:hover:not(:disabled) {
|
|
25088
|
+
background-color: var(--kolibri-color-primary);
|
|
25089
|
+
color: white;
|
|
25090
|
+
}`,
|
|
24285
25091
|
"KOL-INPUT-EMAIL": `input,
|
|
24286
25092
|
select,
|
|
24287
25093
|
textarea {
|
|
@@ -42483,6 +43289,52 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
42483
43289
|
kol-input > kol-alert.error {
|
|
42484
43290
|
order: 3;
|
|
42485
43291
|
}`,
|
|
43292
|
+
"KOL-INPUT-DATE": `kol-input {
|
|
43293
|
+
gap: var(--gap);
|
|
43294
|
+
}
|
|
43295
|
+
kol-input .input {
|
|
43296
|
+
border-color: var(--color-grau-30);
|
|
43297
|
+
border-width: 2px;
|
|
43298
|
+
border-style: solid;
|
|
43299
|
+
padding: 0px 0.75em;
|
|
43300
|
+
gap: var(--gap);
|
|
43301
|
+
overflow: hidden;
|
|
43302
|
+
}
|
|
43303
|
+
kol-input .input:focus-within,
|
|
43304
|
+
kol-input .input:hover {
|
|
43305
|
+
border-color: var(--color-grau-60);
|
|
43306
|
+
}
|
|
43307
|
+
kol-input:not(.select, .textarea) .input {
|
|
43308
|
+
height: calc(var(--a11y-min-size) - 4px);
|
|
43309
|
+
}
|
|
43310
|
+
kol-input:not(.range) .input :is(input, select, textarea) {
|
|
43311
|
+
background-color: white;
|
|
43312
|
+
border: 0;
|
|
43313
|
+
}
|
|
43314
|
+
kol-input .input input[type="file"] {
|
|
43315
|
+
padding-top: calc(0.5em + 2px);
|
|
43316
|
+
}
|
|
43317
|
+
kol-input > label {
|
|
43318
|
+
font-weight: var(--font-weight-bold);
|
|
43319
|
+
order: 1;
|
|
43320
|
+
margin-bottom: 0.25rem;
|
|
43321
|
+
}
|
|
43322
|
+
kol-input > label > span {
|
|
43323
|
+
color: var(--default-letter);
|
|
43324
|
+
}
|
|
43325
|
+
kol-input > div.input {
|
|
43326
|
+
border-radius: 0.25rem;
|
|
43327
|
+
order: 2;
|
|
43328
|
+
}
|
|
43329
|
+
kol-input > span.hint {
|
|
43330
|
+
color: var(--color-grau-60);
|
|
43331
|
+
font-style: italic;
|
|
43332
|
+
order: 4;
|
|
43333
|
+
font-size: 0.8rem;
|
|
43334
|
+
}
|
|
43335
|
+
kol-input > kol-alert.error {
|
|
43336
|
+
order: 3;
|
|
43337
|
+
}`,
|
|
42486
43338
|
"KOL-INPUT-TEXT": `kol-input {
|
|
42487
43339
|
gap: var(--gap);
|
|
42488
43340
|
}
|