@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.mjs CHANGED
@@ -353,8 +353,8 @@ var TagEnum = /* @__PURE__ */ ((TagEnum2) => {
353
353
  TagEnum2[TagEnum2["input-checkbox"] = 17] = "input-checkbox";
354
354
  TagEnum2[TagEnum2["input-color"] = 18] = "input-color";
355
355
  TagEnum2[TagEnum2["input-date"] = 19] = "input-date";
356
- TagEnum2[TagEnum2["input-file"] = 20] = "input-file";
357
- TagEnum2[TagEnum2["input-email"] = 21] = "input-email";
356
+ TagEnum2[TagEnum2["input-email"] = 20] = "input-email";
357
+ TagEnum2[TagEnum2["input-file"] = 21] = "input-file";
358
358
  TagEnum2[TagEnum2["input-number"] = 22] = "input-number";
359
359
  TagEnum2[TagEnum2["input-password"] = 23] = "input-password";
360
360
  TagEnum2[TagEnum2["input-radio"] = 24] = "input-radio";
@@ -372,13 +372,15 @@ var TagEnum = /* @__PURE__ */ ((TagEnum2) => {
372
372
  TagEnum2[TagEnum2["separator"] = 36] = "separator";
373
373
  TagEnum2[TagEnum2["skip-nav"] = 37] = "skip-nav";
374
374
  TagEnum2[TagEnum2["spin"] = 38] = "spin";
375
- TagEnum2[TagEnum2["symbol"] = 39] = "symbol";
376
- TagEnum2[TagEnum2["table"] = 40] = "table";
377
- TagEnum2[TagEnum2["tabs"] = 41] = "tabs";
378
- TagEnum2[TagEnum2["textarea"] = 42] = "textarea";
379
- TagEnum2[TagEnum2["toast"] = 43] = "toast";
380
- TagEnum2[TagEnum2["toolbar"] = 44] = "toolbar";
381
- TagEnum2[TagEnum2["tooltip"] = 45] = "tooltip";
375
+ TagEnum2[TagEnum2["split-button"] = 39] = "split-button";
376
+ TagEnum2[TagEnum2["symbol"] = 40] = "symbol";
377
+ TagEnum2[TagEnum2["table"] = 41] = "table";
378
+ TagEnum2[TagEnum2["tabs"] = 42] = "tabs";
379
+ TagEnum2[TagEnum2["textarea"] = 43] = "textarea";
380
+ TagEnum2[TagEnum2["toast"] = 44] = "toast";
381
+ TagEnum2[TagEnum2["toast-container"] = 45] = "toast-container";
382
+ TagEnum2[TagEnum2["toolbar"] = 46] = "toolbar";
383
+ TagEnum2[TagEnum2["tooltip"] = 47] = "tooltip";
382
384
  return TagEnum2;
383
385
  })(TagEnum || {});
384
386
 
@@ -6107,7 +6109,7 @@ const BZSt = KoliBri.createTheme("bzst", {
6107
6109
  --colorTextActiveBg: var(--color-white); /* signal */
6108
6110
  --colorSignal: var(--color-tropic-sea);
6109
6111
  --colorSignalFront: var(
6110
- --color-white
6112
+ --color-white
6111
6113
  ); /* colorSignalFocus hat keine Frontfarbe */
6112
6114
  --colorSignalFocus: var(--color-heroic-blue);
6113
6115
  --colorSignalSuccess: var(--color-green);
@@ -6122,8 +6124,8 @@ const BZSt = KoliBri.createTheme("bzst", {
6122
6124
  :host {
6123
6125
  /* token */
6124
6126
  --font-family: "BundesSans Web", system-ui, -apple-system, BlinkMacSystemFont,
6125
- "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
6126
- sans-serif; /* Basis-Gr\xF6\xDFe: html, rem */
6127
+ "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
6128
+ sans-serif; /* Basis-Gr\xF6\xDFe: html, rem */
6127
6129
  --font-size: 100%;
6128
6130
  --line-height: 1.6875rem; /* template */ /* h1 */
6129
6131
  --headline1FontSize: 2.5rem;
@@ -6246,10 +6248,10 @@ const BZSt = KoliBri.createTheme("bzst", {
6246
6248
  }
6247
6249
  @keyframes spin {
6248
6250
  0% {
6249
- transform: rotate(0deg);
6251
+ transform: rotate(0deg);
6250
6252
  }
6251
6253
  100% {
6252
- transform: rotate(360deg);
6254
+ transform: rotate(360deg);
6253
6255
  }
6254
6256
  }
6255
6257
  kol-tooltip .area {
@@ -6937,6 +6939,9 @@ const BZSt = KoliBri.createTheme("bzst", {
6937
6939
  "KOL-TEXTAREA": `kol-input {
6938
6940
  gap: 0.4em;
6939
6941
  }
6942
+ kol-input .error {
6943
+ order: 3;
6944
+ }
6940
6945
  kol-input label {
6941
6946
  font-weight: 700;
6942
6947
  order: 1;
@@ -6944,14 +6949,8 @@ const BZSt = KoliBri.createTheme("bzst", {
6944
6949
  kol-input .input {
6945
6950
  order: 2;
6946
6951
  }
6947
- kol-input .counter {
6948
- order: 3;
6949
- }
6950
- kol-input .error {
6951
- order: 4;
6952
- }
6953
6952
  kol-input .hint {
6954
- order: 5;
6953
+ order: 4;
6955
6954
  font-size: 0.875em;
6956
6955
  font-style: italic;
6957
6956
  }
@@ -7238,6 +7237,9 @@ const BZSt = KoliBri.createTheme("bzst", {
7238
7237
  }
7239
7238
  .icon-only {
7240
7239
  padding-bottom: 0.2rem;
7240
+ }
7241
+ :is(a) kol-span-wc > span {
7242
+ gap: var(--gapSmallest);
7241
7243
  }`,
7242
7244
  "KOL-DETAILS": `details {
7243
7245
  display: grid;
@@ -7300,26 +7302,26 @@ const BZSt = KoliBri.createTheme("bzst", {
7300
7302
  }
7301
7303
  @keyframes spin1 {
7302
7304
  0% {
7303
- transform: scale(0);
7305
+ transform: scale(0);
7304
7306
  }
7305
7307
  100% {
7306
- transform: scale(1);
7308
+ transform: scale(1);
7307
7309
  }
7308
7310
  }
7309
7311
  @keyframes spin2 {
7310
7312
  0% {
7311
- transform: translate(0px, 0px);
7313
+ transform: translate(0px, 0px);
7312
7314
  }
7313
7315
  100% {
7314
- transform: translate(1rem, 0px);
7316
+ transform: translate(1rem, 0px);
7315
7317
  }
7316
7318
  }
7317
7319
  @keyframes spin3 {
7318
7320
  0% {
7319
- transform: scale(1);
7321
+ transform: scale(1);
7320
7322
  }
7321
7323
  100% {
7322
- transform: scale(0);
7324
+ transform: scale(0);
7323
7325
  }
7324
7326
  }`,
7325
7327
  "KOL-PROGRESS": `:host progress,
@@ -7546,21 +7548,21 @@ const BZSt = KoliBri.createTheme("bzst", {
7546
7548
  font-weight: 900;
7547
7549
  color: var(--color-midnight);
7548
7550
  }
7549
- :host > div.open > kol-heading-wc button kol-icon::part(icon)::before {
7550
- content: "\\f068";
7551
- }
7552
- :host > div.close > kol-heading-wc button kol-icon::part(icon)::before {
7551
+ .accordion > kol-heading-wc button kol-icon::part(icon)::before {
7553
7552
  content: "\\2b";
7554
7553
  }
7555
- :host > div {
7554
+ .accordion.open > kol-heading-wc button kol-icon::part(icon)::before {
7555
+ content: "\\f068";
7556
+ }
7557
+ .accordion {
7556
7558
  width: 100%;
7557
7559
  height: 100%;
7558
7560
  display: grid;
7559
7561
  }
7560
- :host > div[part*="open"] div[part="header"] {
7562
+ .accordion[part*="open"] div[part="header"] {
7561
7563
  padding-left: 2em;
7562
7564
  }
7563
- :host > div[part*="open"] div[part="content"] {
7565
+ .accordion[part*="open"] div[part="content"] {
7564
7566
  padding-top: 1rem;
7565
7567
  }
7566
7568
  button {
@@ -7568,12 +7570,12 @@ const BZSt = KoliBri.createTheme("bzst", {
7568
7570
  font-size: inherit;
7569
7571
  line-height: inherit;
7570
7572
  }
7571
- :host > div {
7573
+ .accordion {
7572
7574
  background: var(--color-white);
7573
7575
  }
7574
- :host > div[part*="open"] {
7576
+ .accordion[part*="open"] {
7575
7577
  padding-bottom: 1em;
7576
- } /* :host > div > [part="header"] {height: 0;} */
7578
+ } /* .accordion > [part="header"] {height: 0;} */
7577
7579
  h1,
7578
7580
  h2,
7579
7581
  h3,
@@ -8205,41 +8207,31 @@ const BZSt = KoliBri.createTheme("bzst", {
8205
8207
  border-radius: 0.25rem 0 0 0.25rem;
8206
8208
  }`,
8207
8209
  "KOL-PAGINATION": `:host {
8208
- display: grid;
8210
+ align-items: center;
8211
+ display: flex;
8209
8212
  gap: 1rem;
8210
8213
  }
8211
- :host > div {
8214
+ .navigation-list {
8215
+ align-items: center;
8212
8216
  display: inline-flex;
8213
8217
  flex-wrap: wrap;
8214
- align-items: center;
8215
- gap: 0.5em;
8218
+ gap: 0.5rem;
8219
+ justify-content: center;
8220
+ margin: 0;
8221
+ padding: 0;
8216
8222
  }
8217
- :host .selected button {
8218
- min-width: 44px;
8219
- min-height: 44px;
8220
- display: grid;
8221
- line-height: 1.5;
8222
- font-family: var(--textFont);
8223
+ .navigation-list > li {
8224
+ min-width: var(--a11y-min-size);
8225
+ text-align: center;
8226
+ }
8227
+ .selected button {
8223
8228
  cursor: not-allowed;
8224
8229
  font-weight: 700;
8225
- padding: 10px 12px;
8226
8230
  border-radius: 1.5em;
8227
8231
  border: none;
8228
- font-size: var(--textFontSize);
8229
- font-style: normal;
8230
- text-align: center;
8231
- text-transform: uppercase;
8232
- width: inherit;
8233
8232
  transition-duration: 0.5s;
8234
8233
  transition-property: background-color, color, border-color;
8235
8234
  color: var(--color-midnight);
8236
- background-color: var(--color-ice);
8237
- border-color: var(--color-ice);
8238
- }
8239
- :host > div > span {
8240
- align-self: flex-end;
8241
- padding-bottom: 0.5rem;
8242
- color: var(--color-midnight);
8243
8235
  }
8244
8236
  kol-button::part(icon)::before {
8245
8237
  font-family: "Font Awesome 6 Free";
@@ -8587,6 +8579,9 @@ const BZSt = KoliBri.createTheme("bzst", {
8587
8579
  .fa-chevron-right::before {
8588
8580
  content: "\\f054";
8589
8581
  }
8582
+ .fa-download::before {
8583
+ content: "\\f019";
8584
+ }
8590
8585
  fa-exclamation-triangle::before {
8591
8586
  content: "\\f071";
8592
8587
  }
@@ -8627,7 +8622,7 @@ const BZSt = KoliBri.createTheme("bzst", {
8627
8622
  font-weight: 400;
8628
8623
  font-display: block;
8629
8624
  src: url("../webfonts/fa-regular-400.woff2") format("woff2"),
8630
- url("../webfonts/fa-regular-400.ttf") format("truetype");
8625
+ url("../webfonts/fa-regular-400.ttf") format("truetype");
8631
8626
  }
8632
8627
  .far,
8633
8628
  .fa-regular {
@@ -8644,7 +8639,7 @@ const BZSt = KoliBri.createTheme("bzst", {
8644
8639
  font-weight: 900;
8645
8640
  font-display: block;
8646
8641
  src: url("../webfonts/fa-solid-900.woff2") format("woff2"),
8647
- url("../webfonts/fa-solid-900.ttf") format("truetype");
8642
+ url("../webfonts/fa-solid-900.ttf") format("truetype");
8648
8643
  }
8649
8644
  .fas,
8650
8645
  .fa-solid {
@@ -8656,59 +8651,59 @@ const BZSt = KoliBri.createTheme("bzst", {
8656
8651
  font-display: block;
8657
8652
  font-weight: 400;
8658
8653
  src: url("../webfonts/fa-brands-400.woff2") format("woff2"),
8659
- url("../webfonts/fa-brands-400.ttf") format("truetype");
8654
+ url("../webfonts/fa-brands-400.ttf") format("truetype");
8660
8655
  }
8661
8656
  @font-face {
8662
8657
  font-family: "Font Awesome 5 Free";
8663
8658
  font-display: block;
8664
8659
  font-weight: 900;
8665
8660
  src: url("../webfonts/fa-solid-900.woff2") format("woff2"),
8666
- url("../webfonts/fa-solid-900.ttf") format("truetype");
8661
+ url("../webfonts/fa-solid-900.ttf") format("truetype");
8667
8662
  }
8668
8663
  @font-face {
8669
8664
  font-family: "Font Awesome 5 Free";
8670
8665
  font-display: block;
8671
8666
  font-weight: 400;
8672
8667
  src: url("../webfonts/fa-regular-400.woff2") format("woff2"),
8673
- url("../webfonts/fa-regular-400.ttf") format("truetype");
8668
+ url("../webfonts/fa-regular-400.ttf") format("truetype");
8674
8669
  }
8675
8670
  @font-face {
8676
8671
  font-family: "FontAwesome";
8677
8672
  font-display: block;
8678
8673
  src: url("../webfonts/fa-solid-900.woff2") format("woff2"),
8679
- url("../webfonts/fa-solid-900.ttf") format("truetype");
8674
+ url("../webfonts/fa-solid-900.ttf") format("truetype");
8680
8675
  }
8681
8676
  @font-face {
8682
8677
  font-family: "FontAwesome";
8683
8678
  font-display: block;
8684
8679
  src: url("../webfonts/fa-brands-400.woff2") format("woff2"),
8685
- url("../webfonts/fa-brands-400.ttf") format("truetype");
8680
+ url("../webfonts/fa-brands-400.ttf") format("truetype");
8686
8681
  }
8687
8682
  @font-face {
8688
8683
  font-family: "FontAwesome";
8689
8684
  font-display: block;
8690
8685
  src: url("../webfonts/fa-regular-400.woff2") format("woff2"),
8691
- url("../webfonts/fa-regular-400.ttf") format("truetype");
8686
+ url("../webfonts/fa-regular-400.ttf") format("truetype");
8692
8687
  unicode-range: U+F003, U+F006, U+F014, U+F016-F017, U+F01A-F01B, U+F01D,
8693
- U+F022, U+F03E, U+F044, U+F046, U+F05C-F05D, U+F06E, U+F070, U+F087-F088,
8694
- U+F08A, U+F094, U+F096-F097, U+F09D, U+F0A0, U+F0A2, U+F0A4-F0A7, U+F0C5,
8695
- U+F0C7, U+F0E5-F0E6, U+F0EB, U+F0F6-F0F8, U+F10C, U+F114-F115, U+F118-F11A,
8696
- U+F11C-F11D, U+F133, U+F147, U+F14E, U+F150-F152, U+F185-F186, U+F18E,
8697
- U+F190-F192, U+F196, U+F1C1-F1C9, U+F1D9, U+F1DB, U+F1E3, U+F1EA, U+F1F7,
8698
- U+F1F9, U+F20A, U+F247-F248, U+F24A, U+F24D, U+F255-F25B, U+F25D,
8699
- U+F271-F274, U+F278, U+F27B, U+F28C, U+F28E, U+F29C, U+F2B5, U+F2B7, U+F2BA,
8700
- U+F2BC, U+F2BE, U+F2C0-F2C1, U+F2C3, U+F2D0, U+F2D2, U+F2D4, U+F2DC;
8688
+ U+F022, U+F03E, U+F044, U+F046, U+F05C-F05D, U+F06E, U+F070, U+F087-F088,
8689
+ U+F08A, U+F094, U+F096-F097, U+F09D, U+F0A0, U+F0A2, U+F0A4-F0A7, U+F0C5,
8690
+ U+F0C7, U+F0E5-F0E6, U+F0EB, U+F0F6-F0F8, U+F10C, U+F114-F115, U+F118-F11A,
8691
+ U+F11C-F11D, U+F133, U+F147, U+F14E, U+F150-F152, U+F185-F186, U+F18E,
8692
+ U+F190-F192, U+F196, U+F1C1-F1C9, U+F1D9, U+F1DB, U+F1E3, U+F1EA, U+F1F7,
8693
+ U+F1F9, U+F20A, U+F247-F248, U+F24A, U+F24D, U+F255-F25B, U+F25D,
8694
+ U+F271-F274, U+F278, U+F27B, U+F28C, U+F28E, U+F29C, U+F2B5, U+F2B7, U+F2BA,
8695
+ U+F2BC, U+F2BE, U+F2C0-F2C1, U+F2C3, U+F2D0, U+F2D2, U+F2D4, U+F2DC;
8701
8696
  }
8702
8697
  @font-face {
8703
8698
  font-family: "FontAwesome";
8704
8699
  font-display: block;
8705
8700
  src: url("../webfonts/fa-v4compatibility.woff2") format("woff2"),
8706
- url("../webfonts/fa-v4compatibility.ttf") format("truetype");
8701
+ url("../webfonts/fa-v4compatibility.ttf") format("truetype");
8707
8702
  unicode-range: U+F041, U+F047, U+F065-F066, U+F07D-F07E, U+F080, U+F08B,
8708
- U+F08E, U+F090, U+F09A, U+F0AC, U+F0AE, U+F0B2, U+F0D0, U+F0D6, U+F0E4,
8709
- U+F0EC, U+F10A-F10B, U+F123, U+F13E, U+F148-F149, U+F14C, U+F156, U+F15E,
8710
- U+F160-F161, U+F163, U+F175-F178, U+F195, U+F1F8, U+F219, U+F250, U+F252,
8711
- U+F27A;
8703
+ U+F08E, U+F090, U+F09A, U+F0AC, U+F0AE, U+F0B2, U+F0D0, U+F0D6, U+F0E4,
8704
+ U+F0EC, U+F10A-F10B, U+F123, U+F13E, U+F148-F149, U+F14C, U+F156, U+F15E,
8705
+ U+F160-F161, U+F163, U+F175-F178, U+F195, U+F1F8, U+F219, U+F250, U+F252,
8706
+ U+F27A;
8712
8707
  }`,
8713
8708
  "KOL-SKIP-NAV": `kol-link-wc > a > kol-span-wc {
8714
8709
  border-radius: var(--a11y-min-size);
@@ -9848,9 +9843,7 @@ const BMF = KoliBri.createTheme("bmf", {
9848
9843
  :host > span {
9849
9844
  border-radius: 0.3125rem;
9850
9845
  display: inline-flex;
9851
- font-size: 1em;
9852
9846
  font-style: normal;
9853
- line-height: 1.25rem;
9854
9847
  }
9855
9848
  :host > span.smart-button {
9856
9849
  align-items: center;
@@ -10265,7 +10258,7 @@ const BMF = KoliBri.createTheme("bmf", {
10265
10258
  :host > div.open > kol-heading-wc button kol-icon::part(icon)::before {
10266
10259
  content: "\\f078";
10267
10260
  }
10268
- :host > div.close > kol-heading-wc button kol-icon::part(icon)::before {
10261
+ :host > div:not(.open) > kol-heading-wc button kol-icon::part(icon)::before {
10269
10262
  content: "\\f054";
10270
10263
  }
10271
10264
  :host > div {
@@ -10542,13 +10535,14 @@ const BMF = KoliBri.createTheme("bmf", {
10542
10535
  justify-items: left;
10543
10536
  width: 100%;
10544
10537
  min-height: 44px;
10545
- gap: 0.4em;
10546
10538
  }
10547
10539
  :host kol-input.default {
10548
10540
  grid-template-columns: 1.5rem auto;
10541
+ gap: 0.4em;
10549
10542
  }
10550
10543
  :host kol-input.switch {
10551
10544
  grid-template-columns: 3.5rem auto;
10545
+ gap: 0.4em;
10552
10546
  }
10553
10547
  :host kol-input > div.input {
10554
10548
  display: inherit;
@@ -10730,15 +10724,9 @@ const BMF = KoliBri.createTheme("bmf", {
10730
10724
  :host .disabled {
10731
10725
  opacity: 0.33;
10732
10726
  }
10727
+
10733
10728
  :host kol-input.button {
10734
- cursor: inherit;
10735
- display: grid;
10736
- column-gap: 0;
10737
- grid-template-columns: 32px auto;
10738
- grid-template-areas:
10739
- "error error"
10740
- "input label"
10741
- "hint hint";
10729
+ row-gap: 0.5rem;
10742
10730
  }
10743
10731
 
10744
10732
  :host kol-input.button.checked > .input,
@@ -10746,12 +10734,7 @@ const BMF = KoliBri.createTheme("bmf", {
10746
10734
  background-color: var(--color-ice);
10747
10735
  }
10748
10736
 
10749
- :host kol-input.button > .error {
10750
- grid-area: error;
10751
- }
10752
-
10753
10737
  :host kol-input.button > label {
10754
- grid-area: label;
10755
10738
  background-color: var(--color-silver);
10756
10739
  border-top-right-radius: var(--border-radius);
10757
10740
  border-bottom-right-radius: var(--border-radius);
@@ -10763,7 +10746,6 @@ const BMF = KoliBri.createTheme("bmf", {
10763
10746
  }
10764
10747
 
10765
10748
  :host kol-input.button > .input {
10766
- grid-area: input;
10767
10749
  background-color: var(--color-silver);
10768
10750
  border-top-left-radius: var(--border-radius);
10769
10751
  border-bottom-left-radius: var(--border-radius);
@@ -10772,13 +10754,13 @@ const BMF = KoliBri.createTheme("bmf", {
10772
10754
  place-content: center;
10773
10755
  }
10774
10756
 
10775
- :host kol-input.button > .hint {
10776
- grid-area: hint;
10777
- }
10778
-
10779
10757
  :host kol-input.button > .input > div {
10780
10758
  display: flex;
10781
10759
  }
10760
+
10761
+ :host kol-input.button .icon {
10762
+ height: auto;
10763
+ }
10782
10764
  `,
10783
10765
  "KOL-INPUT-RADIO": `/* INPUT */
10784
10766
  kol-input {
@@ -10914,26 +10896,13 @@ const BMF = KoliBri.createTheme("bmf", {
10914
10896
  fieldset div label {
10915
10897
  padding-left: 0;
10916
10898
  }`,
10917
- "KOL-TOAST": `:host > div {
10918
- position: fixed;
10919
- top: 0;
10920
- right: 0;
10921
- width: 100%;
10922
- height: 0;
10923
- z-index: 200;
10924
- }
10925
- :host > div > kol-alert {
10926
- display: block;
10927
- margin-left: auto;
10928
- margin-right: unset;
10929
- padding: 2rem;
10930
- max-width: 440px;
10931
- }
10932
- :host > div > kol-button-wc {
10933
- top: 0;
10934
- position: relative;
10935
- display: block;
10936
- width: 1em;
10899
+ "KOL-TOAST-CONTAINER": `:host {
10900
+ top: 1rem;
10901
+ right: 1rem;
10902
+ width: 440px;
10903
+ }`,
10904
+ "KOL-TOAST": `.toast {
10905
+ margin-top: 1rem;
10937
10906
  }`,
10938
10907
  "KOL-TABS": `button:disabled {
10939
10908
  opacity: 0.5;
@@ -18498,6 +18467,9 @@ const BMF = KoliBri.createTheme("bmf", {
18498
18467
  border-color: var(--color-ocean);
18499
18468
  color: var(--color-white);
18500
18469
  cursor: pointer;
18470
+ }`,
18471
+ "KOL-SPLIT-BUTTON": `.popover {
18472
+ background: #fff;
18501
18473
  }`
18502
18474
  });
18503
18475
 
@@ -19507,12 +19479,12 @@ const DEFAULT = KoliBri.createTheme("default", {
19507
19479
  "KOL-BADGE": css`
19508
19480
  :host {
19509
19481
  display: inline-block;
19482
+ font-size: inherit;
19510
19483
  }
19511
19484
  :host > span {
19512
19485
  border-radius: var(--border-radius);
19513
19486
  display: inline-flex;
19514
19487
  font-style: normal;
19515
- line-height: 1.25rem;
19516
19488
  }
19517
19489
  :host > span.smart-button {
19518
19490
  align-items: center;
@@ -20142,6 +20114,9 @@ const DEFAULT = KoliBri.createTheme("default", {
20142
20114
  :host kol-input.switch {
20143
20115
  grid-template-columns: 3.5rem auto;
20144
20116
  }
20117
+ :host kol-input.button {
20118
+ gap: 0.4rem 0;
20119
+ }
20145
20120
  :host kol-input > div.input {
20146
20121
  display: inherit;
20147
20122
  min-height: var(--a11y-min-size);
@@ -20439,27 +20414,16 @@ const DEFAULT = KoliBri.createTheme("default", {
20439
20414
  padding-left: 0;
20440
20415
  }
20441
20416
  `,
20442
- "KOL-TOAST": css`
20443
- :host > div {
20444
- position: fixed;
20445
- top: 0;
20446
- right: 0;
20447
- width: 100%;
20448
- height: 0;
20449
- z-index: 200;
20450
- }
20451
- :host > div > kol-alert {
20452
- display: block;
20453
- margin-left: auto;
20454
- margin-right: unset;
20455
- padding: 2rem;
20456
- max-width: 750px;
20417
+ "KOL-TOAST-CONTAINER": css`
20418
+ :host {
20419
+ top: 1rem;
20420
+ right: 1rem;
20421
+ width: 440px;
20457
20422
  }
20458
- :host > div > kol-button-wc {
20459
- top: 0;
20460
- position: relative;
20461
- display: block;
20462
- width: 1rem;
20423
+ `,
20424
+ "KOL-TOAST": css`
20425
+ .toast {
20426
+ margin-top: 1rem;
20463
20427
  }
20464
20428
  `,
20465
20429
  "KOL-TABS": css`
@@ -20920,7 +20884,10 @@ const DEFAULT = KoliBri.createTheme("default", {
20920
20884
  color: var(--color-light);
20921
20885
  cursor: pointer;
20922
20886
  }
20923
- `
20887
+ `,
20888
+ "KOL-SPLIT-BUTTON": `.popover {
20889
+ background: #fff;
20890
+ }`
20924
20891
  });
20925
20892
 
20926
20893
  const ECL_EC = KoliBri.createTheme("ecl-ec", {
@@ -21078,7 +21045,7 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21078
21045
  outline: 2px solid var(--color-blue);
21079
21046
  outline-offset: -2px;
21080
21047
  }
21081
- div[part="content"] {
21048
+ .content {
21082
21049
  padding: var(--spacing-s) var(--spacing-m);
21083
21050
  }`,
21084
21051
  "KOL-INDENTED-TEXT": `:host > div {
@@ -21277,7 +21244,7 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21277
21244
  color: var(--color-blue-130);
21278
21245
  }`,
21279
21246
  "KOL-BADGE": `:host > span {
21280
- font: normal normal var(--font-weight) 0.875rem/1em var(--font-family);
21247
+ font: normal normal var(--font-weight) 1em var(--font-family);
21281
21248
  padding: calc(0.5rem - 1px) calc(0.75rem - 1px);
21282
21249
  text-transform: uppercase;
21283
21250
  }`,
@@ -21559,6 +21526,13 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21559
21526
  kol-input {
21560
21527
  gap: var(--spacing-xs);
21561
21528
  }
21529
+ .button {
21530
+ gap: var(--spacing-xs) 0;
21531
+ grid-template-areas:
21532
+ "input label"
21533
+ "hint hint"
21534
+ "error error";
21535
+ }
21562
21536
  kol-input > .input {
21563
21537
  order: 2;
21564
21538
  }
@@ -21583,7 +21557,6 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21583
21557
  select,
21584
21558
  textarea {
21585
21559
  border: none;
21586
- margin: 1px;
21587
21560
  outline: none;
21588
21561
  }
21589
21562
  input,
@@ -21611,6 +21584,7 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21611
21584
  color: var(--color-grey);
21612
21585
  order: 4;
21613
21586
  align-items: center;
21587
+ padding: 1px;
21614
21588
  }
21615
21589
  input::placeholder,
21616
21590
  textarea::placeholder {
@@ -21663,6 +21637,7 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21663
21637
  "KOL-INPUT-RADIO": `fieldset {
21664
21638
  border: 0;
21665
21639
  gap: 0.5rem;
21640
+ flex-wrap: wrap;
21666
21641
  }
21667
21642
  .input-slot {
21668
21643
  gap: 0.25rem;
@@ -21679,6 +21654,13 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21679
21654
  fieldset kol-input {
21680
21655
  order: 4;
21681
21656
  }
21657
+ .radio-input-wrapper {
21658
+ display: flex;
21659
+ align-items: center;
21660
+ }
21661
+ .radio-label {
21662
+ padding-left: 0.5rem;
21663
+ }
21682
21664
  input[type="radio"] {
21683
21665
  border: 2px solid var(--color-grey-75);
21684
21666
  }
@@ -21721,6 +21703,7 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21721
21703
  font-size: 0.875em;
21722
21704
  margin-left: calc(-1 * var(--spacing-xs));
21723
21705
  order: 1;
21706
+ width: 100%;
21724
21707
  }
21725
21708
  .hint {
21726
21709
  font-size: 0.875rem;
@@ -21812,6 +21795,7 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21812
21795
  color: var(--color-grey);
21813
21796
  order: 4;
21814
21797
  align-items: center;
21798
+ padding: 1px;
21815
21799
  }
21816
21800
  input::placeholder,
21817
21801
  textarea::placeholder {
@@ -21836,7 +21820,6 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21836
21820
  select,
21837
21821
  textarea {
21838
21822
  border: none;
21839
- margin: 1px 0.5em;
21840
21823
  outline: none;
21841
21824
  }
21842
21825
  input,
@@ -21864,6 +21847,7 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21864
21847
  color: var(--color-grey);
21865
21848
  order: 4;
21866
21849
  align-items: center;
21850
+ padding: 1px 0.5em;
21867
21851
  }
21868
21852
  input::placeholder,
21869
21853
  textarea::placeholder {
@@ -21888,7 +21872,6 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21888
21872
  select,
21889
21873
  textarea {
21890
21874
  border: none;
21891
- margin: 1px 0.5em;
21892
21875
  outline: none;
21893
21876
  }
21894
21877
  input,
@@ -21916,6 +21899,7 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21916
21899
  color: var(--color-grey);
21917
21900
  order: 4;
21918
21901
  align-items: center;
21902
+ padding: 1px 0.5em;
21919
21903
  }
21920
21904
  input::placeholder,
21921
21905
  textarea::placeholder {
@@ -21940,7 +21924,6 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21940
21924
  select,
21941
21925
  textarea {
21942
21926
  border: none;
21943
- margin: 1px 0.5em;
21944
21927
  outline: none;
21945
21928
  }
21946
21929
  input,
@@ -21968,6 +21951,7 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21968
21951
  color: var(--color-grey);
21969
21952
  order: 4;
21970
21953
  align-items: center;
21954
+ padding: 1px 0.5em;
21971
21955
  }
21972
21956
  input::placeholder,
21973
21957
  textarea::placeholder {
@@ -21992,7 +21976,6 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
21992
21976
  select,
21993
21977
  textarea {
21994
21978
  border: none;
21995
- margin: 1px 0.5em;
21996
21979
  outline: none;
21997
21980
  }
21998
21981
  input,
@@ -22020,6 +22003,7 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
22020
22003
  color: var(--color-grey);
22021
22004
  order: 4;
22022
22005
  align-items: center;
22006
+ padding: 1px 0.5em;
22023
22007
  }
22024
22008
  input::placeholder,
22025
22009
  textarea::placeholder {
@@ -22096,7 +22080,6 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
22096
22080
  select,
22097
22081
  textarea {
22098
22082
  border: none;
22099
- margin: 1px 0.5em;
22100
22083
  outline: none;
22101
22084
  }
22102
22085
  input,
@@ -22124,6 +22107,7 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
22124
22107
  color: var(--color-grey);
22125
22108
  order: 4;
22126
22109
  align-items: center;
22110
+ padding: 1px 0.5em;
22127
22111
  }
22128
22112
  input::placeholder,
22129
22113
  textarea::placeholder {
@@ -22148,7 +22132,6 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
22148
22132
  select,
22149
22133
  textarea {
22150
22134
  border: none;
22151
- margin: 1px 0.5em;
22152
22135
  outline: none;
22153
22136
  }
22154
22137
  input,
@@ -22176,6 +22159,7 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
22176
22159
  color: var(--color-grey);
22177
22160
  order: 4;
22178
22161
  align-items: center;
22162
+ padding: 1px 0.5em;
22179
22163
  }
22180
22164
  .counter {
22181
22165
  order: 5;
@@ -22360,6 +22344,24 @@ const ECL_EC = KoliBri.createTheme("ecl-ec", {
22360
22344
  border-color: var(--color-blue);
22361
22345
  color: var(--color-white);
22362
22346
  cursor: pointer;
22347
+ }`,
22348
+ "KOL-SPLIT-BUTTON": `.popover {
22349
+ background: #fff;
22350
+ }`,
22351
+ "KOL-TOAST-CONTAINER": `:host {
22352
+ top: 1rem;
22353
+ right: 1rem;
22354
+ width: 440px;
22355
+ }`,
22356
+ "KOL-TOAST": `:host {
22357
+ display: block;
22358
+ }
22359
+ .toast {
22360
+ background: #fff;
22361
+ margin-top: 1rem;
22362
+ }
22363
+ .alert {
22364
+ display: block;
22363
22365
  }`
22364
22366
  });
22365
22367
 
@@ -22409,6 +22411,7 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
22409
22411
  --color-grey-110: #222732;
22410
22412
  --color-grey-100: #262b38;
22411
22413
  --color-grey-80: #515560;
22414
+ --color-grey-75: #515560;
22412
22415
  --color-grey-60: #7d8088;
22413
22416
  --color-grey-40: #a8aaaf;
22414
22417
  --color-grey-20: #d4d5d7;
@@ -22622,7 +22625,7 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
22622
22625
  .open .headline button kol-icon::part(icon)::before {
22623
22626
  content: "\\f077";
22624
22627
  }
22625
- .close .headline button kol-icon::part(icon)::before {
22628
+ :not(.open) .headline button kol-icon::part(icon)::before {
22626
22629
  content: "\\f078";
22627
22630
  }
22628
22631
  .content,
@@ -23125,6 +23128,13 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23125
23128
  kol-input {
23126
23129
  gap: var(--spacing-xs);
23127
23130
  }
23131
+ .button {
23132
+ gap: var(--spacing-xs) 0;
23133
+ grid-template-areas:
23134
+ "input label"
23135
+ "hint hint"
23136
+ "error error";
23137
+ }
23128
23138
  kol-input > .input {
23129
23139
  order: 2;
23130
23140
  }
@@ -23149,7 +23159,6 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23149
23159
  select,
23150
23160
  textarea {
23151
23161
  border: none;
23152
- margin: 1px;
23153
23162
  outline: none;
23154
23163
  }
23155
23164
  input,
@@ -23177,6 +23186,7 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23177
23186
  color: var(--color-grey);
23178
23187
  order: 4;
23179
23188
  align-items: center;
23189
+ padding: 1px;
23180
23190
  }
23181
23191
  input::placeholder,
23182
23192
  textarea::placeholder {
@@ -23253,7 +23263,6 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23253
23263
  select,
23254
23264
  textarea {
23255
23265
  border: none;
23256
- margin: 1px 0.5em;
23257
23266
  outline: none;
23258
23267
  }
23259
23268
  input,
@@ -23281,6 +23290,7 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23281
23290
  color: var(--color-grey);
23282
23291
  order: 4;
23283
23292
  align-items: center;
23293
+ padding: 1px 0.5em;
23284
23294
  }
23285
23295
  input::placeholder,
23286
23296
  textarea::placeholder {
@@ -23305,7 +23315,6 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23305
23315
  select,
23306
23316
  textarea {
23307
23317
  border: none;
23308
- margin: 1px 0.5em;
23309
23318
  outline: none;
23310
23319
  }
23311
23320
  input,
@@ -23333,6 +23342,7 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23333
23342
  color: var(--color-grey);
23334
23343
  order: 4;
23335
23344
  align-items: center;
23345
+ padding: 1px 0.5em;
23336
23346
  }
23337
23347
  input::placeholder,
23338
23348
  textarea::placeholder {
@@ -23357,7 +23367,6 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23357
23367
  select,
23358
23368
  textarea {
23359
23369
  border: none;
23360
- margin: 1px 0.5em;
23361
23370
  outline: none;
23362
23371
  }
23363
23372
  input,
@@ -23385,6 +23394,7 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23385
23394
  color: var(--color-grey);
23386
23395
  order: 4;
23387
23396
  align-items: center;
23397
+ padding: 1px 0.5em;
23388
23398
  }
23389
23399
  input::placeholder,
23390
23400
  textarea::placeholder {
@@ -23409,7 +23419,6 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23409
23419
  select,
23410
23420
  textarea {
23411
23421
  border: none;
23412
- margin: 1px;
23413
23422
  outline: none;
23414
23423
  }
23415
23424
  input,
@@ -23437,6 +23446,7 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23437
23446
  color: var(--color-grey);
23438
23447
  order: 4;
23439
23448
  align-items: center;
23449
+ padding: 1px;
23440
23450
  }
23441
23451
  input::placeholder,
23442
23452
  textarea::placeholder {
@@ -23461,7 +23471,6 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23461
23471
  select,
23462
23472
  textarea {
23463
23473
  border: none;
23464
- margin: 1px;
23465
23474
  outline: none;
23466
23475
  }
23467
23476
  input,
@@ -23489,6 +23498,7 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23489
23498
  color: var(--color-grey);
23490
23499
  order: 4;
23491
23500
  align-items: center;
23501
+ padding: 1px;
23492
23502
  }
23493
23503
  input::placeholder,
23494
23504
  textarea::placeholder {
@@ -23513,7 +23523,6 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23513
23523
  select,
23514
23524
  textarea {
23515
23525
  border: none;
23516
- margin: 1px 0.5em;
23517
23526
  outline: none;
23518
23527
  }
23519
23528
  input,
@@ -23541,6 +23550,7 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23541
23550
  color: var(--color-grey);
23542
23551
  order: 4;
23543
23552
  align-items: center;
23553
+ padding: 1px 0.5em;
23544
23554
  }
23545
23555
  input::placeholder,
23546
23556
  textarea::placeholder {
@@ -23565,7 +23575,6 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23565
23575
  select,
23566
23576
  textarea {
23567
23577
  border: none;
23568
- margin: 1px 0.5em;
23569
23578
  outline: none;
23570
23579
  }
23571
23580
  input,
@@ -23593,6 +23602,7 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23593
23602
  color: var(--color-grey);
23594
23603
  order: 4;
23595
23604
  align-items: center;
23605
+ padding: 1px 0.5em;
23596
23606
  }
23597
23607
  kol-input .counter {
23598
23608
  order: 5;
@@ -23766,9 +23776,7 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23766
23776
  "KOL-INPUT-RADIO": `fieldset {
23767
23777
  border: 0;
23768
23778
  gap: 0.5rem;
23769
- }
23770
- .input-slot {
23771
- gap: 0.25rem;
23779
+ flex-wrap: wrap;
23772
23780
  }
23773
23781
  fieldset kol-alert {
23774
23782
  order: 1;
@@ -23782,8 +23790,16 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23782
23790
  fieldset kol-input {
23783
23791
  order: 4;
23784
23792
  }
23793
+ .radio-input-wrapper {
23794
+ display: flex;
23795
+ align-items: center;
23796
+ }
23797
+ .radio-label {
23798
+ padding-left: 0.5rem;
23799
+ }
23785
23800
  input[type="radio"] {
23786
- border: 2px solid var(--color-grey-75);
23801
+ outline: 2px solid var(--color-grey-75);
23802
+ outline-offset: 2px;
23787
23803
  }
23788
23804
  input[type="radio"]:before {
23789
23805
  display: none;
@@ -23793,8 +23809,7 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23793
23809
  border-width: 7px;
23794
23810
  }
23795
23811
  input[type="radio"]:focus {
23796
- outline: 2px solid var(--color-blue);
23797
- outline-offset: 2px;
23812
+ outline-color: var(--color-blue);
23798
23813
  }
23799
23814
  input[type="radio"]:not(:disabled):hover {
23800
23815
  border-color: var(--color-blue);
@@ -23824,11 +23839,15 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23824
23839
  font-size: 0.875em;
23825
23840
  margin-left: calc(-1 * var(--spacing-xs));
23826
23841
  order: 1;
23842
+ width: 100%;
23827
23843
  }
23828
23844
  .hint {
23829
23845
  font-size: 0.875rem;
23830
23846
  order: 4;
23831
23847
  }`,
23848
+ "KOL-INPUT-RANGE": `.inputs-wrapper {
23849
+ gap: 1rem;
23850
+ }`,
23832
23851
  "KOL-SKIP-NAV": `kol-link-wc > a > kol-span-wc {
23833
23852
  border-radius: 4px;
23834
23853
  gap: 0.5rem;
@@ -23837,6 +23856,24 @@ const ECL_EU = KoliBri.createTheme("ecl-eu", {
23837
23856
  background-color: #0e47cb;
23838
23857
  color: #fff;
23839
23858
  cursor: pointer;
23859
+ }`,
23860
+ "KOL-SPLIT-BUTTON": `.popover {
23861
+ background: #fff;
23862
+ }`,
23863
+ "KOL-TOAST-CONTAINER": `:host {
23864
+ top: 1rem;
23865
+ right: 1rem;
23866
+ width: 440px;
23867
+ }`,
23868
+ "KOL-TOAST": `:host {
23869
+ display: block;
23870
+ }
23871
+ .toast {
23872
+ background: #fff;
23873
+ margin-top: 1rem;
23874
+ }
23875
+ .alert {
23876
+ display: block;
23840
23877
  }`
23841
23878
  });
23842
23879
 
@@ -24570,6 +24607,9 @@ const ITZBund = KoliBri.createTheme("itzbund", {
24570
24607
  :host .default {
24571
24608
  border-color: var(--color-anthrazit);
24572
24609
  }
24610
+ .heading {
24611
+ gap: 0.5rem;
24612
+ }
24573
24613
  .default .heading-icon {
24574
24614
  background-color: var(--color-anthrazit);
24575
24615
  }
@@ -24643,7 +24683,6 @@ const ITZBund = KoliBri.createTheme("itzbund", {
24643
24683
  :host > span {
24644
24684
  border-radius: 0.3125rem;
24645
24685
  display: inline-flex;
24646
- line-height: 1.25rem;
24647
24686
  }
24648
24687
  :host > span kol-button-wc {
24649
24688
  border-left: 1px solid rgba(0, 0, 0, 0.25);
@@ -24956,6 +24995,9 @@ const ITZBund = KoliBri.createTheme("itzbund", {
24956
24995
  font-size: inherit;
24957
24996
  line-height: inherit;
24958
24997
  }
24998
+ .content {
24999
+ padding: 0.5rem;
25000
+ }
24959
25001
  :host > div > kol-heading-wc button kol-icon::part(close)::before {
24960
25002
  font-family: "Font Awesome 6 Free";
24961
25003
  content: "\\f077";
@@ -25165,9 +25207,16 @@ const ITZBund = KoliBri.createTheme("itzbund", {
25165
25207
  kol-input.default {
25166
25208
  grid-template-columns: calc(6 * 2 * var(--spacing)) auto;
25167
25209
  }
25168
- kol-input.switch {
25210
+ .switch {
25169
25211
  grid-template-columns: calc(13 * 2 * var(--spacing)) auto;
25170
25212
  }
25213
+ .button {
25214
+ gap: 0.5rem 0;
25215
+ grid-template-areas:
25216
+ "input label"
25217
+ "hint hint"
25218
+ "error error";
25219
+ }
25171
25220
  kol-input > div.input {
25172
25221
  display: inline-flex;
25173
25222
  order: 1;
@@ -25326,8 +25375,10 @@ const ITZBund = KoliBri.createTheme("itzbund", {
25326
25375
  border: 0px;
25327
25376
  margin: 0px;
25328
25377
  padding: 0px;
25329
- display: grid;
25330
- gap: 0.25em;
25378
+ flex-wrap: wrap;
25379
+ }
25380
+ fieldset.horizontal {
25381
+ gap: 1rem;
25331
25382
  }
25332
25383
  fieldset legend {
25333
25384
  display: block;
@@ -25368,28 +25419,22 @@ const ITZBund = KoliBri.createTheme("itzbund", {
25368
25419
  background-color: var(--color-input-bg-default);
25369
25420
  border-color: #999;
25370
25421
  cursor: not-allowed;
25371
- }`,
25372
- "KOL-TOAST": `:host > div {
25373
- position: fixed;
25374
- top: 0;
25375
- left: 0;
25376
- width: 100%;
25377
- height: 0;
25378
- z-index: 200;
25379
25422
  }
25380
- :host > div > kol-alert {
25381
- display: block;
25382
- margin: auto;
25383
- padding: 1rem;
25384
- max-width: 750px;
25385
- }
25386
- :host > div > kol-button-wc {
25387
- top: 0;
25388
- position: relative;
25389
- display: block;
25390
- margin: auto;
25391
- width: 1em;
25423
+ kol-alert {
25424
+ width: 100%:
25425
+ }`,
25426
+ "KOL-TOAST-CONTAINER": `:host {
25427
+ top: 1rem;
25428
+ width: 750px;
25429
+ left: 50%;
25430
+ transform: translateX(-50%);
25392
25431
  }`,
25432
+ "KOL-TOAST": `
25433
+ .toast {
25434
+ background: #fff;
25435
+ margin-top: 1rem;
25436
+ }
25437
+ `,
25393
25438
  "KOL-TABS": `:host > div {
25394
25439
  display: block;
25395
25440
  width: 100%;
@@ -25558,6 +25603,9 @@ const ITZBund = KoliBri.createTheme("itzbund", {
25558
25603
  border-color: var(--color-petrol);
25559
25604
  color: var(--color-weiss);
25560
25605
  cursor: pointer;
25606
+ }`,
25607
+ "KOL-SPLIT-BUTTON": `.popover {
25608
+ background: #fff;
25561
25609
  }`
25562
25610
  });
25563
25611
 
@@ -36026,6 +36074,9 @@ const MAPZ = KoliBri.createTheme("mapz", {
36026
36074
  kol-input.switch {
36027
36075
  grid-template-columns: calc(13 * var(--spacing)) auto;
36028
36076
  }
36077
+ .button {
36078
+ gap: 0.5rem 0;
36079
+ }
36029
36080
  kol-input > div.input {
36030
36081
  display: inline-flex;
36031
36082
  order: 1;
@@ -36577,6 +36628,9 @@ const MAPZ = KoliBri.createTheme("mapz", {
36577
36628
  font-weight: inherit;
36578
36629
  font-size: inherit;
36579
36630
  line-height: inherit;
36631
+ }
36632
+ .content {
36633
+ padding: 0.5rem;
36580
36634
  }`,
36581
36635
  "KOL-CARD": `:host > div {
36582
36636
  border-color: var(--kolibri-border-color);
@@ -36601,7 +36655,7 @@ const MAPZ = KoliBri.createTheme("mapz", {
36601
36655
  padding: 0.5rem;
36602
36656
  }
36603
36657
  :host div.content {
36604
- padding: 0;
36658
+ padding: 0.5rem;
36605
36659
  }
36606
36660
  :host div.content,
36607
36661
  :host div.content + div.footer {
@@ -36864,28 +36918,18 @@ const MAPZ = KoliBri.createTheme("mapz", {
36864
36918
  :host > div.tabs-align-right > div {
36865
36919
  border-radius: 0.25rem 0 0 0.25rem;
36866
36920
  }`,
36867
- "KOL-TOAST": `:host > div {
36868
- position: fixed;
36869
- top: 0;
36870
- left: 0;
36871
- width: 100%;
36872
- height: 0;
36873
- z-index: 200;
36874
- }
36875
- :host > div > kol-alert {
36876
- background-color: white;
36877
- border-radius: var(--kolibri-border-radius);
36878
- display: block;
36879
- margin: 1rem auto;
36880
- max-width: 750px;
36881
- }
36882
- :host > div > kol-button-wc {
36883
- top: 0;
36884
- position: relative;
36885
- display: block;
36886
- margin: auto;
36887
- width: 1em;
36921
+ "KOL-TOAST-CONTAINER": `:host {
36922
+ top: 1rem;
36923
+ width: 750px;
36924
+ left: 50%;
36925
+ transform: translateX(-50%);
36888
36926
  }`,
36927
+ "KOL-TOAST": `
36928
+ .toast {
36929
+ background: #fff;
36930
+ margin-top: 1rem;
36931
+ }
36932
+ `,
36889
36933
  "KOL-NAV": `:host > div {
36890
36934
  gap: var(--spacing);
36891
36935
  }
@@ -52735,6 +52779,9 @@ const MAPZ = KoliBri.createTheme("mapz", {
52735
52779
  border-color: var(--kolibri-border-color);
52736
52780
  color: white;
52737
52781
  cursor: pointer;
52782
+ }`,
52783
+ "KOL-SPLIT-BUTTON": `.popover {
52784
+ background: #fff;
52738
52785
  }`
52739
52786
  });
52740
52787
 
@@ -52837,7 +52884,6 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
52837
52884
  :host > span {
52838
52885
  border-radius: 0.3125rem;
52839
52886
  display: inline-flex;
52840
- line-height: 1.25rem;
52841
52887
  }
52842
52888
  :host > span kol-span-wc {
52843
52889
  padding: 0.25rem 0.5rem;
@@ -53066,13 +53112,13 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
53066
53112
  }
53067
53113
  th[data-sort="sort-NOS"] kol-button::part(icon)::before,
53068
53114
  th[data-sort="sort-undefined"] kol-button::part(icon)::before {
53069
- content: "\f0dc";
53115
+ content: "\\f0dc";
53070
53116
  }
53071
53117
  th[data-sort="sort-ASC"] kol-button::part(icon)::before {
53072
- content: "\f0de";
53118
+ content: "\\f0de";
53073
53119
  }
53074
53120
  th[data-sort="sort-DESC"] kol-button::part(icon)::before {
53075
- content: "\f0dd";
53121
+ content: "\\f0dd";
53076
53122
  }`,
53077
53123
  "KOL-ACCORDION": `:host > div {
53078
53124
  border-color: var(--border-color);
@@ -53112,7 +53158,7 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
53112
53158
  :host > div.open > kol-heading-wc button kol-icon::part(icon)::before {
53113
53159
  content: "\\f077";
53114
53160
  }
53115
- :host > div.close > kol-heading-wc button kol-icon::part(icon)::before {
53161
+ :host > div:not(.open) > kol-heading-wc button kol-icon::part(icon)::before {
53116
53162
  content: "\\f078";
53117
53163
  }`,
53118
53164
  "KOL-ALERT": `kol-alert-wc {
@@ -53182,7 +53228,7 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
53182
53228
  display: flex;
53183
53229
  gap: var(--spacing);
53184
53230
  flex-grow: 1;
53185
- align-items: flex-start;
53231
+ align-items: center;
53186
53232
  }
53187
53233
  .msg .heading > div {
53188
53234
  display: flex;
@@ -53262,8 +53308,11 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
53262
53308
  border-radius: var(--border-radius);
53263
53309
  border-style: solid;
53264
53310
  border-width: 1px;
53311
+ background: #fff;
53265
53312
  }
53266
- :host > div .header {
53313
+ :host > div .header,
53314
+ .content,
53315
+ .footer {
53267
53316
  padding: 1.5rem;
53268
53317
  }`,
53269
53318
  "KOL-BUTTON": `:host > kol-button-wc > button > kol-span-wc,
@@ -53490,27 +53539,18 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
53490
53539
  padding: 0.75rem 1rem;
53491
53540
  text-decoration: underline;
53492
53541
  }`,
53493
- "KOL-TOAST": `:host > div {
53494
- position: fixed;
53495
- top: 0;
53496
- left: 0;
53497
- width: 100%;
53498
- height: 0;
53499
- z-index: 200;
53500
- }
53501
- :host > div > kol-alert {
53502
- display: block;
53503
- margin: auto;
53504
- padding: 1rem;
53505
- max-width: 750px;
53506
- }
53507
- :host > div > kol-button-wc {
53508
- top: 0;
53509
- position: relative;
53510
- display: block;
53511
- margin: auto;
53512
- width: 1em;
53542
+ "KOL-TOAST-CONTAINER": `:host {
53543
+ top: 1rem;
53544
+ width: 750px;
53545
+ left: 50%;
53546
+ transform: translateX(-50%);
53513
53547
  }`,
53548
+ "KOL-TOAST": `
53549
+ .toast {
53550
+ background: #fff;
53551
+ margin-top: 1rem;
53552
+ }
53553
+ `,
53514
53554
  "KOL-PROGRESS": `svg line:first-child,
53515
53555
  svg circle:first-child {
53516
53556
  stroke: var(--color-neutral);
@@ -53557,6 +53597,13 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
53557
53597
  kol-input.switch {
53558
53598
  grid-template-columns: calc(13 * var(--spacing)) auto;
53559
53599
  }
53600
+ .button {
53601
+ grid-template-areas:
53602
+ "input label"
53603
+ "hint hint"
53604
+ "error error";
53605
+ gap: 0.5rem 0;
53606
+ }
53560
53607
  kol-input > div.input {
53561
53608
  display: inline-flex;
53562
53609
  order: 1;
@@ -53748,6 +53795,13 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
53748
53795
  fieldset kol-input {
53749
53796
  order: 2;
53750
53797
  }
53798
+ .radio-input-wrapper {
53799
+ display: flex;
53800
+ align-items: center;
53801
+ }
53802
+ .radio-label {
53803
+ padding-left: 0.5rem;
53804
+ }
53751
53805
  .disabled {
53752
53806
  opacity: 0.33;
53753
53807
  }
@@ -61363,6 +61417,9 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
61363
61417
  border-color: var(--color-blau-dark);
61364
61418
  color: white;
61365
61419
  cursor: pointer;
61420
+ }`,
61421
+ "KOL-SPLIT-BUTTON": `.popover {
61422
+ background: #fff;
61366
61423
  }`
61367
61424
  });
61368
61425