@public-ui/themes 1.7.0-rc.13 → 1.7.0-rc.15

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 CHANGED
@@ -355,8 +355,8 @@ var TagEnum = /* @__PURE__ */ ((TagEnum2) => {
355
355
  TagEnum2[TagEnum2["input-checkbox"] = 17] = "input-checkbox";
356
356
  TagEnum2[TagEnum2["input-color"] = 18] = "input-color";
357
357
  TagEnum2[TagEnum2["input-date"] = 19] = "input-date";
358
- TagEnum2[TagEnum2["input-file"] = 20] = "input-file";
359
- TagEnum2[TagEnum2["input-email"] = 21] = "input-email";
358
+ TagEnum2[TagEnum2["input-email"] = 20] = "input-email";
359
+ TagEnum2[TagEnum2["input-file"] = 21] = "input-file";
360
360
  TagEnum2[TagEnum2["input-number"] = 22] = "input-number";
361
361
  TagEnum2[TagEnum2["input-password"] = 23] = "input-password";
362
362
  TagEnum2[TagEnum2["input-radio"] = 24] = "input-radio";
@@ -374,13 +374,15 @@ var TagEnum = /* @__PURE__ */ ((TagEnum2) => {
374
374
  TagEnum2[TagEnum2["separator"] = 36] = "separator";
375
375
  TagEnum2[TagEnum2["skip-nav"] = 37] = "skip-nav";
376
376
  TagEnum2[TagEnum2["spin"] = 38] = "spin";
377
- TagEnum2[TagEnum2["symbol"] = 39] = "symbol";
378
- TagEnum2[TagEnum2["table"] = 40] = "table";
379
- TagEnum2[TagEnum2["tabs"] = 41] = "tabs";
380
- TagEnum2[TagEnum2["textarea"] = 42] = "textarea";
381
- TagEnum2[TagEnum2["toast"] = 43] = "toast";
382
- TagEnum2[TagEnum2["toolbar"] = 44] = "toolbar";
383
- TagEnum2[TagEnum2["tooltip"] = 45] = "tooltip";
377
+ TagEnum2[TagEnum2["split-button"] = 39] = "split-button";
378
+ TagEnum2[TagEnum2["symbol"] = 40] = "symbol";
379
+ TagEnum2[TagEnum2["table"] = 41] = "table";
380
+ TagEnum2[TagEnum2["tabs"] = 42] = "tabs";
381
+ TagEnum2[TagEnum2["textarea"] = 43] = "textarea";
382
+ TagEnum2[TagEnum2["toast"] = 44] = "toast";
383
+ TagEnum2[TagEnum2["toast-container"] = 45] = "toast-container";
384
+ TagEnum2[TagEnum2["toolbar"] = 46] = "toolbar";
385
+ TagEnum2[TagEnum2["tooltip"] = 47] = "tooltip";
384
386
  return TagEnum2;
385
387
  })(TagEnum || {});
386
388
 
@@ -6109,7 +6111,7 @@ const BZSt = KoliBri.createTheme("bzst", {
6109
6111
  --colorTextActiveBg: var(--color-white); /* signal */
6110
6112
  --colorSignal: var(--color-tropic-sea);
6111
6113
  --colorSignalFront: var(
6112
- --color-white
6114
+ --color-white
6113
6115
  ); /* colorSignalFocus hat keine Frontfarbe */
6114
6116
  --colorSignalFocus: var(--color-heroic-blue);
6115
6117
  --colorSignalSuccess: var(--color-green);
@@ -6124,8 +6126,8 @@ const BZSt = KoliBri.createTheme("bzst", {
6124
6126
  :host {
6125
6127
  /* token */
6126
6128
  --font-family: "BundesSans Web", system-ui, -apple-system, BlinkMacSystemFont,
6127
- "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
6128
- sans-serif; /* Basis-Gr\xF6\xDFe: html, rem */
6129
+ "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
6130
+ sans-serif; /* Basis-Gr\xF6\xDFe: html, rem */
6129
6131
  --font-size: 100%;
6130
6132
  --line-height: 1.6875rem; /* template */ /* h1 */
6131
6133
  --headline1FontSize: 2.5rem;
@@ -6248,10 +6250,10 @@ const BZSt = KoliBri.createTheme("bzst", {
6248
6250
  }
6249
6251
  @keyframes spin {
6250
6252
  0% {
6251
- transform: rotate(0deg);
6253
+ transform: rotate(0deg);
6252
6254
  }
6253
6255
  100% {
6254
- transform: rotate(360deg);
6256
+ transform: rotate(360deg);
6255
6257
  }
6256
6258
  }
6257
6259
  kol-tooltip .area {
@@ -6939,6 +6941,9 @@ const BZSt = KoliBri.createTheme("bzst", {
6939
6941
  "KOL-TEXTAREA": `kol-input {
6940
6942
  gap: 0.4em;
6941
6943
  }
6944
+ kol-input .error {
6945
+ order: 3;
6946
+ }
6942
6947
  kol-input label {
6943
6948
  font-weight: 700;
6944
6949
  order: 1;
@@ -6946,14 +6951,8 @@ const BZSt = KoliBri.createTheme("bzst", {
6946
6951
  kol-input .input {
6947
6952
  order: 2;
6948
6953
  }
6949
- kol-input .counter {
6950
- order: 3;
6951
- }
6952
- kol-input .error {
6953
- order: 4;
6954
- }
6955
6954
  kol-input .hint {
6956
- order: 5;
6955
+ order: 4;
6957
6956
  font-size: 0.875em;
6958
6957
  font-style: italic;
6959
6958
  }
@@ -7240,6 +7239,9 @@ const BZSt = KoliBri.createTheme("bzst", {
7240
7239
  }
7241
7240
  .icon-only {
7242
7241
  padding-bottom: 0.2rem;
7242
+ }
7243
+ :is(a) kol-span-wc > span {
7244
+ gap: var(--gapSmallest);
7243
7245
  }`,
7244
7246
  "KOL-DETAILS": `details {
7245
7247
  display: grid;
@@ -7302,26 +7304,26 @@ const BZSt = KoliBri.createTheme("bzst", {
7302
7304
  }
7303
7305
  @keyframes spin1 {
7304
7306
  0% {
7305
- transform: scale(0);
7307
+ transform: scale(0);
7306
7308
  }
7307
7309
  100% {
7308
- transform: scale(1);
7310
+ transform: scale(1);
7309
7311
  }
7310
7312
  }
7311
7313
  @keyframes spin2 {
7312
7314
  0% {
7313
- transform: translate(0px, 0px);
7315
+ transform: translate(0px, 0px);
7314
7316
  }
7315
7317
  100% {
7316
- transform: translate(1rem, 0px);
7318
+ transform: translate(1rem, 0px);
7317
7319
  }
7318
7320
  }
7319
7321
  @keyframes spin3 {
7320
7322
  0% {
7321
- transform: scale(1);
7323
+ transform: scale(1);
7322
7324
  }
7323
7325
  100% {
7324
- transform: scale(0);
7326
+ transform: scale(0);
7325
7327
  }
7326
7328
  }`,
7327
7329
  "KOL-PROGRESS": `:host progress,
@@ -7548,21 +7550,21 @@ const BZSt = KoliBri.createTheme("bzst", {
7548
7550
  font-weight: 900;
7549
7551
  color: var(--color-midnight);
7550
7552
  }
7551
- :host > div.open > kol-heading-wc button kol-icon::part(icon)::before {
7552
- content: "\\f068";
7553
- }
7554
- :host > div.close > kol-heading-wc button kol-icon::part(icon)::before {
7553
+ .accordion > kol-heading-wc button kol-icon::part(icon)::before {
7555
7554
  content: "\\2b";
7556
7555
  }
7557
- :host > div {
7556
+ .accordion.open > kol-heading-wc button kol-icon::part(icon)::before {
7557
+ content: "\\f068";
7558
+ }
7559
+ .accordion {
7558
7560
  width: 100%;
7559
7561
  height: 100%;
7560
7562
  display: grid;
7561
7563
  }
7562
- :host > div[part*="open"] div[part="header"] {
7564
+ .accordion[part*="open"] div[part="header"] {
7563
7565
  padding-left: 2em;
7564
7566
  }
7565
- :host > div[part*="open"] div[part="content"] {
7567
+ .accordion[part*="open"] div[part="content"] {
7566
7568
  padding-top: 1rem;
7567
7569
  }
7568
7570
  button {
@@ -7570,12 +7572,12 @@ const BZSt = KoliBri.createTheme("bzst", {
7570
7572
  font-size: inherit;
7571
7573
  line-height: inherit;
7572
7574
  }
7573
- :host > div {
7575
+ .accordion {
7574
7576
  background: var(--color-white);
7575
7577
  }
7576
- :host > div[part*="open"] {
7578
+ .accordion[part*="open"] {
7577
7579
  padding-bottom: 1em;
7578
- } /* :host > div > [part="header"] {height: 0;} */
7580
+ } /* .accordion > [part="header"] {height: 0;} */
7579
7581
  h1,
7580
7582
  h2,
7581
7583
  h3,
@@ -8207,41 +8209,31 @@ const BZSt = KoliBri.createTheme("bzst", {
8207
8209
  border-radius: 0.25rem 0 0 0.25rem;
8208
8210
  }`,
8209
8211
  "KOL-PAGINATION": `:host {
8210
- display: grid;
8212
+ align-items: center;
8213
+ display: flex;
8211
8214
  gap: 1rem;
8212
8215
  }
8213
- :host > div {
8216
+ .navigation-list {
8217
+ align-items: center;
8214
8218
  display: inline-flex;
8215
8219
  flex-wrap: wrap;
8216
- align-items: center;
8217
- gap: 0.5em;
8220
+ gap: 0.5rem;
8221
+ justify-content: center;
8222
+ margin: 0;
8223
+ padding: 0;
8218
8224
  }
8219
- :host .selected button {
8220
- min-width: 44px;
8221
- min-height: 44px;
8222
- display: grid;
8223
- line-height: 1.5;
8224
- font-family: var(--textFont);
8225
+ .navigation-list > li {
8226
+ min-width: var(--a11y-min-size);
8227
+ text-align: center;
8228
+ }
8229
+ .selected button {
8225
8230
  cursor: not-allowed;
8226
8231
  font-weight: 700;
8227
- padding: 10px 12px;
8228
8232
  border-radius: 1.5em;
8229
8233
  border: none;
8230
- font-size: var(--textFontSize);
8231
- font-style: normal;
8232
- text-align: center;
8233
- text-transform: uppercase;
8234
- width: inherit;
8235
8234
  transition-duration: 0.5s;
8236
8235
  transition-property: background-color, color, border-color;
8237
8236
  color: var(--color-midnight);
8238
- background-color: var(--color-ice);
8239
- border-color: var(--color-ice);
8240
- }
8241
- :host > div > span {
8242
- align-self: flex-end;
8243
- padding-bottom: 0.5rem;
8244
- color: var(--color-midnight);
8245
8237
  }
8246
8238
  kol-button::part(icon)::before {
8247
8239
  font-family: "Font Awesome 6 Free";
@@ -8589,6 +8581,9 @@ const BZSt = KoliBri.createTheme("bzst", {
8589
8581
  .fa-chevron-right::before {
8590
8582
  content: "\\f054";
8591
8583
  }
8584
+ .fa-download::before {
8585
+ content: "\\f019";
8586
+ }
8592
8587
  fa-exclamation-triangle::before {
8593
8588
  content: "\\f071";
8594
8589
  }
@@ -8629,7 +8624,7 @@ const BZSt = KoliBri.createTheme("bzst", {
8629
8624
  font-weight: 400;
8630
8625
  font-display: block;
8631
8626
  src: url("../webfonts/fa-regular-400.woff2") format("woff2"),
8632
- url("../webfonts/fa-regular-400.ttf") format("truetype");
8627
+ url("../webfonts/fa-regular-400.ttf") format("truetype");
8633
8628
  }
8634
8629
  .far,
8635
8630
  .fa-regular {
@@ -8646,7 +8641,7 @@ const BZSt = KoliBri.createTheme("bzst", {
8646
8641
  font-weight: 900;
8647
8642
  font-display: block;
8648
8643
  src: url("../webfonts/fa-solid-900.woff2") format("woff2"),
8649
- url("../webfonts/fa-solid-900.ttf") format("truetype");
8644
+ url("../webfonts/fa-solid-900.ttf") format("truetype");
8650
8645
  }
8651
8646
  .fas,
8652
8647
  .fa-solid {
@@ -8658,59 +8653,59 @@ const BZSt = KoliBri.createTheme("bzst", {
8658
8653
  font-display: block;
8659
8654
  font-weight: 400;
8660
8655
  src: url("../webfonts/fa-brands-400.woff2") format("woff2"),
8661
- url("../webfonts/fa-brands-400.ttf") format("truetype");
8656
+ url("../webfonts/fa-brands-400.ttf") format("truetype");
8662
8657
  }
8663
8658
  @font-face {
8664
8659
  font-family: "Font Awesome 5 Free";
8665
8660
  font-display: block;
8666
8661
  font-weight: 900;
8667
8662
  src: url("../webfonts/fa-solid-900.woff2") format("woff2"),
8668
- url("../webfonts/fa-solid-900.ttf") format("truetype");
8663
+ url("../webfonts/fa-solid-900.ttf") format("truetype");
8669
8664
  }
8670
8665
  @font-face {
8671
8666
  font-family: "Font Awesome 5 Free";
8672
8667
  font-display: block;
8673
8668
  font-weight: 400;
8674
8669
  src: url("../webfonts/fa-regular-400.woff2") format("woff2"),
8675
- url("../webfonts/fa-regular-400.ttf") format("truetype");
8670
+ url("../webfonts/fa-regular-400.ttf") format("truetype");
8676
8671
  }
8677
8672
  @font-face {
8678
8673
  font-family: "FontAwesome";
8679
8674
  font-display: block;
8680
8675
  src: url("../webfonts/fa-solid-900.woff2") format("woff2"),
8681
- url("../webfonts/fa-solid-900.ttf") format("truetype");
8676
+ url("../webfonts/fa-solid-900.ttf") format("truetype");
8682
8677
  }
8683
8678
  @font-face {
8684
8679
  font-family: "FontAwesome";
8685
8680
  font-display: block;
8686
8681
  src: url("../webfonts/fa-brands-400.woff2") format("woff2"),
8687
- url("../webfonts/fa-brands-400.ttf") format("truetype");
8682
+ url("../webfonts/fa-brands-400.ttf") format("truetype");
8688
8683
  }
8689
8684
  @font-face {
8690
8685
  font-family: "FontAwesome";
8691
8686
  font-display: block;
8692
8687
  src: url("../webfonts/fa-regular-400.woff2") format("woff2"),
8693
- url("../webfonts/fa-regular-400.ttf") format("truetype");
8688
+ url("../webfonts/fa-regular-400.ttf") format("truetype");
8694
8689
  unicode-range: U+F003, U+F006, U+F014, U+F016-F017, U+F01A-F01B, U+F01D,
8695
- U+F022, U+F03E, U+F044, U+F046, U+F05C-F05D, U+F06E, U+F070, U+F087-F088,
8696
- U+F08A, U+F094, U+F096-F097, U+F09D, U+F0A0, U+F0A2, U+F0A4-F0A7, U+F0C5,
8697
- U+F0C7, U+F0E5-F0E6, U+F0EB, U+F0F6-F0F8, U+F10C, U+F114-F115, U+F118-F11A,
8698
- U+F11C-F11D, U+F133, U+F147, U+F14E, U+F150-F152, U+F185-F186, U+F18E,
8699
- U+F190-F192, U+F196, U+F1C1-F1C9, U+F1D9, U+F1DB, U+F1E3, U+F1EA, U+F1F7,
8700
- U+F1F9, U+F20A, U+F247-F248, U+F24A, U+F24D, U+F255-F25B, U+F25D,
8701
- U+F271-F274, U+F278, U+F27B, U+F28C, U+F28E, U+F29C, U+F2B5, U+F2B7, U+F2BA,
8702
- U+F2BC, U+F2BE, U+F2C0-F2C1, U+F2C3, U+F2D0, U+F2D2, U+F2D4, U+F2DC;
8690
+ U+F022, U+F03E, U+F044, U+F046, U+F05C-F05D, U+F06E, U+F070, U+F087-F088,
8691
+ U+F08A, U+F094, U+F096-F097, U+F09D, U+F0A0, U+F0A2, U+F0A4-F0A7, U+F0C5,
8692
+ U+F0C7, U+F0E5-F0E6, U+F0EB, U+F0F6-F0F8, U+F10C, U+F114-F115, U+F118-F11A,
8693
+ U+F11C-F11D, U+F133, U+F147, U+F14E, U+F150-F152, U+F185-F186, U+F18E,
8694
+ U+F190-F192, U+F196, U+F1C1-F1C9, U+F1D9, U+F1DB, U+F1E3, U+F1EA, U+F1F7,
8695
+ U+F1F9, U+F20A, U+F247-F248, U+F24A, U+F24D, U+F255-F25B, U+F25D,
8696
+ U+F271-F274, U+F278, U+F27B, U+F28C, U+F28E, U+F29C, U+F2B5, U+F2B7, U+F2BA,
8697
+ U+F2BC, U+F2BE, U+F2C0-F2C1, U+F2C3, U+F2D0, U+F2D2, U+F2D4, U+F2DC;
8703
8698
  }
8704
8699
  @font-face {
8705
8700
  font-family: "FontAwesome";
8706
8701
  font-display: block;
8707
8702
  src: url("../webfonts/fa-v4compatibility.woff2") format("woff2"),
8708
- url("../webfonts/fa-v4compatibility.ttf") format("truetype");
8703
+ url("../webfonts/fa-v4compatibility.ttf") format("truetype");
8709
8704
  unicode-range: U+F041, U+F047, U+F065-F066, U+F07D-F07E, U+F080, U+F08B,
8710
- U+F08E, U+F090, U+F09A, U+F0AC, U+F0AE, U+F0B2, U+F0D0, U+F0D6, U+F0E4,
8711
- U+F0EC, U+F10A-F10B, U+F123, U+F13E, U+F148-F149, U+F14C, U+F156, U+F15E,
8712
- U+F160-F161, U+F163, U+F175-F178, U+F195, U+F1F8, U+F219, U+F250, U+F252,
8713
- U+F27A;
8705
+ U+F08E, U+F090, U+F09A, U+F0AC, U+F0AE, U+F0B2, U+F0D0, U+F0D6, U+F0E4,
8706
+ U+F0EC, U+F10A-F10B, U+F123, U+F13E, U+F148-F149, U+F14C, U+F156, U+F15E,
8707
+ U+F160-F161, U+F163, U+F175-F178, U+F195, U+F1F8, U+F219, U+F250, U+F252,
8708
+ U+F27A;
8714
8709
  }`,
8715
8710
  "KOL-SKIP-NAV": `kol-link-wc > a > kol-span-wc {
8716
8711
  border-radius: var(--a11y-min-size);
@@ -9850,9 +9845,7 @@ const BMF = KoliBri.createTheme("bmf", {
9850
9845
  :host > span {
9851
9846
  border-radius: 0.3125rem;
9852
9847
  display: inline-flex;
9853
- font-size: 1em;
9854
9848
  font-style: normal;
9855
- line-height: 1.25rem;
9856
9849
  }
9857
9850
  :host > span.smart-button {
9858
9851
  align-items: center;
@@ -10267,7 +10260,7 @@ const BMF = KoliBri.createTheme("bmf", {
10267
10260
  :host > div.open > kol-heading-wc button kol-icon::part(icon)::before {
10268
10261
  content: "\\f078";
10269
10262
  }
10270
- :host > div.close > kol-heading-wc button kol-icon::part(icon)::before {
10263
+ :host > div:not(.open) > kol-heading-wc button kol-icon::part(icon)::before {
10271
10264
  content: "\\f054";
10272
10265
  }
10273
10266
  :host > div {
@@ -10544,13 +10537,14 @@ const BMF = KoliBri.createTheme("bmf", {
10544
10537
  justify-items: left;
10545
10538
  width: 100%;
10546
10539
  min-height: 44px;
10547
- gap: 0.4em;
10548
10540
  }
10549
10541
  :host kol-input.default {
10550
10542
  grid-template-columns: 1.5rem auto;
10543
+ gap: 0.4em;
10551
10544
  }
10552
10545
  :host kol-input.switch {
10553
10546
  grid-template-columns: 3.5rem auto;
10547
+ gap: 0.4em;
10554
10548
  }
10555
10549
  :host kol-input > div.input {
10556
10550
  display: inherit;
@@ -10732,15 +10726,9 @@ const BMF = KoliBri.createTheme("bmf", {
10732
10726
  :host .disabled {
10733
10727
  opacity: 0.33;
10734
10728
  }
10729
+
10735
10730
  :host kol-input.button {
10736
- cursor: inherit;
10737
- display: grid;
10738
- column-gap: 0;
10739
- grid-template-columns: 32px auto;
10740
- grid-template-areas:
10741
- "error error"
10742
- "input label"
10743
- "hint hint";
10731
+ row-gap: 0.5rem;
10744
10732
  }
10745
10733
 
10746
10734
  :host kol-input.button.checked > .input,
@@ -10748,12 +10736,7 @@ const BMF = KoliBri.createTheme("bmf", {
10748
10736
  background-color: var(--color-ice);
10749
10737
  }
10750
10738
 
10751
- :host kol-input.button > .error {
10752
- grid-area: error;
10753
- }
10754
-
10755
10739
  :host kol-input.button > label {
10756
- grid-area: label;
10757
10740
  background-color: var(--color-silver);
10758
10741
  border-top-right-radius: var(--border-radius);
10759
10742
  border-bottom-right-radius: var(--border-radius);
@@ -10765,7 +10748,6 @@ const BMF = KoliBri.createTheme("bmf", {
10765
10748
  }
10766
10749
 
10767
10750
  :host kol-input.button > .input {
10768
- grid-area: input;
10769
10751
  background-color: var(--color-silver);
10770
10752
  border-top-left-radius: var(--border-radius);
10771
10753
  border-bottom-left-radius: var(--border-radius);
@@ -10774,13 +10756,13 @@ const BMF = KoliBri.createTheme("bmf", {
10774
10756
  place-content: center;
10775
10757
  }
10776
10758
 
10777
- :host kol-input.button > .hint {
10778
- grid-area: hint;
10779
- }
10780
-
10781
10759
  :host kol-input.button > .input > div {
10782
10760
  display: flex;
10783
10761
  }
10762
+
10763
+ :host kol-input.button .icon {
10764
+ height: auto;
10765
+ }
10784
10766
  `,
10785
10767
  "KOL-INPUT-RADIO": `/* INPUT */
10786
10768
  kol-input {
@@ -10916,26 +10898,13 @@ const BMF = KoliBri.createTheme("bmf", {
10916
10898
  fieldset div label {
10917
10899
  padding-left: 0;
10918
10900
  }`,
10919
- "KOL-TOAST": `:host > div {
10920
- position: fixed;
10921
- top: 0;
10922
- right: 0;
10923
- width: 100%;
10924
- height: 0;
10925
- z-index: 200;
10926
- }
10927
- :host > div > kol-alert {
10928
- display: block;
10929
- margin-left: auto;
10930
- margin-right: unset;
10931
- padding: 2rem;
10932
- max-width: 440px;
10933
- }
10934
- :host > div > kol-button-wc {
10935
- top: 0;
10936
- position: relative;
10937
- display: block;
10938
- width: 1em;
10901
+ "KOL-TOAST-CONTAINER": `:host {
10902
+ top: 1rem;
10903
+ right: 1rem;
10904
+ width: 440px;
10905
+ }`,
10906
+ "KOL-TOAST": `.toast {
10907
+ margin-top: 1rem;
10939
10908
  }`,
10940
10909
  "KOL-TABS": `button:disabled {
10941
10910
  opacity: 0.5;
@@ -18500,6 +18469,9 @@ const BMF = KoliBri.createTheme("bmf", {
18500
18469
  border-color: var(--color-ocean);
18501
18470
  color: var(--color-white);
18502
18471
  cursor: pointer;
18472
+ }`,
18473
+ "KOL-SPLIT-BUTTON": `.popover {
18474
+ background: #fff;
18503
18475
  }`
18504
18476
  });
18505
18477
 
@@ -19509,12 +19481,12 @@ const DEFAULT = KoliBri.createTheme("default", {
19509
19481
  "KOL-BADGE": css`
19510
19482
  :host {
19511
19483
  display: inline-block;
19484
+ font-size: inherit;
19512
19485
  }
19513
19486
  :host > span {
19514
19487
  border-radius: var(--border-radius);
19515
19488
  display: inline-flex;
19516
19489
  font-style: normal;
19517
- line-height: 1.25rem;
19518
19490
  }
19519
19491
  :host > span.smart-button {
19520
19492
  align-items: center;
@@ -20144,6 +20116,9 @@ const DEFAULT = KoliBri.createTheme("default", {
20144
20116
  :host kol-input.switch {
20145
20117
  grid-template-columns: 3.5rem auto;
20146
20118
  }
20119
+ :host kol-input.button {
20120
+ gap: 0.4rem 0;
20121
+ }
20147
20122
  :host kol-input > div.input {
20148
20123
  display: inherit;
20149
20124
  min-height: var(--a11y-min-size);
@@ -20441,27 +20416,16 @@ const DEFAULT = KoliBri.createTheme("default", {
20441
20416
  padding-left: 0;
20442
20417
  }
20443
20418
  `,
20444
- "KOL-TOAST": css`
20445
- :host > div {
20446
- position: fixed;
20447
- top: 0;
20448
- right: 0;
20449
- width: 100%;
20450
- height: 0;
20451
- z-index: 200;
20452
- }
20453
- :host > div > kol-alert {
20454
- display: block;
20455
- margin-left: auto;
20456
- margin-right: unset;
20457
- padding: 2rem;
20458
- max-width: 750px;
20419
+ "KOL-TOAST-CONTAINER": css`
20420
+ :host {
20421
+ top: 1rem;
20422
+ right: 1rem;
20423
+ width: 440px;
20459
20424
  }
20460
- :host > div > kol-button-wc {
20461
- top: 0;
20462
- position: relative;
20463
- display: block;
20464
- width: 1rem;
20425
+ `,
20426
+ "KOL-TOAST": css`
20427
+ .toast {
20428
+ margin-top: 1rem;
20465
20429
  }
20466
20430
  `,
20467
20431
  "KOL-TABS": css`
@@ -20922,7 +20886,10 @@ const DEFAULT = KoliBri.createTheme("default", {
20922
20886
  color: var(--color-light);
20923
20887
  cursor: pointer;
20924
20888
  }
20925
- `
20889
+ `,
20890
+ "KOL-SPLIT-BUTTON": `.popover {
20891
+ background: #fff;
20892
+ }`
20926
20893
  });
20927
20894
 
20928
20895
  const ECL_EC = KoliBri.createTheme("ecl-ec", {
@@ -21080,7 +21047,7 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21080
21047
  outline: 2px solid var(--color-blue);
21081
21048
  outline-offset: -2px;
21082
21049
  }
21083
- div[part="content"] {
21050
+ .content {
21084
21051
  padding: var(--spacing-s) var(--spacing-m);
21085
21052
  }`,
21086
21053
  "KOL-INDENTED-TEXT": `:host > div {
@@ -21279,7 +21246,7 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21279
21246
  color: var(--color-blue-130);
21280
21247
  }`,
21281
21248
  "KOL-BADGE": `:host > span {
21282
- font: normal normal var(--font-weight) 0.875rem/1em var(--font-family);
21249
+ font: normal normal var(--font-weight) 1em var(--font-family);
21283
21250
  padding: calc(0.5rem - 1px) calc(0.75rem - 1px);
21284
21251
  text-transform: uppercase;
21285
21252
  }`,
@@ -21561,6 +21528,13 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21561
21528
  kol-input {
21562
21529
  gap: var(--spacing-xs);
21563
21530
  }
21531
+ .button {
21532
+ gap: var(--spacing-xs) 0;
21533
+ grid-template-areas:
21534
+ "input label"
21535
+ "hint hint"
21536
+ "error error";
21537
+ }
21564
21538
  kol-input > .input {
21565
21539
  order: 2;
21566
21540
  }
@@ -21585,7 +21559,6 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21585
21559
  select,
21586
21560
  textarea {
21587
21561
  border: none;
21588
- margin: 1px;
21589
21562
  outline: none;
21590
21563
  }
21591
21564
  input,
@@ -21613,6 +21586,7 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21613
21586
  color: var(--color-grey);
21614
21587
  order: 4;
21615
21588
  align-items: center;
21589
+ padding: 1px;
21616
21590
  }
21617
21591
  input::placeholder,
21618
21592
  textarea::placeholder {
@@ -21665,6 +21639,7 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21665
21639
  "KOL-INPUT-RADIO": `fieldset {
21666
21640
  border: 0;
21667
21641
  gap: 0.5rem;
21642
+ flex-wrap: wrap;
21668
21643
  }
21669
21644
  .input-slot {
21670
21645
  gap: 0.25rem;
@@ -21681,6 +21656,13 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21681
21656
  fieldset kol-input {
21682
21657
  order: 4;
21683
21658
  }
21659
+ .radio-input-wrapper {
21660
+ display: flex;
21661
+ align-items: center;
21662
+ }
21663
+ .radio-label {
21664
+ padding-left: 0.5rem;
21665
+ }
21684
21666
  input[type="radio"] {
21685
21667
  border: 2px solid var(--color-grey-75);
21686
21668
  }
@@ -21723,6 +21705,7 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21723
21705
  font-size: 0.875em;
21724
21706
  margin-left: calc(-1 * var(--spacing-xs));
21725
21707
  order: 1;
21708
+ width: 100%;
21726
21709
  }
21727
21710
  .hint {
21728
21711
  font-size: 0.875rem;
@@ -21814,6 +21797,7 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21814
21797
  color: var(--color-grey);
21815
21798
  order: 4;
21816
21799
  align-items: center;
21800
+ padding: 1px;
21817
21801
  }
21818
21802
  input::placeholder,
21819
21803
  textarea::placeholder {
@@ -21838,7 +21822,6 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21838
21822
  select,
21839
21823
  textarea {
21840
21824
  border: none;
21841
- margin: 1px 0.5em;
21842
21825
  outline: none;
21843
21826
  }
21844
21827
  input,
@@ -21866,6 +21849,7 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21866
21849
  color: var(--color-grey);
21867
21850
  order: 4;
21868
21851
  align-items: center;
21852
+ padding: 1px 0.5em;
21869
21853
  }
21870
21854
  input::placeholder,
21871
21855
  textarea::placeholder {
@@ -21890,7 +21874,6 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21890
21874
  select,
21891
21875
  textarea {
21892
21876
  border: none;
21893
- margin: 1px 0.5em;
21894
21877
  outline: none;
21895
21878
  }
21896
21879
  input,
@@ -21918,6 +21901,7 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21918
21901
  color: var(--color-grey);
21919
21902
  order: 4;
21920
21903
  align-items: center;
21904
+ padding: 1px 0.5em;
21921
21905
  }
21922
21906
  input::placeholder,
21923
21907
  textarea::placeholder {
@@ -21942,7 +21926,6 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21942
21926
  select,
21943
21927
  textarea {
21944
21928
  border: none;
21945
- margin: 1px 0.5em;
21946
21929
  outline: none;
21947
21930
  }
21948
21931
  input,
@@ -21970,6 +21953,7 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21970
21953
  color: var(--color-grey);
21971
21954
  order: 4;
21972
21955
  align-items: center;
21956
+ padding: 1px 0.5em;
21973
21957
  }
21974
21958
  input::placeholder,
21975
21959
  textarea::placeholder {
@@ -21994,7 +21978,6 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21994
21978
  select,
21995
21979
  textarea {
21996
21980
  border: none;
21997
- margin: 1px 0.5em;
21998
21981
  outline: none;
21999
21982
  }
22000
21983
  input,
@@ -22022,6 +22005,7 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
22022
22005
  color: var(--color-grey);
22023
22006
  order: 4;
22024
22007
  align-items: center;
22008
+ padding: 1px 0.5em;
22025
22009
  }
22026
22010
  input::placeholder,
22027
22011
  textarea::placeholder {
@@ -22098,7 +22082,6 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
22098
22082
  select,
22099
22083
  textarea {
22100
22084
  border: none;
22101
- margin: 1px 0.5em;
22102
22085
  outline: none;
22103
22086
  }
22104
22087
  input,
@@ -22126,6 +22109,7 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
22126
22109
  color: var(--color-grey);
22127
22110
  order: 4;
22128
22111
  align-items: center;
22112
+ padding: 1px 0.5em;
22129
22113
  }
22130
22114
  input::placeholder,
22131
22115
  textarea::placeholder {
@@ -22150,7 +22134,6 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
22150
22134
  select,
22151
22135
  textarea {
22152
22136
  border: none;
22153
- margin: 1px 0.5em;
22154
22137
  outline: none;
22155
22138
  }
22156
22139
  input,
@@ -22178,6 +22161,7 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
22178
22161
  color: var(--color-grey);
22179
22162
  order: 4;
22180
22163
  align-items: center;
22164
+ padding: 1px 0.5em;
22181
22165
  }
22182
22166
  .counter {
22183
22167
  order: 5;
@@ -22362,6 +22346,24 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
22362
22346
  border-color: var(--color-blue);
22363
22347
  color: var(--color-white);
22364
22348
  cursor: pointer;
22349
+ }`,
22350
+ "KOL-SPLIT-BUTTON": `.popover {
22351
+ background: #fff;
22352
+ }`,
22353
+ "KOL-TOAST-CONTAINER": `:host {
22354
+ top: 1rem;
22355
+ right: 1rem;
22356
+ width: 440px;
22357
+ }`,
22358
+ "KOL-TOAST": `:host {
22359
+ display: block;
22360
+ }
22361
+ .toast {
22362
+ background: #fff;
22363
+ margin-top: 1rem;
22364
+ }
22365
+ .alert {
22366
+ display: block;
22365
22367
  }`
22366
22368
  });
22367
22369
 
@@ -22411,6 +22413,7 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
22411
22413
  --color-grey-110: #222732;
22412
22414
  --color-grey-100: #262b38;
22413
22415
  --color-grey-80: #515560;
22416
+ --color-grey-75: #515560;
22414
22417
  --color-grey-60: #7d8088;
22415
22418
  --color-grey-40: #a8aaaf;
22416
22419
  --color-grey-20: #d4d5d7;
@@ -22624,7 +22627,7 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
22624
22627
  .open .headline button kol-icon::part(icon)::before {
22625
22628
  content: "\\f077";
22626
22629
  }
22627
- .close .headline button kol-icon::part(icon)::before {
22630
+ :not(.open) .headline button kol-icon::part(icon)::before {
22628
22631
  content: "\\f078";
22629
22632
  }
22630
22633
  .content,
@@ -23127,6 +23130,13 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23127
23130
  kol-input {
23128
23131
  gap: var(--spacing-xs);
23129
23132
  }
23133
+ .button {
23134
+ gap: var(--spacing-xs) 0;
23135
+ grid-template-areas:
23136
+ "input label"
23137
+ "hint hint"
23138
+ "error error";
23139
+ }
23130
23140
  kol-input > .input {
23131
23141
  order: 2;
23132
23142
  }
@@ -23151,7 +23161,6 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23151
23161
  select,
23152
23162
  textarea {
23153
23163
  border: none;
23154
- margin: 1px;
23155
23164
  outline: none;
23156
23165
  }
23157
23166
  input,
@@ -23179,6 +23188,7 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23179
23188
  color: var(--color-grey);
23180
23189
  order: 4;
23181
23190
  align-items: center;
23191
+ padding: 1px;
23182
23192
  }
23183
23193
  input::placeholder,
23184
23194
  textarea::placeholder {
@@ -23255,7 +23265,6 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23255
23265
  select,
23256
23266
  textarea {
23257
23267
  border: none;
23258
- margin: 1px 0.5em;
23259
23268
  outline: none;
23260
23269
  }
23261
23270
  input,
@@ -23283,6 +23292,7 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23283
23292
  color: var(--color-grey);
23284
23293
  order: 4;
23285
23294
  align-items: center;
23295
+ padding: 1px 0.5em;
23286
23296
  }
23287
23297
  input::placeholder,
23288
23298
  textarea::placeholder {
@@ -23307,7 +23317,6 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23307
23317
  select,
23308
23318
  textarea {
23309
23319
  border: none;
23310
- margin: 1px 0.5em;
23311
23320
  outline: none;
23312
23321
  }
23313
23322
  input,
@@ -23335,6 +23344,7 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23335
23344
  color: var(--color-grey);
23336
23345
  order: 4;
23337
23346
  align-items: center;
23347
+ padding: 1px 0.5em;
23338
23348
  }
23339
23349
  input::placeholder,
23340
23350
  textarea::placeholder {
@@ -23359,7 +23369,6 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23359
23369
  select,
23360
23370
  textarea {
23361
23371
  border: none;
23362
- margin: 1px 0.5em;
23363
23372
  outline: none;
23364
23373
  }
23365
23374
  input,
@@ -23387,6 +23396,7 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23387
23396
  color: var(--color-grey);
23388
23397
  order: 4;
23389
23398
  align-items: center;
23399
+ padding: 1px 0.5em;
23390
23400
  }
23391
23401
  input::placeholder,
23392
23402
  textarea::placeholder {
@@ -23411,7 +23421,6 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23411
23421
  select,
23412
23422
  textarea {
23413
23423
  border: none;
23414
- margin: 1px;
23415
23424
  outline: none;
23416
23425
  }
23417
23426
  input,
@@ -23439,6 +23448,7 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23439
23448
  color: var(--color-grey);
23440
23449
  order: 4;
23441
23450
  align-items: center;
23451
+ padding: 1px;
23442
23452
  }
23443
23453
  input::placeholder,
23444
23454
  textarea::placeholder {
@@ -23463,7 +23473,6 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23463
23473
  select,
23464
23474
  textarea {
23465
23475
  border: none;
23466
- margin: 1px;
23467
23476
  outline: none;
23468
23477
  }
23469
23478
  input,
@@ -23491,6 +23500,7 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23491
23500
  color: var(--color-grey);
23492
23501
  order: 4;
23493
23502
  align-items: center;
23503
+ padding: 1px;
23494
23504
  }
23495
23505
  input::placeholder,
23496
23506
  textarea::placeholder {
@@ -23515,7 +23525,6 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23515
23525
  select,
23516
23526
  textarea {
23517
23527
  border: none;
23518
- margin: 1px 0.5em;
23519
23528
  outline: none;
23520
23529
  }
23521
23530
  input,
@@ -23543,6 +23552,7 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23543
23552
  color: var(--color-grey);
23544
23553
  order: 4;
23545
23554
  align-items: center;
23555
+ padding: 1px 0.5em;
23546
23556
  }
23547
23557
  input::placeholder,
23548
23558
  textarea::placeholder {
@@ -23567,7 +23577,6 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23567
23577
  select,
23568
23578
  textarea {
23569
23579
  border: none;
23570
- margin: 1px 0.5em;
23571
23580
  outline: none;
23572
23581
  }
23573
23582
  input,
@@ -23595,6 +23604,7 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23595
23604
  color: var(--color-grey);
23596
23605
  order: 4;
23597
23606
  align-items: center;
23607
+ padding: 1px 0.5em;
23598
23608
  }
23599
23609
  kol-input .counter {
23600
23610
  order: 5;
@@ -23768,9 +23778,7 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23768
23778
  "KOL-INPUT-RADIO": `fieldset {
23769
23779
  border: 0;
23770
23780
  gap: 0.5rem;
23771
- }
23772
- .input-slot {
23773
- gap: 0.25rem;
23781
+ flex-wrap: wrap;
23774
23782
  }
23775
23783
  fieldset kol-alert {
23776
23784
  order: 1;
@@ -23784,8 +23792,16 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23784
23792
  fieldset kol-input {
23785
23793
  order: 4;
23786
23794
  }
23795
+ .radio-input-wrapper {
23796
+ display: flex;
23797
+ align-items: center;
23798
+ }
23799
+ .radio-label {
23800
+ padding-left: 0.5rem;
23801
+ }
23787
23802
  input[type="radio"] {
23788
- border: 2px solid var(--color-grey-75);
23803
+ outline: 2px solid var(--color-grey-75);
23804
+ outline-offset: 2px;
23789
23805
  }
23790
23806
  input[type="radio"]:before {
23791
23807
  display: none;
@@ -23795,8 +23811,7 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23795
23811
  border-width: 7px;
23796
23812
  }
23797
23813
  input[type="radio"]:focus {
23798
- outline: 2px solid var(--color-blue);
23799
- outline-offset: 2px;
23814
+ outline-color: var(--color-blue);
23800
23815
  }
23801
23816
  input[type="radio"]:not(:disabled):hover {
23802
23817
  border-color: var(--color-blue);
@@ -23826,11 +23841,15 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23826
23841
  font-size: 0.875em;
23827
23842
  margin-left: calc(-1 * var(--spacing-xs));
23828
23843
  order: 1;
23844
+ width: 100%;
23829
23845
  }
23830
23846
  .hint {
23831
23847
  font-size: 0.875rem;
23832
23848
  order: 4;
23833
23849
  }`,
23850
+ "KOL-INPUT-RANGE": `.inputs-wrapper {
23851
+ gap: 1rem;
23852
+ }`,
23834
23853
  "KOL-SKIP-NAV": `kol-link-wc > a > kol-span-wc {
23835
23854
  border-radius: 4px;
23836
23855
  gap: 0.5rem;
@@ -23839,6 +23858,24 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23839
23858
  background-color: #0e47cb;
23840
23859
  color: #fff;
23841
23860
  cursor: pointer;
23861
+ }`,
23862
+ "KOL-SPLIT-BUTTON": `.popover {
23863
+ background: #fff;
23864
+ }`,
23865
+ "KOL-TOAST-CONTAINER": `:host {
23866
+ top: 1rem;
23867
+ right: 1rem;
23868
+ width: 440px;
23869
+ }`,
23870
+ "KOL-TOAST": `:host {
23871
+ display: block;
23872
+ }
23873
+ .toast {
23874
+ background: #fff;
23875
+ margin-top: 1rem;
23876
+ }
23877
+ .alert {
23878
+ display: block;
23842
23879
  }`
23843
23880
  });
23844
23881
 
@@ -24572,6 +24609,9 @@ const ITZBund = KoliBri.createTheme("itzbund", {
24572
24609
  :host .default {
24573
24610
  border-color: var(--color-anthrazit);
24574
24611
  }
24612
+ .heading {
24613
+ gap: 0.5rem;
24614
+ }
24575
24615
  .default .heading-icon {
24576
24616
  background-color: var(--color-anthrazit);
24577
24617
  }
@@ -24645,7 +24685,6 @@ const ITZBund = KoliBri.createTheme("itzbund", {
24645
24685
  :host > span {
24646
24686
  border-radius: 0.3125rem;
24647
24687
  display: inline-flex;
24648
- line-height: 1.25rem;
24649
24688
  }
24650
24689
  :host > span kol-button-wc {
24651
24690
  border-left: 1px solid rgba(0, 0, 0, 0.25);
@@ -24958,6 +24997,9 @@ const ITZBund = KoliBri.createTheme("itzbund", {
24958
24997
  font-size: inherit;
24959
24998
  line-height: inherit;
24960
24999
  }
25000
+ .content {
25001
+ padding: 0.5rem;
25002
+ }
24961
25003
  :host > div > kol-heading-wc button kol-icon::part(close)::before {
24962
25004
  font-family: "Font Awesome 6 Free";
24963
25005
  content: "\\f077";
@@ -25167,9 +25209,16 @@ const ITZBund = KoliBri.createTheme("itzbund", {
25167
25209
  kol-input.default {
25168
25210
  grid-template-columns: calc(6 * 2 * var(--spacing)) auto;
25169
25211
  }
25170
- kol-input.switch {
25212
+ .switch {
25171
25213
  grid-template-columns: calc(13 * 2 * var(--spacing)) auto;
25172
25214
  }
25215
+ .button {
25216
+ gap: 0.5rem 0;
25217
+ grid-template-areas:
25218
+ "input label"
25219
+ "hint hint"
25220
+ "error error";
25221
+ }
25173
25222
  kol-input > div.input {
25174
25223
  display: inline-flex;
25175
25224
  order: 1;
@@ -25328,8 +25377,10 @@ const ITZBund = KoliBri.createTheme("itzbund", {
25328
25377
  border: 0px;
25329
25378
  margin: 0px;
25330
25379
  padding: 0px;
25331
- display: grid;
25332
- gap: 0.25em;
25380
+ flex-wrap: wrap;
25381
+ }
25382
+ fieldset.horizontal {
25383
+ gap: 1rem;
25333
25384
  }
25334
25385
  fieldset legend {
25335
25386
  display: block;
@@ -25370,28 +25421,22 @@ const ITZBund = KoliBri.createTheme("itzbund", {
25370
25421
  background-color: var(--color-input-bg-default);
25371
25422
  border-color: #999;
25372
25423
  cursor: not-allowed;
25373
- }`,
25374
- "KOL-TOAST": `:host > div {
25375
- position: fixed;
25376
- top: 0;
25377
- left: 0;
25378
- width: 100%;
25379
- height: 0;
25380
- z-index: 200;
25381
25424
  }
25382
- :host > div > kol-alert {
25383
- display: block;
25384
- margin: auto;
25385
- padding: 1rem;
25386
- max-width: 750px;
25387
- }
25388
- :host > div > kol-button-wc {
25389
- top: 0;
25390
- position: relative;
25391
- display: block;
25392
- margin: auto;
25393
- width: 1em;
25425
+ kol-alert {
25426
+ width: 100%:
25427
+ }`,
25428
+ "KOL-TOAST-CONTAINER": `:host {
25429
+ top: 1rem;
25430
+ width: 750px;
25431
+ left: 50%;
25432
+ transform: translateX(-50%);
25394
25433
  }`,
25434
+ "KOL-TOAST": `
25435
+ .toast {
25436
+ background: #fff;
25437
+ margin-top: 1rem;
25438
+ }
25439
+ `,
25395
25440
  "KOL-TABS": `:host > div {
25396
25441
  display: block;
25397
25442
  width: 100%;
@@ -25560,6 +25605,9 @@ const ITZBund = KoliBri.createTheme("itzbund", {
25560
25605
  border-color: var(--color-petrol);
25561
25606
  color: var(--color-weiss);
25562
25607
  cursor: pointer;
25608
+ }`,
25609
+ "KOL-SPLIT-BUTTON": `.popover {
25610
+ background: #fff;
25563
25611
  }`
25564
25612
  });
25565
25613
 
@@ -36028,6 +36076,9 @@ const MAPZ = KoliBri.createTheme("mapz", {
36028
36076
  kol-input.switch {
36029
36077
  grid-template-columns: calc(13 * var(--spacing)) auto;
36030
36078
  }
36079
+ .button {
36080
+ gap: 0.5rem 0;
36081
+ }
36031
36082
  kol-input > div.input {
36032
36083
  display: inline-flex;
36033
36084
  order: 1;
@@ -36579,6 +36630,9 @@ const MAPZ = KoliBri.createTheme("mapz", {
36579
36630
  font-weight: inherit;
36580
36631
  font-size: inherit;
36581
36632
  line-height: inherit;
36633
+ }
36634
+ .content {
36635
+ padding: 0.5rem;
36582
36636
  }`,
36583
36637
  "KOL-CARD": `:host > div {
36584
36638
  border-color: var(--kolibri-border-color);
@@ -36603,7 +36657,7 @@ const MAPZ = KoliBri.createTheme("mapz", {
36603
36657
  padding: 0.5rem;
36604
36658
  }
36605
36659
  :host div.content {
36606
- padding: 0;
36660
+ padding: 0.5rem;
36607
36661
  }
36608
36662
  :host div.content,
36609
36663
  :host div.content + div.footer {
@@ -36866,28 +36920,18 @@ const MAPZ = KoliBri.createTheme("mapz", {
36866
36920
  :host > div.tabs-align-right > div {
36867
36921
  border-radius: 0.25rem 0 0 0.25rem;
36868
36922
  }`,
36869
- "KOL-TOAST": `:host > div {
36870
- position: fixed;
36871
- top: 0;
36872
- left: 0;
36873
- width: 100%;
36874
- height: 0;
36875
- z-index: 200;
36876
- }
36877
- :host > div > kol-alert {
36878
- background-color: white;
36879
- border-radius: var(--kolibri-border-radius);
36880
- display: block;
36881
- margin: 1rem auto;
36882
- max-width: 750px;
36883
- }
36884
- :host > div > kol-button-wc {
36885
- top: 0;
36886
- position: relative;
36887
- display: block;
36888
- margin: auto;
36889
- width: 1em;
36923
+ "KOL-TOAST-CONTAINER": `:host {
36924
+ top: 1rem;
36925
+ width: 750px;
36926
+ left: 50%;
36927
+ transform: translateX(-50%);
36890
36928
  }`,
36929
+ "KOL-TOAST": `
36930
+ .toast {
36931
+ background: #fff;
36932
+ margin-top: 1rem;
36933
+ }
36934
+ `,
36891
36935
  "KOL-NAV": `:host > div {
36892
36936
  gap: var(--spacing);
36893
36937
  }
@@ -52737,6 +52781,9 @@ const MAPZ = KoliBri.createTheme("mapz", {
52737
52781
  border-color: var(--kolibri-border-color);
52738
52782
  color: white;
52739
52783
  cursor: pointer;
52784
+ }`,
52785
+ "KOL-SPLIT-BUTTON": `.popover {
52786
+ background: #fff;
52740
52787
  }`
52741
52788
  });
52742
52789
 
@@ -52839,7 +52886,6 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
52839
52886
  :host > span {
52840
52887
  border-radius: 0.3125rem;
52841
52888
  display: inline-flex;
52842
- line-height: 1.25rem;
52843
52889
  }
52844
52890
  :host > span kol-span-wc {
52845
52891
  padding: 0.25rem 0.5rem;
@@ -53068,13 +53114,13 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
53068
53114
  }
53069
53115
  th[data-sort="sort-NOS"] kol-button::part(icon)::before,
53070
53116
  th[data-sort="sort-undefined"] kol-button::part(icon)::before {
53071
- content: "\f0dc";
53117
+ content: "\\f0dc";
53072
53118
  }
53073
53119
  th[data-sort="sort-ASC"] kol-button::part(icon)::before {
53074
- content: "\f0de";
53120
+ content: "\\f0de";
53075
53121
  }
53076
53122
  th[data-sort="sort-DESC"] kol-button::part(icon)::before {
53077
- content: "\f0dd";
53123
+ content: "\\f0dd";
53078
53124
  }`,
53079
53125
  "KOL-ACCORDION": `:host > div {
53080
53126
  border-color: var(--border-color);
@@ -53114,7 +53160,7 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
53114
53160
  :host > div.open > kol-heading-wc button kol-icon::part(icon)::before {
53115
53161
  content: "\\f077";
53116
53162
  }
53117
- :host > div.close > kol-heading-wc button kol-icon::part(icon)::before {
53163
+ :host > div:not(.open) > kol-heading-wc button kol-icon::part(icon)::before {
53118
53164
  content: "\\f078";
53119
53165
  }`,
53120
53166
  "KOL-ALERT": `kol-alert-wc {
@@ -53184,7 +53230,7 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
53184
53230
  display: flex;
53185
53231
  gap: var(--spacing);
53186
53232
  flex-grow: 1;
53187
- align-items: flex-start;
53233
+ align-items: center;
53188
53234
  }
53189
53235
  .msg .heading > div {
53190
53236
  display: flex;
@@ -53264,8 +53310,11 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
53264
53310
  border-radius: var(--border-radius);
53265
53311
  border-style: solid;
53266
53312
  border-width: 1px;
53313
+ background: #fff;
53267
53314
  }
53268
- :host > div .header {
53315
+ :host > div .header,
53316
+ .content,
53317
+ .footer {
53269
53318
  padding: 1.5rem;
53270
53319
  }`,
53271
53320
  "KOL-BUTTON": `:host > kol-button-wc > button > kol-span-wc,
@@ -53492,27 +53541,18 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
53492
53541
  padding: 0.75rem 1rem;
53493
53542
  text-decoration: underline;
53494
53543
  }`,
53495
- "KOL-TOAST": `:host > div {
53496
- position: fixed;
53497
- top: 0;
53498
- left: 0;
53499
- width: 100%;
53500
- height: 0;
53501
- z-index: 200;
53502
- }
53503
- :host > div > kol-alert {
53504
- display: block;
53505
- margin: auto;
53506
- padding: 1rem;
53507
- max-width: 750px;
53508
- }
53509
- :host > div > kol-button-wc {
53510
- top: 0;
53511
- position: relative;
53512
- display: block;
53513
- margin: auto;
53514
- width: 1em;
53544
+ "KOL-TOAST-CONTAINER": `:host {
53545
+ top: 1rem;
53546
+ width: 750px;
53547
+ left: 50%;
53548
+ transform: translateX(-50%);
53515
53549
  }`,
53550
+ "KOL-TOAST": `
53551
+ .toast {
53552
+ background: #fff;
53553
+ margin-top: 1rem;
53554
+ }
53555
+ `,
53516
53556
  "KOL-PROGRESS": `svg line:first-child,
53517
53557
  svg circle:first-child {
53518
53558
  stroke: var(--color-neutral);
@@ -53559,6 +53599,13 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
53559
53599
  kol-input.switch {
53560
53600
  grid-template-columns: calc(13 * var(--spacing)) auto;
53561
53601
  }
53602
+ .button {
53603
+ grid-template-areas:
53604
+ "input label"
53605
+ "hint hint"
53606
+ "error error";
53607
+ gap: 0.5rem 0;
53608
+ }
53562
53609
  kol-input > div.input {
53563
53610
  display: inline-flex;
53564
53611
  order: 1;
@@ -53750,6 +53797,13 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
53750
53797
  fieldset kol-input {
53751
53798
  order: 2;
53752
53799
  }
53800
+ .radio-input-wrapper {
53801
+ display: flex;
53802
+ align-items: center;
53803
+ }
53804
+ .radio-label {
53805
+ padding-left: 0.5rem;
53806
+ }
53753
53807
  .disabled {
53754
53808
  opacity: 0.33;
53755
53809
  }
@@ -61365,6 +61419,9 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
61365
61419
  border-color: var(--color-blau-dark);
61366
61420
  color: white;
61367
61421
  cursor: pointer;
61422
+ }`,
61423
+ "KOL-SPLIT-BUTTON": `.popover {
61424
+ background: #fff;
61368
61425
  }`
61369
61426
  });
61370
61427