@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.
Files changed (3) hide show
  1. package/dist/index.cjs +1158 -187
  2. package/dist/index.mjs +1158 -187
  3. package/package.json +6 -6
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;
@@ -1819,6 +1909,16 @@ const BPA = KoliBri.createTheme("bpa", {
1819
1909
  color: var(--color-white);
1820
1910
  background-color: var(--color-darkblue);
1821
1911
  border-color: var(--color-darkblue);
1912
+ }`,
1913
+ "KOL-SKIP-NAV": `kol-link-wc > a > kol-span-wc {
1914
+ border: 1px solid var(--color-darkgray);
1915
+ border-radius: 0.125rem;
1916
+ gap: 0.5rem;
1917
+ line-height: 1.125rem;
1918
+ padding: 0.75rem 1rem;
1919
+ background-color: var(--color-blue);
1920
+ color: var(--color-white);
1921
+ cursor: pointer;
1822
1922
  }`
1823
1923
  });
1824
1924
 
@@ -2096,11 +2196,10 @@ const BZSt = KoliBri.createTheme("bzst", {
2096
2196
  button.loading kol-icon {
2097
2197
  animation: spin 5s infinite linear;
2098
2198
  }`,
2099
- "KOL-INPUT-TEXT": `kol-input {
2199
+ "KOL-INPUT-DATE": `kol-input {
2100
2200
  display: grid;
2101
2201
  padding: 0;
2102
2202
  margin: 0;
2103
- font-size: var(--text-size);
2104
2203
  }
2105
2204
  input:focus,
2106
2205
  input:hover,
@@ -2108,12 +2207,7 @@ const BZSt = KoliBri.createTheme("bzst", {
2108
2207
  select:hover,
2109
2208
  textarea:focus,
2110
2209
  textarea:hover {
2111
- border-color: var(--color-gruen-hell);
2112
- }
2113
- .error input:invalid,
2114
- .error select:invalid,
2115
- .error textarea:invalid {
2116
- border-color: var(--color-rot);
2210
+ border-color: black;
2117
2211
  }
2118
2212
  input:focus-within,
2119
2213
  select:focus-within,
@@ -2124,125 +2218,6 @@ const BZSt = KoliBri.createTheme("bzst", {
2124
2218
  order: 1;
2125
2219
  margin-bottom: var(--gapSmallest);
2126
2220
  }
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
2221
  kol-input > label > span {
2247
2222
  color: black;
2248
2223
  font-size: 0.875rem;
@@ -2260,17 +2235,17 @@ const BZSt = KoliBri.createTheme("bzst", {
2260
2235
  input,
2261
2236
  select,
2262
2237
  textarea {
2263
- font-family: var(--font-family);
2238
+ font-family: var(--textFont);
2264
2239
  background-color: transparent;
2265
2240
  box-sizing: border-box;
2266
- font-size: 1rem;
2241
+ font-size: var(--textFontSize);
2267
2242
  display: inline-flex;
2268
- line-height: 1.5em;
2243
+ line-height: 1.5;
2269
2244
  color: black;
2270
- border-color: var(--color-grau-dunkel);
2245
+ border-color: var(--color-gruen);
2271
2246
  border-width: 1px;
2272
2247
  border-style: solid;
2273
- padding: 0.5em 0.75em;
2248
+ padding: 0.5em;
2274
2249
  overflow: hidden;
2275
2250
  width: 100%;
2276
2251
  }
@@ -2310,7 +2285,7 @@ const BZSt = KoliBri.createTheme("bzst", {
2310
2285
  kol-button-wc {
2311
2286
  position: relative;
2312
2287
  float: right;
2313
- z-index: 1000;
2288
+ z-index: 1;
2314
2289
  margin-top: -33px;
2315
2290
  }
2316
2291
  kol-button-wc button {
@@ -2344,12 +2319,14 @@ const BZSt = KoliBri.createTheme("bzst", {
2344
2319
  option:checked:not(:disabled),
2345
2320
  option:focus:not(:disabled),
2346
2321
  option:hover:not(:disabled) {
2322
+ background: var(--color-ocean);
2347
2323
  color: white;
2348
2324
  }`,
2349
- "KOL-INPUT-NUMBER": `kol-input {
2325
+ "KOL-INPUT-TEXT": `kol-input {
2350
2326
  display: grid;
2351
2327
  padding: 0;
2352
2328
  margin: 0;
2329
+ font-size: var(--text-size);
2353
2330
  }
2354
2331
  input:focus,
2355
2332
  input:hover,
@@ -2357,7 +2334,12 @@ const BZSt = KoliBri.createTheme("bzst", {
2357
2334
  select:hover,
2358
2335
  textarea:focus,
2359
2336
  textarea:hover {
2360
- border-color: black;
2337
+ border-color: var(--color-gruen-hell);
2338
+ }
2339
+ .error input:invalid,
2340
+ .error select:invalid,
2341
+ .error textarea:invalid {
2342
+ border-color: var(--color-rot);
2361
2343
  }
2362
2344
  input:focus-within,
2363
2345
  select:focus-within,
@@ -2369,9 +2351,8 @@ const BZSt = KoliBri.createTheme("bzst", {
2369
2351
  margin-bottom: var(--gapSmallest);
2370
2352
  }
2371
2353
  kol-input > label > span {
2372
- color: black;
2373
- font-size: 0.875rem;
2374
- line-height: 1.5rem;
2354
+ color: var(--color-text);
2355
+ line-height: 1.5;
2375
2356
  }
2376
2357
  kol-input > div.input {
2377
2358
  background-color: white;
@@ -2379,23 +2360,268 @@ const BZSt = KoliBri.createTheme("bzst", {
2379
2360
  order: 2;
2380
2361
  }
2381
2362
  kol-input > kol-alert.error {
2382
- margin-top: 0.25em;
2363
+ margin-top: 0.25rem;
2383
2364
  order: 3;
2384
2365
  }
2385
2366
  input,
2386
2367
  select,
2387
2368
  textarea {
2388
- font-family: var(--textFont);
2369
+ font-family: var(--font-family);
2389
2370
  background-color: transparent;
2390
2371
  box-sizing: border-box;
2391
- font-size: var(--textFontSize);
2372
+ font-size: var(--text-size);
2392
2373
  display: inline-flex;
2393
2374
  line-height: 1.5;
2394
2375
  color: black;
2395
2376
  border-color: var(--color-gruen);
2396
2377
  border-width: 1px;
2397
2378
  border-style: solid;
2398
- padding: 0.5em;
2379
+ padding: 0.5em 0.75em;
2380
+ overflow: hidden;
2381
+ width: 100%;
2382
+ }
2383
+ input:not([type="range"]),
2384
+ select:not([multiple]) {
2385
+ height: 2.75em;
2386
+ }
2387
+ textarea {
2388
+ display: inherit;
2389
+ }
2390
+ input::placeholder {
2391
+ color: var(--color-grau-dunkel);
2392
+ }
2393
+ input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
2394
+ cursor: not-allowed;
2395
+ }
2396
+ .required label > span::after {
2397
+ content: "*";
2398
+ padding-left: 0.125em;
2399
+ }
2400
+ .icons {
2401
+ display: flex;
2402
+ justify-content: space-between;
2403
+ height: 0;
2404
+ }
2405
+ .icons > * {
2406
+ margin: 0.75em;
2407
+ }
2408
+ .icon-left input,
2409
+ .icon-left select {
2410
+ padding-left: 2em;
2411
+ }
2412
+ .icon-right input,
2413
+ .icon-right select {
2414
+ padding-right: 2em;
2415
+ }
2416
+ kol-button-wc {
2417
+ position: relative;
2418
+ float: right;
2419
+ z-index: 1000;
2420
+ margin-top: -33px;
2421
+ }
2422
+ kol-button-wc button {
2423
+ border: 1px solid var(--color-grau-dunkel);
2424
+ box-sizing: border-box;
2425
+ background-color: transparent;
2426
+ cursor: pointer;
2427
+ }
2428
+ .icon-right kol-button-wc {
2429
+ margin-right: 2.5em;
2430
+ }
2431
+ .disabled {
2432
+ opacity: 0.33;
2433
+ }
2434
+ select[multiple],
2435
+ textarea {
2436
+ overflow: auto;
2437
+ }
2438
+ textarea {
2439
+ display: block;
2440
+ }
2441
+ select option {
2442
+ margin: 1px 0;
2443
+ padding: 0.5em;
2444
+ cursor: pointer;
2445
+ }
2446
+ select option:disabled {
2447
+ cursor: not-allowed;
2448
+ }
2449
+ option:active:not(:disabled),
2450
+ option:checked:not(:disabled),
2451
+ option:focus:not(:disabled),
2452
+ option:hover:not(:disabled) {
2453
+ color: white;
2454
+ }`,
2455
+ "KOL-INPUT-PASSWORD": `kol-input {
2456
+ display: grid;
2457
+ padding: 0;
2458
+ margin: 0;
2459
+ }
2460
+ input:focus,
2461
+ input:hover,
2462
+ select:focus,
2463
+ select:hover,
2464
+ textarea:focus,
2465
+ textarea:hover {
2466
+ border-color: black;
2467
+ }
2468
+ kol-input > label {
2469
+ order: 1;
2470
+ margin-bottom: 0.25em;
2471
+ }
2472
+ kol-input > label > span {
2473
+ color: black;
2474
+ font-size: 0.875rem;
2475
+ line-height: 1.5rem;
2476
+ }
2477
+ kol-input > div.input {
2478
+ background-color: white;
2479
+ display: block;
2480
+ order: 2;
2481
+ }
2482
+ kol-input > kol-alert.error {
2483
+ margin-top: 0.25em;
2484
+ order: 3;
2485
+ }
2486
+ input,
2487
+ select,
2488
+ textarea {
2489
+ font-family: var(--font-family);
2490
+ background-color: transparent;
2491
+ box-sizing: border-box;
2492
+ font-size: 1rem;
2493
+ display: inline-flex;
2494
+ line-height: 1.5em;
2495
+ color: black;
2496
+ border-color: var(--color-grau-dunkel);
2497
+ border-width: 1px;
2498
+ border-style: solid;
2499
+ padding: 0.5em 0.75em;
2500
+ overflow: hidden;
2501
+ width: 100%;
2502
+ }
2503
+ input:not([type="range"]),
2504
+ select:not([multiple]) {
2505
+ height: 2.75em;
2506
+ }
2507
+ textarea {
2508
+ display: inherit;
2509
+ }
2510
+ input::placeholder {
2511
+ color: var(--color-grau-dunkel);
2512
+ }
2513
+ input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
2514
+ cursor: not-allowed;
2515
+ }
2516
+ .required label > span::after {
2517
+ content: "*";
2518
+ padding-left: 0.125em;
2519
+ }
2520
+ .icons {
2521
+ display: flex;
2522
+ justify-content: space-between;
2523
+ height: 0;
2524
+ }
2525
+ .icons > * {
2526
+ margin: 0.75em;
2527
+ }
2528
+ .icon-left input,
2529
+ .icon-left select {
2530
+ padding-left: 2em;
2531
+ }
2532
+ .icon-right input,
2533
+ .icon-right select {
2534
+ padding-right: 2em;
2535
+ }
2536
+ kol-button-wc {
2537
+ position: relative;
2538
+ float: right;
2539
+ z-index: 1000;
2540
+ margin-top: -33px;
2541
+ }
2542
+ kol-button-wc button {
2543
+ border: 1px solid var(--color-grau-dunkel);
2544
+ box-sizing: border-box;
2545
+ background-color: transparent;
2546
+ cursor: pointer;
2547
+ }
2548
+ .icon-right kol-button-wc {
2549
+ margin-right: 2.5em;
2550
+ }
2551
+ .disabled {
2552
+ opacity: 0.33;
2553
+ }
2554
+ select[multiple],
2555
+ textarea {
2556
+ overflow: auto;
2557
+ }
2558
+ textarea {
2559
+ display: block;
2560
+ }
2561
+ select option {
2562
+ margin: 1px 0;
2563
+ padding: 0.5em;
2564
+ cursor: pointer;
2565
+ }
2566
+ select option:disabled {
2567
+ cursor: not-allowed;
2568
+ }
2569
+ option:active:not(:disabled),
2570
+ option:checked:not(:disabled),
2571
+ option:focus:not(:disabled),
2572
+ option:hover:not(:disabled) {
2573
+ color: white;
2574
+ }`,
2575
+ "KOL-INPUT-NUMBER": `kol-input {
2576
+ display: grid;
2577
+ padding: 0;
2578
+ margin: 0;
2579
+ }
2580
+ input:focus,
2581
+ input:hover,
2582
+ select:focus,
2583
+ select:hover,
2584
+ textarea:focus,
2585
+ textarea:hover {
2586
+ border-color: black;
2587
+ }
2588
+ input:focus-within,
2589
+ select:focus-within,
2590
+ textarea:focus-within {
2591
+ outline: var(--color-focus) solid 2px;
2592
+ }
2593
+ kol-input > label {
2594
+ order: 1;
2595
+ margin-bottom: var(--gapSmallest);
2596
+ }
2597
+ kol-input > label > span {
2598
+ color: black;
2599
+ font-size: 0.875rem;
2600
+ line-height: 1.5rem;
2601
+ }
2602
+ kol-input > div.input {
2603
+ background-color: white;
2604
+ display: block;
2605
+ order: 2;
2606
+ }
2607
+ kol-input > kol-alert.error {
2608
+ margin-top: 0.25em;
2609
+ order: 3;
2610
+ }
2611
+ input,
2612
+ select,
2613
+ textarea {
2614
+ font-family: var(--textFont);
2615
+ background-color: transparent;
2616
+ box-sizing: border-box;
2617
+ font-size: var(--textFontSize);
2618
+ display: inline-flex;
2619
+ line-height: 1.5;
2620
+ color: black;
2621
+ border-color: var(--color-gruen);
2622
+ border-width: 1px;
2623
+ border-style: solid;
2624
+ padding: 0.5em;
2399
2625
  overflow: hidden;
2400
2626
  width: 100%;
2401
2627
  }
@@ -4486,6 +4712,18 @@ const BZSt = KoliBri.createTheme("bzst", {
4486
4712
  }`,
4487
4713
  "KOL-TOOLTIP": `:host {
4488
4714
  --kolibri-font-size: var(--textFontSize);
4715
+ }`,
4716
+ "KOL-SKIP-NAV": `kol-link-wc > a > kol-span-wc {
4717
+ border-radius: 2px;
4718
+ border-style: solid;
4719
+ border-width: 2px;
4720
+ gap: 0.5rem;
4721
+ line-height: 1rem;
4722
+ padding: 0.75rem 1rem;
4723
+ background-color: var(--colorPrimary);
4724
+ border-color: var(--colorPrimary);
4725
+ color: var(--colorPrimaryFront);
4726
+ cursor: pointer;
4489
4727
  }`
4490
4728
  });
4491
4729
 
@@ -4941,7 +5179,7 @@ const BMF = KoliBri.createTheme("bmf", {
4941
5179
  border-color: var(--color-granite);
4942
5180
  color: var(--color-black);
4943
5181
  }`,
4944
- "KOL-INPUT-EMAIL": `kol-input {
5182
+ "KOL-INPUT-DATE": `kol-input {
4945
5183
  gap: 0.25em;
4946
5184
  }
4947
5185
  kol-input .error {
@@ -4992,7 +5230,6 @@ const BMF = KoliBri.createTheme("bmf", {
4992
5230
  .input:hover {
4993
5231
  border-color: var(--color-midnight);
4994
5232
  }
4995
- input:read-only,
4996
5233
  input:disabled {
4997
5234
  cursor: not-allowed;
4998
5235
  }
@@ -5019,7 +5256,7 @@ const BMF = KoliBri.createTheme("bmf", {
5019
5256
  border-color: var(--color-granite);
5020
5257
  color: var(--color-black);
5021
5258
  }`,
5022
- "KOL-INPUT-FILE": `kol-input {
5259
+ "KOL-INPUT-EMAIL": `kol-input {
5023
5260
  gap: 0.25em;
5024
5261
  }
5025
5262
  kol-input .error {
@@ -5036,15 +5273,93 @@ const BMF = KoliBri.createTheme("bmf", {
5036
5273
  font-size: 0.875em;
5037
5274
  font-style: italic;
5038
5275
  }
5039
- kol-input .input input[type="file"] {
5040
- padding-top: calc(0.5em + 2px);
5041
- }
5042
5276
  input {
5043
5277
  border: none;
5044
5278
  }
5045
- input[type="file"] {
5046
- background-color: transparent;
5047
- }
5279
+ input::placeholder {
5280
+ color: var(--color-grey);
5281
+ }
5282
+ .input {
5283
+ background-color: var(--color-white);
5284
+ border-color: var(--color-grey);
5285
+ border-radius: var(--border-radius);
5286
+ border-style: solid;
5287
+ border-width: 2px;
5288
+ padding: 0 0.5em;
5289
+ }
5290
+ .input > kol-icon {
5291
+ width: 1em;
5292
+ }
5293
+ .input:is(.icon-left, .icon-right) {
5294
+ padding-left: 1em;
5295
+ padding-right: 1em;
5296
+ }
5297
+ .input:is(.icon-left, .icon-right) input {
5298
+ padding-left: 0.5em;
5299
+ padding-right: 0.5em;
5300
+ }
5301
+ .input > input:first-child {
5302
+ padding-left: 0.375em;
5303
+ }
5304
+ .input > input:last-child {
5305
+ padding-right: 0.375em;
5306
+ }
5307
+ .input:hover {
5308
+ border-color: var(--color-midnight);
5309
+ }
5310
+ input:read-only,
5311
+ input:disabled {
5312
+ cursor: not-allowed;
5313
+ }
5314
+ .required label > span::after {
5315
+ content: "*";
5316
+ padding-left: 0.125em;
5317
+ }
5318
+ kol-input.error {
5319
+ border-left: 3px solid var(--color-red);
5320
+ padding-left: 1em;
5321
+ }
5322
+ kol-input.error .input:focus-within {
5323
+ outline-color: var(--color-red) !important;
5324
+ }
5325
+ kol-input.error kol-alert.error {
5326
+ color: var(--color-red);
5327
+ font-weight: 700;
5328
+ }
5329
+ kol-input.disabled :is(input, label) {
5330
+ opacity: 1;
5331
+ }
5332
+ kol-input.disabled :is(input, .input) {
5333
+ background-color: var(--color-smoke);
5334
+ border-color: var(--color-granite);
5335
+ color: var(--color-black);
5336
+ }`,
5337
+ "KOL-INPUT-FILE": `kol-input {
5338
+ gap: 0.25em;
5339
+ }
5340
+ kol-input .error {
5341
+ order: 1;
5342
+ }
5343
+ kol-input label {
5344
+ order: 2;
5345
+ }
5346
+ kol-input .input {
5347
+ order: 3;
5348
+ }
5349
+ kol-input .hint {
5350
+ order: 4;
5351
+ font-size: 0.875em;
5352
+ font-style: italic;
5353
+ }
5354
+ kol-input .input input[type="file"] {
5355
+ padding-top: calc(0.5em + 2px);
5356
+ }
5357
+ input {
5358
+ border: none;
5359
+ }
5360
+ input[type="file"] {
5361
+ background-color: transparent;
5362
+ }
5048
5363
  input::placeholder {
5049
5364
  color: var(--color-grey);
5050
5365
  }
@@ -13976,6 +14291,18 @@ const BMF = KoliBri.createTheme("bmf", {
13976
14291
  u+f0ec, u+f10a-f10b, u+f123, u+f13e, u+f148-f149, u+f14c, u+f156, u+f15e,
13977
14292
  u+f160-f161, u+f163, u+f175-f178, u+f195, u+f1f8, u+f219, u+f250, u+f252,
13978
14293
  u+f27a;
14294
+ }`,
14295
+ "KOL-SKIP-NAV": `kol-link-wc > a > kol-span-wc {
14296
+ border-radius: var(--a11y-min-size);
14297
+ border-style: solid;
14298
+ border-width: 2px;
14299
+ gap: 0.5rem;
14300
+ line-height: 1rem;
14301
+ padding: 8px 14px;
14302
+ background-color: var(--color-ocean);
14303
+ border-color: var(--color-ocean);
14304
+ color: var(--color-white);
14305
+ cursor: pointer;
13979
14306
  }`
13980
14307
  });
13981
14308
 
@@ -15773,6 +16100,145 @@ const DESYv1 = KoliBri.createTheme("desy-v1", {
15773
16100
  background: var(--color-primary);
15774
16101
  color: white;
15775
16102
  }`,
16103
+ "KOL-INPUT-DATE": `kol-input {
16104
+ display: grid;
16105
+ }
16106
+ kol-input label {
16107
+ order: 1;
16108
+ padding: 0.125rem 0 0.4rem;
16109
+ vertical-align: text-top;
16110
+ line-height: 1.2;
16111
+ }
16112
+ kol-input div.input {
16113
+ box-sizing: border-box;
16114
+ order: 2;
16115
+ background-color: white;
16116
+ border-radius: 0.3125rem;
16117
+ }
16118
+ kol-input kol-alert.error {
16119
+ margin-bottom: 0.4em;
16120
+ margin-top: 0.2em;
16121
+ order: 3;
16122
+ }
16123
+ input,
16124
+ select,
16125
+ textarea {
16126
+ font-family: var(--font-family);
16127
+ background-color: transparent;
16128
+ box-sizing: border-box;
16129
+ font-size: 1rem;
16130
+ display: inline-flex;
16131
+ border-color: var(--color-grey);
16132
+ border-width: 1px;
16133
+ border-style: solid;
16134
+ overflow: hidden;
16135
+ width: 100%;
16136
+ line-height: normal;
16137
+ padding: 0.4rem 8px;
16138
+ }
16139
+ input:hover,
16140
+ select:hover,
16141
+ textarea:hover {
16142
+ border-color: #2d6f9e;
16143
+ box-shadow: 0 0 0 1px #2d6f9e inset;
16144
+ }
16145
+ input:focus,
16146
+ select:focus,
16147
+ textarea:focus {
16148
+ border-color: var(--color-primary-20);
16149
+ box-shadow: inset 0 0 0 1px var(--color-primary-20);
16150
+ outline: none;
16151
+ }
16152
+ input,
16153
+ select:not([multiple]) {
16154
+ height: 2.75em;
16155
+ }
16156
+ input::placeholder {
16157
+ color: var(--color-grey);
16158
+ }
16159
+ input:hover {
16160
+ border-color: var(--color-midnight);
16161
+ }
16162
+ input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
16163
+ cursor: not-allowed;
16164
+ border-color: var(--border-default);
16165
+ }
16166
+ .required label > span::after {
16167
+ content: "*";
16168
+ padding-left: 0.125em;
16169
+ }
16170
+ .icons {
16171
+ display: flex;
16172
+ justify-content: space-between;
16173
+ height: 0;
16174
+ }
16175
+ .icons > * {
16176
+ margin: 0.75em;
16177
+ }
16178
+ .icon-left input,
16179
+ .icon-left select {
16180
+ padding-left: 2em;
16181
+ }
16182
+ .icon-right input,
16183
+ .icon-right select {
16184
+ padding-right: 2em;
16185
+ }
16186
+ kol-input.error input:focus,
16187
+ kol-input.error select:focus,
16188
+ kol-input.error textarea:focus {
16189
+ border-color: var(--color-warning);
16190
+ box-shadow: inset 0 0 0 1px var(--color-warning);
16191
+ }
16192
+ kol-input.error kol-alert.error {
16193
+ color: var(--color-warning);
16194
+ }
16195
+ kol-button-wc {
16196
+ position: relative;
16197
+ float: right;
16198
+ z-index: 1000;
16199
+ margin-top: -2.7em;
16200
+ }
16201
+ kol-button-wc button {
16202
+ border: 0;
16203
+ height: 2.7em;
16204
+ box-sizing: border-box;
16205
+ background-color: transparent;
16206
+ cursor: pointer;
16207
+ }
16208
+ kol-button-wc button:focus,
16209
+ kol-button-wc button:hover {
16210
+ background-color: var(--color-primary);
16211
+ color: var(--color-white);
16212
+ }
16213
+ .icon-right kol-button-wc {
16214
+ margin-right: 2.5em;
16215
+ }
16216
+ .disabled {
16217
+ opacity: 0.33;
16218
+ }
16219
+ select[multiple],
16220
+ textarea {
16221
+ overflow: auto;
16222
+ }
16223
+ textarea {
16224
+ display: block;
16225
+ }
16226
+ select option {
16227
+ margin: 1px 0;
16228
+ padding: 0.5em;
16229
+ border-radius: 0.25em;
16230
+ cursor: pointer;
16231
+ }
16232
+ select option:disabled {
16233
+ cursor: not-allowed;
16234
+ }
16235
+ option:active:not(:disabled),
16236
+ option:checked:not(:disabled),
16237
+ option:focus:not(:disabled),
16238
+ option:hover:not(:disabled) {
16239
+ background: var(--color-primary);
16240
+ color: white;
16241
+ }`,
15776
16242
  "KOL-INPUT-EMAIL": `kol-input {
15777
16243
  display: grid;
15778
16244
  }
@@ -16650,6 +17116,18 @@ const DESYv1 = KoliBri.createTheme("desy-v1", {
16650
17116
  background: white;
16651
17117
  left: unset;
16652
17118
  position: unset;
17119
+ }`,
17120
+ "KOL-SKIP-NAV": `kol-link-wc > a > kol-span-wc {
17121
+ border-radius: 2px;
17122
+ border-style: solid;
17123
+ border-width: 2px;
17124
+ gap: 0.5rem;
17125
+ line-height: 1rem;
17126
+ padding: 0.75rem 1rem;
17127
+ background-color: var(--color-primary);
17128
+ border-color: var(--color-primary-10);
17129
+ color: white;
17130
+ cursor: pointer;
16653
17131
  }`
16654
17132
  });
16655
17133
 
@@ -18461,6 +18939,145 @@ const DESYv2 = KoliBri.createTheme("desy-v2", {
18461
18939
  background: var(--color-primary);
18462
18940
  color: white;
18463
18941
  }`,
18942
+ "KOL-INPUT-DATE": `kol-input {
18943
+ display: grid;
18944
+ }
18945
+ kol-input label {
18946
+ order: 1;
18947
+ padding: 0.125rem 0 0.4rem;
18948
+ vertical-align: text-top;
18949
+ line-height: 1.2;
18950
+ }
18951
+ kol-input div.input {
18952
+ box-sizing: border-box;
18953
+ order: 2;
18954
+ background-color: white;
18955
+ border-radius: 0.3125rem;
18956
+ }
18957
+ kol-input kol-alert.error {
18958
+ margin-bottom: 0.4em;
18959
+ margin-top: 0.2em;
18960
+ order: 3;
18961
+ }
18962
+ input,
18963
+ select,
18964
+ textarea {
18965
+ font-family: var(--font-family);
18966
+ background-color: transparent;
18967
+ box-sizing: border-box;
18968
+ font-size: 1rem;
18969
+ display: inline-flex;
18970
+ border-color: var(--color-grey);
18971
+ border-width: 1px;
18972
+ border-style: solid;
18973
+ overflow: hidden;
18974
+ width: 100%;
18975
+ line-height: normal;
18976
+ padding: 0.4rem 8px;
18977
+ }
18978
+ input:hover,
18979
+ select:hover,
18980
+ textarea:hover {
18981
+ border-color: #2d6f9e;
18982
+ box-shadow: 0 0 0 1px #2d6f9e inset;
18983
+ }
18984
+ input:focus,
18985
+ select:focus,
18986
+ textarea:focus {
18987
+ border-color: var(--color-primary-20);
18988
+ box-shadow: inset 0 0 0 1px var(--color-primary-20);
18989
+ outline: none;
18990
+ }
18991
+ input,
18992
+ select:not([multiple]) {
18993
+ height: 2.75em;
18994
+ }
18995
+ input::placeholder {
18996
+ color: var(--color-grey);
18997
+ }
18998
+ input:hover {
18999
+ border-color: var(--color-midnight);
19000
+ }
19001
+ input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
19002
+ cursor: not-allowed;
19003
+ border-color: var(--border-default);
19004
+ }
19005
+ .required label > span::after {
19006
+ content: "*";
19007
+ padding-left: 0.125em;
19008
+ }
19009
+ .icons {
19010
+ display: flex;
19011
+ justify-content: space-between;
19012
+ height: 0;
19013
+ }
19014
+ .icons > * {
19015
+ margin: 0.75em;
19016
+ }
19017
+ .icon-left input,
19018
+ .icon-left select {
19019
+ padding-left: 2em;
19020
+ }
19021
+ .icon-right input,
19022
+ .icon-right select {
19023
+ padding-right: 2em;
19024
+ }
19025
+ kol-input.error input:focus,
19026
+ kol-input.error select:focus,
19027
+ kol-input.error textarea:focus {
19028
+ border-color: var(--color-warning);
19029
+ box-shadow: inset 0 0 0 1px var(--color-warning);
19030
+ }
19031
+ kol-input.error kol-alert.error {
19032
+ color: var(--color-warning);
19033
+ }
19034
+ kol-button-wc {
19035
+ position: relative;
19036
+ float: right;
19037
+ z-index: 1000;
19038
+ margin-top: -2.7em;
19039
+ }
19040
+ kol-button-wc button {
19041
+ border: 0;
19042
+ height: 2.7em;
19043
+ box-sizing: border-box;
19044
+ background-color: transparent;
19045
+ cursor: pointer;
19046
+ }
19047
+ kol-button-wc button:focus,
19048
+ kol-button-wc button:hover {
19049
+ background-color: var(--color-primary);
19050
+ color: var(--color-white);
19051
+ }
19052
+ .icon-right kol-button-wc {
19053
+ margin-right: 2.5em;
19054
+ }
19055
+ .disabled {
19056
+ opacity: 0.33;
19057
+ }
19058
+ select[multiple],
19059
+ textarea {
19060
+ overflow: auto;
19061
+ }
19062
+ textarea {
19063
+ display: block;
19064
+ }
19065
+ select option {
19066
+ margin: 1px 0;
19067
+ padding: 0.5em;
19068
+ border-radius: 0.25em;
19069
+ cursor: pointer;
19070
+ }
19071
+ select option:disabled {
19072
+ cursor: not-allowed;
19073
+ }
19074
+ option:active:not(:disabled),
19075
+ option:checked:not(:disabled),
19076
+ option:focus:not(:disabled),
19077
+ option:hover:not(:disabled) {
19078
+ background: var(--color-primary);
19079
+ color: white;
19080
+ }`,
18464
19081
  "KOL-INPUT-EMAIL": `kol-input {
18465
19082
  display: grid;
18466
19083
  }
@@ -19338,6 +19955,18 @@ const DESYv2 = KoliBri.createTheme("desy-v2", {
19338
19955
  background: white;
19339
19956
  left: unset;
19340
19957
  position: unset;
19958
+ }`,
19959
+ "KOL-SKIP-NAV": `kol-link-wc > a > kol-span-wc {
19960
+ border-radius: 2px;
19961
+ border-style: solid;
19962
+ border-width: 2px;
19963
+ gap: 0.5rem;
19964
+ line-height: 1rem;
19965
+ padding: 0.75rem 1rem;
19966
+ background-color: var(--color-primary);
19967
+ border-color: var(--color-primary-10);
19968
+ color: white;
19969
+ cursor: pointer;
19341
19970
  }`
19342
19971
  });
19343
19972
 
@@ -20350,6 +20979,58 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
20350
20979
  .error .input {
20351
20980
  border-color: var(--color-red);
20352
20981
  }`,
20982
+ "KOL-INPUT-DATE": `kol-input {
20983
+ color: var(--color-grey);
20984
+ gap: var(--spacing-xs);
20985
+ }
20986
+ input,
20987
+ select,
20988
+ textarea {
20989
+ border: none;
20990
+ margin: 1px 0.5em;
20991
+ outline: none;
20992
+ }
20993
+ input,
20994
+ select:not([multiple]) {
20995
+ height: 40px !important;
20996
+ min-height: 40px !important;
20997
+ }
20998
+ label {
20999
+ font-weight: var(--font-weight-bold);
21000
+ order: 1;
21001
+ }
21002
+ .hint {
21003
+ font-size: 0.875rem;
21004
+ order: 2;
21005
+ }
21006
+ kol-alert {
21007
+ color: var(--color-red);
21008
+ font-size: 0.875em;
21009
+ margin-left: calc(-1 * var(--spacing-2xs));
21010
+ order: 3;
21011
+ }
21012
+ .input {
21013
+ min-height: 44px !important;
21014
+ border: 1px solid var(--color-grey-75);
21015
+ color: var(--color-grey);
21016
+ order: 4;
21017
+ align-items: center;
21018
+ }
21019
+ input::placeholder,
21020
+ textarea::placeholder {
21021
+ color: var(--color-grey-50);
21022
+ }
21023
+ .input:focus-within {
21024
+ box-shadow: inset 1px 1px var(--color-blue), inset -1px -1px var(--color-blue);
21025
+ outline: none;
21026
+ }
21027
+ .input:focus-within,
21028
+ .input:hover {
21029
+ border-color: var(--color-blue) !important;
21030
+ }
21031
+ .error .input {
21032
+ border-color: var(--color-red);
21033
+ }`,
20353
21034
  "KOL-INPUT-EMAIL": `kol-input {
20354
21035
  color: var(--color-grey);
20355
21036
  gap: var(--spacing-xs);
@@ -20710,6 +21391,19 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
20710
21391
  }
20711
21392
  .expanded > div > .expand-button kol-icon::part(icon)::before {
20712
21393
  content: "\\eab4";
21394
+ }`,
21395
+ "KOL-SKIP-NAV": `kol-link-wc > a > kol-span-wc {
21396
+ border-radius: 0;
21397
+ border-style: solid;
21398
+ border-width: 2px;
21399
+ font-weight: var(--font-weight-bold);
21400
+ gap: 0.5rem;
21401
+ line-height: 1rem;
21402
+ padding: 0.25em 0.75em;
21403
+ background-color: var(--color-blue);
21404
+ border-color: var(--color-blue);
21405
+ color: var(--color-white);
21406
+ cursor: pointer;
20713
21407
  }`
20714
21408
  });
20715
21409
 
@@ -21699,6 +22393,58 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
21699
22393
  .error .input {
21700
22394
  border-color: var(--color-red);
21701
22395
  }`,
22396
+ "KOL-INPUT-DATE": `kol-input {
22397
+ color: var(--color-grey);
22398
+ gap: var(--spacing-xs);
22399
+ }
22400
+ input,
22401
+ select,
22402
+ textarea {
22403
+ border: none;
22404
+ margin: 1px 0.5em;
22405
+ outline: none;
22406
+ }
22407
+ input,
22408
+ select:not([multiple]) {
22409
+ height: 40px !important;
22410
+ min-height: 40px !important;
22411
+ }
22412
+ label {
22413
+ font-weight: var(--font-weight-bold);
22414
+ order: 1;
22415
+ }
22416
+ .hint {
22417
+ font-size: 0.875rem;
22418
+ order: 2;
22419
+ }
22420
+ kol-alert {
22421
+ color: var(--color-red);
22422
+ font-size: 0.875em;
22423
+ margin-left: calc(-1 * var(--spacing-2xs));
22424
+ order: 3;
22425
+ }
22426
+ .input {
22427
+ min-height: 44px !important;
22428
+ border: 1px solid var(--color-grey-75);
22429
+ color: var(--color-grey);
22430
+ order: 4;
22431
+ align-items: center;
22432
+ }
22433
+ input::placeholder,
22434
+ textarea::placeholder {
22435
+ color: var(--color-grey-50);
22436
+ }
22437
+ .input:focus-within {
22438
+ box-shadow: inset 1px 1px var(--color-blue), inset -1px -1px var(--color-blue);
22439
+ outline: none;
22440
+ }
22441
+ .input:focus-within,
22442
+ .input:hover {
22443
+ border-color: var(--color-blue) !important;
22444
+ }
22445
+ .error .input {
22446
+ border-color: var(--color-red);
22447
+ }`,
21702
22448
  "KOL-INPUT-PASSWORD": `kol-input {
21703
22449
  color: var(--color-grey);
21704
22450
  gap: var(--spacing-xs);
@@ -22123,6 +22869,15 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
22123
22869
  .hint {
22124
22870
  font-size: 0.875rem;
22125
22871
  order: 4;
22872
+ }`,
22873
+ "KOL-SKIP-NAV": `kol-link-wc > a > kol-span-wc {
22874
+ border-radius: 4px;
22875
+ gap: 0.5rem;
22876
+ line-height: 1rem;
22877
+ padding: 0.75rem;
22878
+ background-color: #0e47cb;
22879
+ color: #fff;
22880
+ cursor: pointer;
22126
22881
  }`
22127
22882
  });
22128
22883
 
@@ -22656,6 +23411,55 @@ const ITZBund = KoliBri.createTheme("itzbund", {
22656
23411
  input::placeholder {
22657
23412
  font-style: italic;
22658
23413
  }`,
23414
+ "KOL-INPUT-DATE": `input:hover,
23415
+ input:focus {
23416
+ border-color: var(--border-color) !important;
23417
+ border-radius: none !important;
23418
+ outline-color: var(--color-achat) !important;
23419
+ outline-offset: 0;
23420
+ outline-style: solid;
23421
+ outline-width: 1px;
23422
+ }
23423
+ label {
23424
+ color: var(--color-anthrazit);
23425
+ font-size: 14px;
23426
+ line-height: 20px;
23427
+ gap: 8px;
23428
+ width: 100%;
23429
+ font-weight: bold;
23430
+ }
23431
+ input {
23432
+ cursor: pointer;
23433
+ width: 100%;
23434
+ color: var(--color-anthrazit);
23435
+ border-width: 1px;
23436
+ border-style: solid;
23437
+ border-color: var(--color-petrol);
23438
+ border-radius: 0;
23439
+ background-color: #e8edf2 !important;
23440
+ overflow: hidden;
23441
+ line-height: 24px;
23442
+ font-size: 16px;
23443
+ }
23444
+ .error input {
23445
+ background-color: var(--color-rotton-20) !important;
23446
+ border-color: var(--color-rotton) !important;
23447
+ }
23448
+ input:disabled {
23449
+ background-color: var(--color-input-bg-default);
23450
+ border-color: var(--border-color);
23451
+ cursor: not-allowed;
23452
+ }
23453
+ kol-alert {
23454
+ margin-top: calc(2 * var(--spacing));
23455
+ display: block;
23456
+ }
23457
+ .kol-required span::after {
23458
+ content: "*";
23459
+ }
23460
+ input::placeholder {
23461
+ font-style: italic;
23462
+ }`,
22659
23463
  "KOL-INPUT-EMAIL": `input:hover,
22660
23464
  input:focus {
22661
23465
  border-color: var(--border-color) !important;
@@ -23783,6 +24587,17 @@ const ITZBund = KoliBri.createTheme("itzbund", {
23783
24587
  :host > div.tabs-align-top kol-button-group-wc div {
23784
24588
  display: flex;
23785
24589
  flex-wrap: wrap;
24590
+ }`,
24591
+ "KOL-SKIP-NAV": `kol-link-wc > a > kol-span-wc {
24592
+ border-radius: 2rem;
24593
+ border-style: solid;
24594
+ gap: 0.5rem;
24595
+ line-height: 1rem;
24596
+ padding: 0 1rem;
24597
+ background-color: var(--color-petrol);
24598
+ border-color: var(--color-petrol);
24599
+ color: var(--color-weiss);
24600
+ cursor: pointer;
23786
24601
  }`
23787
24602
  });
23788
24603
 
@@ -24282,6 +25097,88 @@ const MAPZ = KoliBri.createTheme("mapz", {
24282
25097
  background-color: var(--kolibri-color-primary);
24283
25098
  color: white;
24284
25099
  }`,
25100
+ "KOL-INPUT-DATE": `input,
25101
+ select,
25102
+ textarea {
25103
+ border: none;
25104
+ }
25105
+ input[type="color"] {
25106
+ border: none;
25107
+ min-height: 40px !important;
25108
+ }
25109
+ input[type="color"],
25110
+ input[type="file"] {
25111
+ background-color: transparent;
25112
+ }
25113
+ kol-input {
25114
+ gap: var(--spacing);
25115
+ }
25116
+ kol-input > label {
25117
+ order: 1;
25118
+ color: var(--default-letter);
25119
+ }
25120
+ kol-input > .input {
25121
+ border-color: var(--kolibri-border-color);
25122
+ border-radius: 0.25rem;
25123
+ border-style: solid;
25124
+ border-width: 2px;
25125
+ order: 2;
25126
+ }
25127
+ kol-input:hover > .input {
25128
+ border-color: var(--kolibri-color-secondary);
25129
+ }
25130
+ kol-input > .input > kol-icon:first-child {
25131
+ margin-left: 0.75em;
25132
+ }
25133
+ kol-input > .input > kol-icon:last-child {
25134
+ margin-right: 0.75em;
25135
+ }
25136
+ kol-input > .error {
25137
+ order: 3;
25138
+ }
25139
+ kol-input > .hint {
25140
+ order: 4;
25141
+ font-size: 0.875em;
25142
+ }
25143
+ input,
25144
+ select,
25145
+ textarea {
25146
+ color: var(--default-letter);
25147
+ padding: 0.5em 0.75em;
25148
+ }
25149
+ input:not([type="range"]),
25150
+ select:not([multiple]) {
25151
+ height: 2.75em;
25152
+ }
25153
+ textarea {
25154
+ display: inherit;
25155
+ }
25156
+ input::placeholder {
25157
+ color: var(--default-border-hover);
25158
+ }
25159
+ input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
25160
+ cursor: not-allowed;
25161
+ }
25162
+ select[multiple],
25163
+ textarea {
25164
+ overflow: auto;
25165
+ }
25166
+ select option {
25167
+ margin: 1px 0;
25168
+ padding: 0.5em;
25169
+ border-radius: 0.25em;
25170
+ cursor: pointer;
25171
+ }
25172
+ select option:disabled {
25173
+ cursor: not-allowed;
25174
+ }
25175
+ option:active:not(:disabled),
25176
+ option:checked:not(:disabled),
25177
+ option:focus:not(:disabled),
25178
+ option:hover:not(:disabled) {
25179
+ background-color: var(--kolibri-color-primary);
25180
+ color: white;
25181
+ }`,
24285
25182
  "KOL-INPUT-EMAIL": `input,
24286
25183
  select,
24287
25184
  textarea {
@@ -41282,6 +42179,18 @@ const MAPZ = KoliBri.createTheme("mapz", {
41282
42179
  option:hover:not(:disabled) {
41283
42180
  background-color: var(--kolibri-color-primary);
41284
42181
  color: white;
42182
+ }`,
42183
+ "KOL-SKIP-NAV": `kol-link-wc > a > kol-span-wc {
42184
+ border-radius: var(--kolibri-border-radius);
42185
+ border-style: solid;
42186
+ border-width: 2px;
42187
+ gap: 0.5rem;
42188
+ line-height: 1rem;
42189
+ padding: 0.75rem 1rem;
42190
+ background-color: var(--kolibri-color-primary);
42191
+ border-color: var(--kolibri-border-color);
42192
+ color: white;
42193
+ cursor: pointer;
41285
42194
  }`
41286
42195
  });
41287
42196
 
@@ -41298,7 +42207,7 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
41298
42207
  --color-akzent-dark: #da793c;
41299
42208
  --color-akzent-light: #f5ba6c;
41300
42209
  --color-neutral: #e3e3e3;
41301
- --color-neutral-dark: #333;
42210
+ --color-neutral-dark: #646464;
41302
42211
  --color-neutral-light: #f7f7f7;
41303
42212
  --color-rot: #ce3033;
41304
42213
  --color-gelb: #f6cd35;
@@ -41328,7 +42237,6 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
41328
42237
  summary:focus,
41329
42238
  kol-input:not(.checkbox, .radio) .input:focus-within,
41330
42239
  kol-input:is(.checkbox, .radio) input:focus {
41331
- border-radius: var(--border-radius);
41332
42240
  outline-color: var(--color-blau-dark);
41333
42241
  outline-offset: 0.125rem;
41334
42242
  outline-style: solid;
@@ -41582,9 +42490,9 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
41582
42490
  }
41583
42491
  }`,
41584
42492
  "KOL-TABLE": `caption {
41585
- background-color: var(--color-neutral);
41586
42493
  caption-side: TOP;
41587
- font-size: 1.5rem; /* 1.75rem */ /* line-height: 3rem; */
42494
+ font-size: 1.1rem; /* 1.75rem */ /* line-height: 3rem; */
42495
+ font-weight: var(--font-weight-bold);
41588
42496
  margin-bottom: 0.25rem;
41589
42497
  padding: 0.75rem;
41590
42498
  text-align: left;
@@ -41596,6 +42504,9 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
41596
42504
  border-width: 0;
41597
42505
  border-top-width: 1px;
41598
42506
  }
42507
+ th {
42508
+ background-color: var(--color-neutral);
42509
+ }
41599
42510
  td,
41600
42511
  th {
41601
42512
  color: var(--color-neutral-dark);
@@ -41605,8 +42516,19 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
41605
42516
  border-bottom-width: 1px;
41606
42517
  padding: 0.5rem;
41607
42518
  }
41608
- tbody tr:nth-child(odd) {
41609
- background-color: var(--color-grau-10);
42519
+ th[data-sort] kol-button::part(icon)::before {
42520
+ font-family: "FontAwesome";
42521
+ color: var(--color-neutral-dark);
42522
+ }
42523
+ th[data-sort="sort-NOS"] kol-button::part(icon)::before,
42524
+ th[data-sort="sort-undefined"] kol-button::part(icon)::before {
42525
+ content: "\f0dc";
42526
+ }
42527
+ th[data-sort="sort-ASC"] kol-button::part(icon)::before {
42528
+ content: "\f0de";
42529
+ }
42530
+ th[data-sort="sort-DESC"] kol-button::part(icon)::before {
42531
+ content: "\f0dd";
41610
42532
  }`,
41611
42533
  "KOL-ACCORDION": `:host > div {
41612
42534
  border-color: var(--border-color);
@@ -42063,9 +42985,10 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
42063
42985
  }
42064
42986
  label {
42065
42987
  cursor: pointer;
42988
+ padding-left: 0.75rem;
42066
42989
  }
42067
42990
  kol-input:hover label,
42068
- kol-input:has(input:focus, select:focus, textarea:focus, ) label {
42991
+ kol-input:focus-within label {
42069
42992
  text-decoration: underline;
42070
42993
  }
42071
42994
  .required label > span::after {
@@ -42093,7 +43016,6 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
42093
43016
  }
42094
43017
  kol-input > label {
42095
43018
  order: 2;
42096
- padding-left: calc(2 * var(--spacing));
42097
43019
  }
42098
43020
  kol-input > kol-alert.error {
42099
43021
  order: 3;
@@ -42201,32 +43123,28 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
42201
43123
  :host {
42202
43124
  --spacing: 0.25rem;
42203
43125
  }
43126
+ legend {
43127
+ font-weight: var(--font-weight-bold);
43128
+ margin-bottom: 0.5rem;
43129
+ }
42204
43130
  input {
42205
43131
  border-color: var(--color-neutral-dark);
42206
43132
  border-width: 2px;
42207
43133
  border-style: solid;
42208
43134
  }
42209
- label {
42210
- cursor: pointer;
42211
- }
42212
43135
  kol-input:has(input:disabled) input,
42213
43136
  kol-input:has(input:disabled) label {
42214
43137
  cursor: not-allowed !important;
42215
43138
  opacity: 0.5;
42216
43139
  }
42217
- kol-input:hover label,
42218
- kol-input:has(input:focus, select:focus, textarea:focus, ) label {
43140
+ kol-input:hover:has(input:not(:disabled)) label,
43141
+ kol-input:focus-within {
42219
43142
  text-decoration: underline;
42220
43143
  }
42221
43144
  .required legend > span::after {
42222
43145
  content: "*";
42223
43146
  padding-left: 0.125em;
42224
43147
  }
42225
- label {
42226
- display: grid;
42227
- gap: 8px;
42228
- width: 100%;
42229
- }
42230
43148
  input {
42231
43149
  width: 100%;
42232
43150
  border-color: var(--color-neutral-dark);
@@ -42242,27 +43160,21 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
42242
43160
  margin-bottom: 0.4em;
42243
43161
  } /* RADIO */
42244
43162
  fieldset {
42245
- border: 0px;
42246
- margin: 0px;
42247
- padding: 0px;
42248
- display: grid;
42249
- gap: 0.25em;
42250
- }
42251
- fieldset div {
43163
+ border: 0;
43164
+ margin: 0;
43165
+ padding: 1.5rem;
42252
43166
  display: flex;
42253
- flex-direction: row;
42254
- margin-top: 0.125em;
42255
- margin-bottom: 0.125em;
42256
- align-items: center;
42257
- position: relative;
43167
+ flex-direction: column;
42258
43168
  }
42259
- fieldset div label {
43169
+ fieldset div.input {
42260
43170
  display: flex;
42261
- padding-left: 0.25em;
42262
- width: 100%;
42263
43171
  }
42264
- fieldset div label span {
42265
- margin-top: 0.125em;
43172
+ fieldset div.input > div {
43173
+ margin: auto 0;
43174
+ display: flex;
43175
+ flex-direction: row;
43176
+ align-items: center;
43177
+ gap: 0.75rem;
42266
43178
  }
42267
43179
  fieldset div input[type="radio"] {
42268
43180
  appearance: none;
@@ -42271,6 +43183,7 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
42271
43183
  height: calc(6 * var(--spacing));
42272
43184
  min-width: calc(6 * var(--spacing));
42273
43185
  width: calc(6 * var(--spacing));
43186
+ border-color: var(--color-neutral-dark);
42274
43187
  }
42275
43188
  fieldset div input[type="radio"]:checked:before {
42276
43189
  box-shadow: 0 0 0.1rem black;
@@ -42291,7 +43204,7 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
42291
43204
  opacity: 0.33;
42292
43205
  }
42293
43206
  fieldset.horizontal {
42294
- display: flex;
43207
+ flex-direction: row;
42295
43208
  flex-wrap: wrap;
42296
43209
  gap: 0.5rem 1rem;
42297
43210
  }
@@ -42483,6 +43396,52 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
42483
43396
  kol-input > kol-alert.error {
42484
43397
  order: 3;
42485
43398
  }`,
43399
+ "KOL-INPUT-DATE": `kol-input {
43400
+ gap: var(--gap);
43401
+ }
43402
+ kol-input .input {
43403
+ border-color: var(--color-grau-30);
43404
+ border-width: 2px;
43405
+ border-style: solid;
43406
+ padding: 0px 0.75em;
43407
+ gap: var(--gap);
43408
+ overflow: hidden;
43409
+ }
43410
+ kol-input .input:focus-within,
43411
+ kol-input .input:hover {
43412
+ border-color: var(--color-grau-60);
43413
+ }
43414
+ kol-input:not(.select, .textarea) .input {
43415
+ height: calc(var(--a11y-min-size) - 4px);
43416
+ }
43417
+ kol-input:not(.range) .input :is(input, select, textarea) {
43418
+ background-color: white;
43419
+ border: 0;
43420
+ }
43421
+ kol-input .input input[type="file"] {
43422
+ padding-top: calc(0.5em + 2px);
43423
+ }
43424
+ kol-input > label {
43425
+ font-weight: var(--font-weight-bold);
43426
+ order: 1;
43427
+ margin-bottom: 0.25rem;
43428
+ }
43429
+ kol-input > label > span {
43430
+ color: var(--default-letter);
43431
+ }
43432
+ kol-input > div.input {
43433
+ border-radius: 0.25rem;
43434
+ order: 2;
43435
+ }
43436
+ kol-input > span.hint {
43437
+ color: var(--color-grau-60);
43438
+ font-style: italic;
43439
+ order: 4;
43440
+ font-size: 0.8rem;
43441
+ }
43442
+ kol-input > kol-alert.error {
43443
+ order: 3;
43444
+ }`,
42486
43445
  "KOL-INPUT-TEXT": `kol-input {
42487
43446
  gap: var(--gap);
42488
43447
  }
@@ -49838,6 +50797,18 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
49838
50797
  u+f0ec, u+f10a-f10b, u+f123, u+f13e, u+f148-f149, u+f14c, u+f156, u+f15e,
49839
50798
  u+f160-f161, u+f163, u+f175-f178, u+f195, u+f1f8, u+f219, u+f250, u+f252,
49840
50799
  u+f27a;
50800
+ }`,
50801
+ "KOL-SKIP-NAV": `kol-link-wc > a > kol-span-wc {
50802
+ border-radius: var(--border-radius);
50803
+ border-style: solid;
50804
+ border-width: 2px;
50805
+ gap: 0.5rem;
50806
+ line-height: 1rem;
50807
+ padding: 0.75rem 1rem;
50808
+ background-color: var(--color-blau);
50809
+ border-color: var(--color-blau-dark);
50810
+ color: white;
50811
+ cursor: pointer;
49841
50812
  }`
49842
50813
  });
49843
50814