@public-ui/themes 1.7.0-rc.2 → 1.7.0-rc.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +556 -672
- package/dist/index.mjs +556 -672
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -387,7 +387,7 @@ const KoliBri = new Theme("kol", KeyEnum, TagEnum);
|
|
|
387
387
|
const BAMF = KoliBri.createTheme("bamf", {});
|
|
388
388
|
|
|
389
389
|
const BZSt = KoliBri.createTheme("bzst", {
|
|
390
|
-
GLOBAL: `/* colors */
|
|
390
|
+
GLOBAL: `/* NOTE: Alle ':root' CSS properties sollten in KoliBri zu ':host' kopiert werden und umgekehrt. Damit vereinheitlicht man alle Variablen auf beiden Seiten und kann diese dann individuell nutzen.*/ /* colors */
|
|
391
391
|
:root,
|
|
392
392
|
:host {
|
|
393
393
|
/* token */
|
|
@@ -399,7 +399,6 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
399
399
|
--color-green-dark: #23614e;
|
|
400
400
|
--color-heroic-blue: #126dff;
|
|
401
401
|
--color-mercury: #ebebeb;
|
|
402
|
-
--color-ocean: #0077b6;
|
|
403
402
|
--color-red-epiphyllum: #d00000;
|
|
404
403
|
--color-speedwell: #595f73;
|
|
405
404
|
--color-tropic-sea: #007194;
|
|
@@ -474,21 +473,17 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
474
473
|
:root,
|
|
475
474
|
:host {
|
|
476
475
|
/* template */
|
|
477
|
-
--formBorderWidthAndStyle: 1px solid;
|
|
478
|
-
--
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
--
|
|
482
|
-
--formBorderHover: var(--formBorderWidthAndStyle) var(--color-green-light);
|
|
483
|
-
--formBorderDisabled: var(--formBorderWidthAndStyle) var(--color-mercury);
|
|
484
|
-
--formBorderInvalid: var(--formBorderWidthAndStyle)
|
|
485
|
-
var(--color-red-epiphyllum);
|
|
476
|
+
--formBorderWidthAndStyle: 1px solid; /* TODO: eigentlich --color-green sein, aber im Styleguide ist der Wert: #23614E */
|
|
477
|
+
--formBorder: var(--formBorderWidthAndStyle) var(--colorPrimarySuccess);
|
|
478
|
+
--formBorderHover: var(--formBorderWidthAndStyle) var(--colorPrimaryActive);
|
|
479
|
+
--formBorderDisabled: var(--formBorderWidthAndStyle) var(--colorDisabled);
|
|
480
|
+
--formBorderInvalid: var(--formBorderWidthAndStyle) var(--colorSignalError);
|
|
486
481
|
--focusOutline: var(--colorSignalFocus) solid 2px;
|
|
487
|
-
--formFieldBackground: var(--
|
|
488
|
-
--formFieldBackgroundHover: var(--
|
|
482
|
+
--formFieldBackground: var(--colorLight); /*Select option */
|
|
483
|
+
--formFieldBackgroundHover: var(--colorPrimary); /* Select options */
|
|
489
484
|
--formFieldBackgroundEven: var(--formFieldBackground); /* Select options */
|
|
490
|
-
--formFieldBackgroundOdd: var(--
|
|
491
|
-
--formFieldBackgroundDisabled: var(--
|
|
485
|
+
--formFieldBackgroundOdd: var(--colorSecondaryActive);
|
|
486
|
+
--formFieldBackgroundDisabled: var(--colorSecondarySuccess);
|
|
492
487
|
--formFieldTextColorDisabled: var(--colorTextDisabled);
|
|
493
488
|
} /* ********************************* */ /* ********************************* */ /* ********************************* */ /* ********************************* */
|
|
494
489
|
:host {
|
|
@@ -518,26 +513,33 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
518
513
|
:host * {
|
|
519
514
|
box-sizing: border-box;
|
|
520
515
|
}
|
|
521
|
-
|
|
522
|
-
|
|
516
|
+
h1,
|
|
517
|
+
h2,
|
|
518
|
+
h3,
|
|
519
|
+
h4,
|
|
520
|
+
h5,
|
|
521
|
+
h6 {
|
|
523
522
|
font-family: var(--textFontSerif);
|
|
523
|
+
}
|
|
524
|
+
h1,
|
|
525
|
+
h2 {
|
|
524
526
|
font-weight: var(--textFontWeight);
|
|
525
527
|
}
|
|
526
|
-
|
|
528
|
+
h1 {
|
|
527
529
|
font-size: var(--headline1FontSize);
|
|
528
530
|
line-height: var(--headline1LineHeight);
|
|
529
531
|
}
|
|
530
|
-
|
|
532
|
+
h2 {
|
|
531
533
|
font-size: var(--headline2FontSize);
|
|
532
534
|
line-height: var(--headline2LineHeight);
|
|
533
535
|
}
|
|
534
|
-
|
|
536
|
+
h3 {
|
|
535
537
|
font-size: var(--headline3FontSize);
|
|
536
538
|
line-height: var(--headline3LineHeight);
|
|
537
539
|
}
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
540
|
+
h4,
|
|
541
|
+
h5,
|
|
542
|
+
h6 {
|
|
541
543
|
font-size: var(--headline4FontSize);
|
|
542
544
|
line-height: var(--headline4LineHeight);
|
|
543
545
|
}
|
|
@@ -554,17 +556,12 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
554
556
|
letter-spacing: inherit;
|
|
555
557
|
display: block;
|
|
556
558
|
} /* a,button,caption,input,option,select,summary,table,textarea {font-size: 1rem;} */
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
input:focus,
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
textarea:focus {
|
|
563
|
-
cursor: pointer;
|
|
564
|
-
outline-color: var(--color-focus);
|
|
559
|
+
*[tabindex]:focus,
|
|
560
|
+
kol-input:not(.checkbox, .radio) .input:focus-within,
|
|
561
|
+
kol-input:is(.checkbox, .radio) input:focus,
|
|
562
|
+
summary:focus {
|
|
563
|
+
outline: var(--focusOutline);
|
|
565
564
|
outline-offset: 2px;
|
|
566
|
-
outline-style: solid;
|
|
567
|
-
outline-width: 0;
|
|
568
565
|
transition: outline-offset 0.2s linear;
|
|
569
566
|
}
|
|
570
567
|
@keyframes spin {
|
|
@@ -574,6 +571,22 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
574
571
|
100% {
|
|
575
572
|
transform: rotate(360deg);
|
|
576
573
|
}
|
|
574
|
+
}
|
|
575
|
+
kol-tooltip .area {
|
|
576
|
+
background-color: var(--colorDark);
|
|
577
|
+
color: var(--colorLight);
|
|
578
|
+
}
|
|
579
|
+
kol-tooltip kol-span-wc {
|
|
580
|
+
line-height: 1.5em;
|
|
581
|
+
padding: 0.5rem 0.75rem;
|
|
582
|
+
}
|
|
583
|
+
kol-span-wc,
|
|
584
|
+
kol-span-wc > span {
|
|
585
|
+
gap: 0.5em;
|
|
586
|
+
}
|
|
587
|
+
kol-span-wc,
|
|
588
|
+
kol-span-wc > span {
|
|
589
|
+
gap: 0.3em;
|
|
577
590
|
}`,
|
|
578
591
|
"KOL-BUTTON": `:host {
|
|
579
592
|
--background-color: var(--color-gruen-dunkel);
|
|
@@ -650,10 +663,10 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
650
663
|
align-items: center;
|
|
651
664
|
justify-content: center;
|
|
652
665
|
}
|
|
653
|
-
button.
|
|
666
|
+
button.icon-only {
|
|
654
667
|
padding: 0.5rem;
|
|
655
668
|
}
|
|
656
|
-
button.
|
|
669
|
+
button.icon-only kol-icon {
|
|
657
670
|
display: inline-block;
|
|
658
671
|
width: 1.5em;
|
|
659
672
|
height: 1.5em;
|
|
@@ -661,7 +674,90 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
661
674
|
button.loading kol-icon {
|
|
662
675
|
animation: spin 5s infinite linear;
|
|
663
676
|
}`,
|
|
664
|
-
"KOL-INPUT-
|
|
677
|
+
"KOL-INPUT-TEXT": `kol-input {
|
|
678
|
+
gap: 0.4em;
|
|
679
|
+
}
|
|
680
|
+
kol-input .error {
|
|
681
|
+
order: 3;
|
|
682
|
+
}
|
|
683
|
+
kol-input label {
|
|
684
|
+
font-weight: 700;
|
|
685
|
+
order: 1;
|
|
686
|
+
}
|
|
687
|
+
kol-input .input {
|
|
688
|
+
order: 2;
|
|
689
|
+
}
|
|
690
|
+
kol-input .hint {
|
|
691
|
+
order: 4;
|
|
692
|
+
font-size: 0.875em;
|
|
693
|
+
font-style: italic;
|
|
694
|
+
}
|
|
695
|
+
input {
|
|
696
|
+
border: none;
|
|
697
|
+
}
|
|
698
|
+
.input {
|
|
699
|
+
border-color: var(--color-grey);
|
|
700
|
+
border-style: solid;
|
|
701
|
+
border-width: 1px;
|
|
702
|
+
padding: 0 0.5em;
|
|
703
|
+
}
|
|
704
|
+
.input > kol-icon {
|
|
705
|
+
width: 1.5em;
|
|
706
|
+
}
|
|
707
|
+
.input > input:first-child {
|
|
708
|
+
padding-left: 0.375em;
|
|
709
|
+
}
|
|
710
|
+
.input > input:last-child {
|
|
711
|
+
padding-right: 0.375em;
|
|
712
|
+
}
|
|
713
|
+
.input:hover {
|
|
714
|
+
border-color: var(--color-gruen-hell);
|
|
715
|
+
}
|
|
716
|
+
input:not([type="color"]):read-only,
|
|
717
|
+
input:disabled {
|
|
718
|
+
cursor: not-allowed;
|
|
719
|
+
}
|
|
720
|
+
.required label > span::after {
|
|
721
|
+
content: "*";
|
|
722
|
+
padding-left: 0.125em;
|
|
723
|
+
}
|
|
724
|
+
kol-input.error {
|
|
725
|
+
border-left: 3px solid var(--color-rot);
|
|
726
|
+
padding-left: 1em;
|
|
727
|
+
}
|
|
728
|
+
kol-input.error .input:focus-within {
|
|
729
|
+
outline-color: var(--color-rot) !important;
|
|
730
|
+
}
|
|
731
|
+
kol-input.error kol-alert.error {
|
|
732
|
+
color: var(--color-rot);
|
|
733
|
+
font-weight: 700;
|
|
734
|
+
}
|
|
735
|
+
.disabled {
|
|
736
|
+
opacity: 0.33;
|
|
737
|
+
}
|
|
738
|
+
label {
|
|
739
|
+
color: var(--color-text);
|
|
740
|
+
line-height: 1.5;
|
|
741
|
+
}
|
|
742
|
+
.input {
|
|
743
|
+
font-size: var(--text-size);
|
|
744
|
+
line-height: 1.5;
|
|
745
|
+
color: var(--colorText);
|
|
746
|
+
border-color: var(--color-gruen);
|
|
747
|
+
border-style: solid;
|
|
748
|
+
width: 100%;
|
|
749
|
+
}
|
|
750
|
+
input:not([type="range"]) {
|
|
751
|
+
height: 2.75em;
|
|
752
|
+
}
|
|
753
|
+
input::placeholder {
|
|
754
|
+
color: var(--color-grau-dunkel);
|
|
755
|
+
}
|
|
756
|
+
.required label > span::after {
|
|
757
|
+
content: "*";
|
|
758
|
+
padding-left: 0.125em;
|
|
759
|
+
}`,
|
|
760
|
+
"KOL-INPUT-PASSWORD": `kol-input {
|
|
665
761
|
display: grid;
|
|
666
762
|
padding: 0;
|
|
667
763
|
margin: 0;
|
|
@@ -674,14 +770,9 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
674
770
|
textarea:hover {
|
|
675
771
|
border-color: black;
|
|
676
772
|
}
|
|
677
|
-
input:focus-within,
|
|
678
|
-
select:focus-within,
|
|
679
|
-
textarea:focus-within {
|
|
680
|
-
outline: var(--color-focus) solid 2px;
|
|
681
|
-
}
|
|
682
773
|
kol-input > label {
|
|
683
774
|
order: 1;
|
|
684
|
-
margin-bottom:
|
|
775
|
+
margin-bottom: 0.25em;
|
|
685
776
|
}
|
|
686
777
|
kol-input > label > span {
|
|
687
778
|
color: black;
|
|
@@ -700,17 +791,17 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
700
791
|
input,
|
|
701
792
|
select,
|
|
702
793
|
textarea {
|
|
703
|
-
font-family: var(--
|
|
794
|
+
font-family: var(--font-family);
|
|
704
795
|
background-color: transparent;
|
|
705
796
|
box-sizing: border-box;
|
|
706
|
-
font-size:
|
|
797
|
+
font-size: 1rem;
|
|
707
798
|
display: inline-flex;
|
|
708
|
-
line-height: 1.
|
|
799
|
+
line-height: 1.5em;
|
|
709
800
|
color: black;
|
|
710
|
-
border-color: var(--color-
|
|
801
|
+
border-color: var(--color-grau-dunkel);
|
|
711
802
|
border-width: 1px;
|
|
712
803
|
border-style: solid;
|
|
713
|
-
padding: 0.5em;
|
|
804
|
+
padding: 0.5em 0.75em;
|
|
714
805
|
overflow: hidden;
|
|
715
806
|
width: 100%;
|
|
716
807
|
}
|
|
@@ -750,7 +841,7 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
750
841
|
kol-button-wc {
|
|
751
842
|
position: relative;
|
|
752
843
|
float: right;
|
|
753
|
-
z-index:
|
|
844
|
+
z-index: 1000;
|
|
754
845
|
margin-top: -33px;
|
|
755
846
|
}
|
|
756
847
|
kol-button-wc button {
|
|
@@ -784,14 +875,12 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
784
875
|
option:checked:not(:disabled),
|
|
785
876
|
option:focus:not(:disabled),
|
|
786
877
|
option:hover:not(:disabled) {
|
|
787
|
-
background: var(--color-ocean);
|
|
788
878
|
color: white;
|
|
789
879
|
}`,
|
|
790
|
-
"KOL-INPUT-
|
|
880
|
+
"KOL-INPUT-NUMBER": `kol-input {
|
|
791
881
|
display: grid;
|
|
792
882
|
padding: 0;
|
|
793
883
|
margin: 0;
|
|
794
|
-
font-size: var(--text-size);
|
|
795
884
|
}
|
|
796
885
|
input:focus,
|
|
797
886
|
input:hover,
|
|
@@ -799,25 +888,22 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
799
888
|
select:hover,
|
|
800
889
|
textarea:focus,
|
|
801
890
|
textarea:hover {
|
|
802
|
-
border-color:
|
|
803
|
-
}
|
|
804
|
-
.error input:invalid,
|
|
805
|
-
.error select:invalid,
|
|
806
|
-
.error textarea:invalid {
|
|
807
|
-
border-color: var(--color-rot);
|
|
891
|
+
border-color: black;
|
|
808
892
|
}
|
|
809
893
|
input:focus-within,
|
|
810
894
|
select:focus-within,
|
|
811
895
|
textarea:focus-within {
|
|
812
896
|
outline: var(--color-focus) solid 2px;
|
|
813
897
|
}
|
|
814
|
-
kol-input
|
|
898
|
+
kol-input label {
|
|
899
|
+
font-weight: 700;
|
|
815
900
|
order: 1;
|
|
816
901
|
margin-bottom: var(--gapSmallest);
|
|
817
902
|
}
|
|
818
|
-
kol-input
|
|
819
|
-
color:
|
|
820
|
-
|
|
903
|
+
kol-input label > span {
|
|
904
|
+
color: black;
|
|
905
|
+
font-size: 0.875rem;
|
|
906
|
+
line-height: 1.5rem;
|
|
821
907
|
}
|
|
822
908
|
kol-input > div.input {
|
|
823
909
|
background-color: white;
|
|
@@ -825,23 +911,23 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
825
911
|
order: 2;
|
|
826
912
|
}
|
|
827
913
|
kol-input > kol-alert.error {
|
|
828
|
-
margin-top: 0.
|
|
914
|
+
margin-top: 0.25em;
|
|
829
915
|
order: 3;
|
|
830
916
|
}
|
|
831
917
|
input,
|
|
832
918
|
select,
|
|
833
919
|
textarea {
|
|
834
|
-
font-family: var(--
|
|
920
|
+
font-family: var(--textFont);
|
|
835
921
|
background-color: transparent;
|
|
836
922
|
box-sizing: border-box;
|
|
837
|
-
font-size: var(--
|
|
923
|
+
font-size: var(--textFontSize);
|
|
838
924
|
display: inline-flex;
|
|
839
925
|
line-height: 1.5;
|
|
840
926
|
color: black;
|
|
841
927
|
border-color: var(--color-gruen);
|
|
842
928
|
border-width: 1px;
|
|
843
929
|
border-style: solid;
|
|
844
|
-
padding: 0.5em
|
|
930
|
+
padding: 0.5em;
|
|
845
931
|
overflow: hidden;
|
|
846
932
|
width: 100%;
|
|
847
933
|
}
|
|
@@ -881,7 +967,7 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
881
967
|
kol-button-wc {
|
|
882
968
|
position: relative;
|
|
883
969
|
float: right;
|
|
884
|
-
z-index:
|
|
970
|
+
z-index: 1;
|
|
885
971
|
margin-top: -33px;
|
|
886
972
|
}
|
|
887
973
|
kol-button-wc button {
|
|
@@ -915,9 +1001,20 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
915
1001
|
option:checked:not(:disabled),
|
|
916
1002
|
option:focus:not(:disabled),
|
|
917
1003
|
option:hover:not(:disabled) {
|
|
1004
|
+
background: var(--color-ocean);
|
|
918
1005
|
color: white;
|
|
919
1006
|
}`,
|
|
920
|
-
"KOL-INPUT-
|
|
1007
|
+
"KOL-INPUT-DATE": `kol-input label {
|
|
1008
|
+
font-weight: 700;
|
|
1009
|
+
margin-bottom: var(--gapSmallest);
|
|
1010
|
+
}
|
|
1011
|
+
input {
|
|
1012
|
+
border: var(--formBorder);
|
|
1013
|
+
}
|
|
1014
|
+
input:hover {
|
|
1015
|
+
border: var(--formBorderHover);
|
|
1016
|
+
}`,
|
|
1017
|
+
"KOL-INPUT-EMAIL": `kol-input {
|
|
921
1018
|
display: grid;
|
|
922
1019
|
padding: 0;
|
|
923
1020
|
margin: 0;
|
|
@@ -1037,7 +1134,7 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
1037
1134
|
option:hover:not(:disabled) {
|
|
1038
1135
|
color: white;
|
|
1039
1136
|
}`,
|
|
1040
|
-
"KOL-INPUT-
|
|
1137
|
+
"KOL-INPUT-FILE": `kol-input {
|
|
1041
1138
|
display: grid;
|
|
1042
1139
|
padding: 0;
|
|
1043
1140
|
margin: 0;
|
|
@@ -1050,14 +1147,9 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
1050
1147
|
textarea:hover {
|
|
1051
1148
|
border-color: black;
|
|
1052
1149
|
}
|
|
1053
|
-
input:focus-within,
|
|
1054
|
-
select:focus-within,
|
|
1055
|
-
textarea:focus-within {
|
|
1056
|
-
outline: var(--color-focus) solid 2px;
|
|
1057
|
-
}
|
|
1058
1150
|
kol-input > label {
|
|
1059
1151
|
order: 1;
|
|
1060
|
-
margin-bottom:
|
|
1152
|
+
margin-bottom: 0.25em;
|
|
1061
1153
|
}
|
|
1062
1154
|
kol-input > label > span {
|
|
1063
1155
|
color: black;
|
|
@@ -1076,17 +1168,17 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
1076
1168
|
input,
|
|
1077
1169
|
select,
|
|
1078
1170
|
textarea {
|
|
1079
|
-
font-family: var(--
|
|
1171
|
+
font-family: var(--font-family);
|
|
1080
1172
|
background-color: transparent;
|
|
1081
1173
|
box-sizing: border-box;
|
|
1082
|
-
font-size:
|
|
1174
|
+
font-size: 1rem;
|
|
1083
1175
|
display: inline-flex;
|
|
1084
|
-
line-height: 1.
|
|
1176
|
+
line-height: 1.5em;
|
|
1085
1177
|
color: black;
|
|
1086
|
-
border-color: var(--color-
|
|
1178
|
+
border-color: var(--color-grau-dunkel);
|
|
1087
1179
|
border-width: 1px;
|
|
1088
1180
|
border-style: solid;
|
|
1089
|
-
padding: 0.5em;
|
|
1181
|
+
padding: 0.5em 0.75em;
|
|
1090
1182
|
overflow: hidden;
|
|
1091
1183
|
width: 100%;
|
|
1092
1184
|
}
|
|
@@ -1126,7 +1218,7 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
1126
1218
|
kol-button-wc {
|
|
1127
1219
|
position: relative;
|
|
1128
1220
|
float: right;
|
|
1129
|
-
z-index:
|
|
1221
|
+
z-index: 1000;
|
|
1130
1222
|
margin-top: -33px;
|
|
1131
1223
|
}
|
|
1132
1224
|
kol-button-wc button {
|
|
@@ -1160,186 +1252,50 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
1160
1252
|
option:checked:not(:disabled),
|
|
1161
1253
|
option:focus:not(:disabled),
|
|
1162
1254
|
option:hover:not(:disabled) {
|
|
1163
|
-
background: var(--color-ocean);
|
|
1164
1255
|
color: white;
|
|
1165
1256
|
}`,
|
|
1166
|
-
"KOL-
|
|
1167
|
-
|
|
1168
|
-
padding: 0;
|
|
1169
|
-
margin: 0;
|
|
1257
|
+
"KOL-TEXTAREA": `kol-input {
|
|
1258
|
+
gap: 0.4em;
|
|
1170
1259
|
}
|
|
1171
|
-
input
|
|
1172
|
-
|
|
1173
|
-
select:focus,
|
|
1174
|
-
select:hover,
|
|
1175
|
-
textarea:focus,
|
|
1176
|
-
textarea:hover {
|
|
1177
|
-
border-color: black;
|
|
1260
|
+
kol-input .error {
|
|
1261
|
+
order: 3;
|
|
1178
1262
|
}
|
|
1179
|
-
kol-input
|
|
1263
|
+
kol-input label {
|
|
1264
|
+
font-weight: 700;
|
|
1180
1265
|
order: 1;
|
|
1181
|
-
margin-bottom: 0.25em;
|
|
1182
|
-
}
|
|
1183
|
-
kol-input > label > span {
|
|
1184
|
-
color: black;
|
|
1185
|
-
font-size: 0.875rem;
|
|
1186
|
-
line-height: 1.5rem;
|
|
1187
1266
|
}
|
|
1188
|
-
kol-input
|
|
1189
|
-
background-color: white;
|
|
1190
|
-
display: block;
|
|
1267
|
+
kol-input .input {
|
|
1191
1268
|
order: 2;
|
|
1192
1269
|
}
|
|
1193
|
-
kol-input
|
|
1194
|
-
|
|
1195
|
-
|
|
1270
|
+
kol-input .hint {
|
|
1271
|
+
order: 4;
|
|
1272
|
+
font-size: 0.875em;
|
|
1273
|
+
font-style: italic;
|
|
1196
1274
|
}
|
|
1197
1275
|
input,
|
|
1198
1276
|
select,
|
|
1199
1277
|
textarea {
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
border-width: 1px;
|
|
1209
|
-
border-style: solid;
|
|
1210
|
-
padding: 0.5em 0.75em;
|
|
1211
|
-
overflow: hidden;
|
|
1278
|
+
border: none;
|
|
1279
|
+
}
|
|
1280
|
+
.input {
|
|
1281
|
+
color: var(--colorText);
|
|
1282
|
+
border: var(--formBorder);
|
|
1283
|
+
font-size: var(--textFontSize);
|
|
1284
|
+
line-height: 1.5;
|
|
1285
|
+
padding: 0 0.5em;
|
|
1212
1286
|
width: 100%;
|
|
1213
1287
|
}
|
|
1214
|
-
input
|
|
1215
|
-
|
|
1216
|
-
height: 2.75em;
|
|
1217
|
-
}
|
|
1218
|
-
textarea {
|
|
1219
|
-
display: inherit;
|
|
1220
|
-
}
|
|
1221
|
-
input::placeholder {
|
|
1222
|
-
color: var(--color-grau-dunkel);
|
|
1223
|
-
}
|
|
1224
|
-
input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
|
|
1225
|
-
cursor: not-allowed;
|
|
1226
|
-
}
|
|
1227
|
-
.required label > span::after {
|
|
1228
|
-
content: "*";
|
|
1229
|
-
padding-left: 0.125em;
|
|
1230
|
-
}
|
|
1231
|
-
.icons {
|
|
1232
|
-
display: flex;
|
|
1233
|
-
justify-content: space-between;
|
|
1234
|
-
height: 0;
|
|
1235
|
-
}
|
|
1236
|
-
.icons > * {
|
|
1237
|
-
margin: 0.75em;
|
|
1238
|
-
}
|
|
1239
|
-
.icon-left input,
|
|
1240
|
-
.icon-left select {
|
|
1241
|
-
padding-left: 2em;
|
|
1242
|
-
}
|
|
1243
|
-
.icon-right input,
|
|
1244
|
-
.icon-right select {
|
|
1245
|
-
padding-right: 2em;
|
|
1246
|
-
}
|
|
1247
|
-
kol-button-wc {
|
|
1248
|
-
position: relative;
|
|
1249
|
-
float: right;
|
|
1250
|
-
z-index: 1000;
|
|
1251
|
-
margin-top: -33px;
|
|
1252
|
-
}
|
|
1253
|
-
kol-button-wc button {
|
|
1254
|
-
border: 1px solid var(--color-grau-dunkel);
|
|
1255
|
-
box-sizing: border-box;
|
|
1256
|
-
background-color: transparent;
|
|
1257
|
-
cursor: pointer;
|
|
1258
|
-
}
|
|
1259
|
-
.icon-right kol-button-wc {
|
|
1260
|
-
margin-right: 2.5em;
|
|
1261
|
-
}
|
|
1262
|
-
.disabled {
|
|
1263
|
-
opacity: 0.33;
|
|
1264
|
-
}
|
|
1265
|
-
select[multiple],
|
|
1266
|
-
textarea {
|
|
1267
|
-
overflow: auto;
|
|
1268
|
-
}
|
|
1269
|
-
textarea {
|
|
1270
|
-
display: block;
|
|
1271
|
-
}
|
|
1272
|
-
select option {
|
|
1273
|
-
margin: 1px 0;
|
|
1274
|
-
padding: 0.5em;
|
|
1275
|
-
cursor: pointer;
|
|
1276
|
-
}
|
|
1277
|
-
select option:disabled {
|
|
1278
|
-
cursor: not-allowed;
|
|
1279
|
-
}
|
|
1280
|
-
option:active:not(:disabled),
|
|
1281
|
-
option:checked:not(:disabled),
|
|
1282
|
-
option:focus:not(:disabled),
|
|
1283
|
-
option:hover:not(:disabled) {
|
|
1284
|
-
color: white;
|
|
1285
|
-
}`,
|
|
1286
|
-
"KOL-INPUT-FILE": `kol-input {
|
|
1287
|
-
display: grid;
|
|
1288
|
-
padding: 0;
|
|
1289
|
-
margin: 0;
|
|
1290
|
-
}
|
|
1291
|
-
input:focus,
|
|
1292
|
-
input:hover,
|
|
1293
|
-
select:focus,
|
|
1294
|
-
select:hover,
|
|
1295
|
-
textarea:focus,
|
|
1296
|
-
textarea:hover {
|
|
1297
|
-
border-color: black;
|
|
1298
|
-
}
|
|
1299
|
-
kol-input > label {
|
|
1300
|
-
order: 1;
|
|
1301
|
-
margin-bottom: 0.25em;
|
|
1302
|
-
}
|
|
1303
|
-
kol-input > label > span {
|
|
1304
|
-
color: black;
|
|
1305
|
-
font-size: 0.875rem;
|
|
1306
|
-
line-height: 1.5rem;
|
|
1307
|
-
}
|
|
1308
|
-
kol-input > div.input {
|
|
1309
|
-
background-color: white;
|
|
1310
|
-
display: block;
|
|
1311
|
-
order: 2;
|
|
1312
|
-
}
|
|
1313
|
-
kol-input > kol-alert.error {
|
|
1314
|
-
margin-top: 0.25em;
|
|
1315
|
-
order: 3;
|
|
1316
|
-
}
|
|
1317
|
-
input,
|
|
1318
|
-
select,
|
|
1319
|
-
textarea {
|
|
1320
|
-
font-family: var(--font-family);
|
|
1321
|
-
background-color: transparent;
|
|
1322
|
-
box-sizing: border-box;
|
|
1323
|
-
font-size: 1rem;
|
|
1324
|
-
display: inline-flex;
|
|
1325
|
-
line-height: 1.5em;
|
|
1326
|
-
color: black;
|
|
1327
|
-
border-color: var(--color-grau-dunkel);
|
|
1328
|
-
border-width: 1px;
|
|
1329
|
-
border-style: solid;
|
|
1330
|
-
padding: 0.5em 0.75em;
|
|
1331
|
-
overflow: hidden;
|
|
1332
|
-
width: 100%;
|
|
1288
|
+
.input > kol-icon {
|
|
1289
|
+
width: 1.5em;
|
|
1333
1290
|
}
|
|
1334
|
-
input:
|
|
1335
|
-
|
|
1336
|
-
height: 2.75em;
|
|
1291
|
+
.input > input:first-child {
|
|
1292
|
+
padding-left: 0.375em;
|
|
1337
1293
|
}
|
|
1338
|
-
|
|
1339
|
-
|
|
1294
|
+
.input > input:last-child {
|
|
1295
|
+
padding-right: 0.375em;
|
|
1340
1296
|
}
|
|
1341
|
-
input
|
|
1342
|
-
color: var(--color-
|
|
1297
|
+
.input:hover {
|
|
1298
|
+
border-color: var(--color-gruen-hell);
|
|
1343
1299
|
}
|
|
1344
1300
|
input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
|
|
1345
1301
|
cursor: not-allowed;
|
|
@@ -1348,191 +1304,29 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
1348
1304
|
content: "*";
|
|
1349
1305
|
padding-left: 0.125em;
|
|
1350
1306
|
}
|
|
1351
|
-
.
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
height: 0;
|
|
1355
|
-
}
|
|
1356
|
-
.icons > * {
|
|
1357
|
-
margin: 0.75em;
|
|
1358
|
-
}
|
|
1359
|
-
.icon-left input,
|
|
1360
|
-
.icon-left select {
|
|
1361
|
-
padding-left: 2em;
|
|
1362
|
-
}
|
|
1363
|
-
.icon-right input,
|
|
1364
|
-
.icon-right select {
|
|
1365
|
-
padding-right: 2em;
|
|
1366
|
-
}
|
|
1367
|
-
kol-button-wc {
|
|
1368
|
-
position: relative;
|
|
1369
|
-
float: right;
|
|
1370
|
-
z-index: 1000;
|
|
1371
|
-
margin-top: -33px;
|
|
1307
|
+
kol-input.error {
|
|
1308
|
+
border-left: 3px solid var(--color-rot);
|
|
1309
|
+
padding-left: 1em;
|
|
1372
1310
|
}
|
|
1373
|
-
kol-
|
|
1374
|
-
|
|
1375
|
-
box-sizing: border-box;
|
|
1376
|
-
background-color: transparent;
|
|
1377
|
-
cursor: pointer;
|
|
1311
|
+
kol-input.error .input:focus-within {
|
|
1312
|
+
outline-color: var(--color-rot) !important;
|
|
1378
1313
|
}
|
|
1379
|
-
.
|
|
1380
|
-
|
|
1314
|
+
kol-input.error kol-alert.error {
|
|
1315
|
+
color: var(--color-rot);
|
|
1316
|
+
font-weight: 700;
|
|
1381
1317
|
}
|
|
1382
1318
|
.disabled {
|
|
1383
1319
|
opacity: 0.33;
|
|
1384
1320
|
}
|
|
1385
|
-
|
|
1386
|
-
textarea {
|
|
1387
|
-
overflow: auto;
|
|
1388
|
-
}
|
|
1389
|
-
textarea {
|
|
1390
|
-
display: block;
|
|
1391
|
-
}
|
|
1392
|
-
select option {
|
|
1393
|
-
margin: 1px 0;
|
|
1394
|
-
padding: 0.5em;
|
|
1395
|
-
cursor: pointer;
|
|
1396
|
-
}
|
|
1397
|
-
select option:disabled {
|
|
1398
|
-
cursor: not-allowed;
|
|
1399
|
-
}
|
|
1400
|
-
option:active:not(:disabled),
|
|
1401
|
-
option:checked:not(:disabled),
|
|
1402
|
-
option:focus:not(:disabled),
|
|
1403
|
-
option:hover:not(:disabled) {
|
|
1404
|
-
color: white;
|
|
1405
|
-
}`,
|
|
1406
|
-
"KOL-TEXTAREA": `/* input */
|
|
1407
|
-
kol-input {
|
|
1408
|
-
display: grid;
|
|
1409
|
-
padding: 0;
|
|
1410
|
-
margin: 0;
|
|
1411
|
-
font-size: var(--text-size);
|
|
1412
|
-
}
|
|
1413
|
-
input:focus,
|
|
1414
|
-
input:hover,
|
|
1415
|
-
select:focus,
|
|
1416
|
-
select:hover,
|
|
1417
|
-
textarea:focus,
|
|
1418
|
-
textarea:hover {
|
|
1419
|
-
border-color: var(--color-gruen-hell);
|
|
1420
|
-
}
|
|
1421
|
-
.error input:invalid,
|
|
1422
|
-
.error select:invalid,
|
|
1423
|
-
.error textarea:invalid {
|
|
1424
|
-
border-color: var(--color-rot);
|
|
1425
|
-
}
|
|
1426
|
-
input:focus-within,
|
|
1427
|
-
select:focus-within,
|
|
1428
|
-
textarea:focus-within {
|
|
1429
|
-
outline: var(--color-focus) solid 2px;
|
|
1430
|
-
}
|
|
1431
|
-
kol-input > label {
|
|
1432
|
-
order: 1;
|
|
1433
|
-
margin-bottom: var(--gapSmallest);
|
|
1434
|
-
}
|
|
1435
|
-
kol-input > label > span {
|
|
1321
|
+
label {
|
|
1436
1322
|
color: var(--color-text);
|
|
1437
1323
|
line-height: 1.5;
|
|
1438
1324
|
}
|
|
1439
|
-
|
|
1440
|
-
background-color: white;
|
|
1441
|
-
display: block;
|
|
1442
|
-
order: 2;
|
|
1443
|
-
}
|
|
1444
|
-
kol-input > kol-alert.error {
|
|
1445
|
-
margin-top: 0.25rem;
|
|
1446
|
-
order: 3;
|
|
1447
|
-
}
|
|
1448
|
-
input,
|
|
1449
|
-
select,
|
|
1450
|
-
textarea {
|
|
1451
|
-
font-family: var(--font-family);
|
|
1452
|
-
background-color: transparent;
|
|
1453
|
-
box-sizing: border-box;
|
|
1454
|
-
font-size: var(--text-size);
|
|
1455
|
-
display: inline-flex;
|
|
1456
|
-
line-height: 1.5;
|
|
1457
|
-
color: black;
|
|
1458
|
-
border-color: var(--color-gruen);
|
|
1459
|
-
border-width: 1px;
|
|
1460
|
-
border-style: solid;
|
|
1461
|
-
padding: 0.5em 0.75em;
|
|
1462
|
-
overflow: hidden;
|
|
1463
|
-
width: 100%;
|
|
1464
|
-
}
|
|
1465
|
-
input:not([type="range"]),
|
|
1466
|
-
select:not([multiple]) {
|
|
1467
|
-
height: 2.75em;
|
|
1468
|
-
}
|
|
1469
|
-
textarea {
|
|
1470
|
-
display: inherit;
|
|
1471
|
-
}
|
|
1472
|
-
input::placeholder {
|
|
1473
|
-
color: var(--color-grau-dunkel);
|
|
1474
|
-
}
|
|
1475
|
-
input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
|
|
1476
|
-
cursor: not-allowed;
|
|
1325
|
+
.input {
|
|
1477
1326
|
}
|
|
1478
1327
|
.required label > span::after {
|
|
1479
1328
|
content: "*";
|
|
1480
1329
|
padding-left: 0.125em;
|
|
1481
|
-
}
|
|
1482
|
-
.icons {
|
|
1483
|
-
display: flex;
|
|
1484
|
-
justify-content: space-between;
|
|
1485
|
-
height: 0;
|
|
1486
|
-
}
|
|
1487
|
-
.icons > * {
|
|
1488
|
-
margin: 0.75em;
|
|
1489
|
-
}
|
|
1490
|
-
.icon-left input,
|
|
1491
|
-
.icon-left select {
|
|
1492
|
-
padding-left: 2em;
|
|
1493
|
-
}
|
|
1494
|
-
.icon-right input,
|
|
1495
|
-
.icon-right select {
|
|
1496
|
-
padding-right: 2em;
|
|
1497
|
-
}
|
|
1498
|
-
kol-button-wc {
|
|
1499
|
-
position: relative;
|
|
1500
|
-
float: right;
|
|
1501
|
-
z-index: 1;
|
|
1502
|
-
margin-top: -33px;
|
|
1503
|
-
}
|
|
1504
|
-
kol-button-wc button {
|
|
1505
|
-
border: 1px solid var(--color-grau-dunkel);
|
|
1506
|
-
box-sizing: border-box;
|
|
1507
|
-
background-color: transparent;
|
|
1508
|
-
cursor: pointer;
|
|
1509
|
-
}
|
|
1510
|
-
.icon-right kol-button-wc {
|
|
1511
|
-
margin-right: 2.5em;
|
|
1512
|
-
}
|
|
1513
|
-
.disabled {
|
|
1514
|
-
opacity: 0.33;
|
|
1515
|
-
}
|
|
1516
|
-
select[multiple],
|
|
1517
|
-
textarea {
|
|
1518
|
-
overflow: auto;
|
|
1519
|
-
}
|
|
1520
|
-
textarea {
|
|
1521
|
-
display: block;
|
|
1522
|
-
}
|
|
1523
|
-
select option {
|
|
1524
|
-
margin: 1px 0;
|
|
1525
|
-
padding: 0.5em;
|
|
1526
|
-
cursor: pointer;
|
|
1527
|
-
}
|
|
1528
|
-
select option:disabled {
|
|
1529
|
-
cursor: not-allowed;
|
|
1530
|
-
}
|
|
1531
|
-
option:active:not(:disabled),
|
|
1532
|
-
option:checked:not(:disabled),
|
|
1533
|
-
option:focus:not(:disabled),
|
|
1534
|
-
option:hover:not(:disabled) {
|
|
1535
|
-
color: white;
|
|
1536
1330
|
}`,
|
|
1537
1331
|
"KOL-ALERT": `:host > div {
|
|
1538
1332
|
background-color: white;
|
|
@@ -1679,10 +1473,10 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
1679
1473
|
background-color: rgba(0, 0, 0, 0);
|
|
1680
1474
|
border-color: rgba(0, 0, 0, 0);
|
|
1681
1475
|
}
|
|
1682
|
-
.close > button.
|
|
1476
|
+
.close > button.icon-only {
|
|
1683
1477
|
padding: 8px;
|
|
1684
1478
|
}
|
|
1685
|
-
.close > button.
|
|
1479
|
+
.close > button.icon-only kol-icon {
|
|
1686
1480
|
display: inline-block;
|
|
1687
1481
|
width: 1.5em;
|
|
1688
1482
|
height: 1.5em;
|
|
@@ -1694,6 +1488,9 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
1694
1488
|
.close kol-icon::part(icon)::before {
|
|
1695
1489
|
content: "\\f00d";
|
|
1696
1490
|
}`,
|
|
1491
|
+
"KOL-HEADING": `.headline {
|
|
1492
|
+
margin-top: 0;
|
|
1493
|
+
}`,
|
|
1697
1494
|
"KOL-BADGE": `:host {
|
|
1698
1495
|
display: inline-block;
|
|
1699
1496
|
}
|
|
@@ -1720,28 +1517,26 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
1720
1517
|
background: var(--color-grau-weiss);
|
|
1721
1518
|
box-shadow: -4px 0px 0px var(--color-gruen);
|
|
1722
1519
|
}`,
|
|
1723
|
-
"KOL-LINK":
|
|
1724
|
-
|
|
1725
|
-
}
|
|
1726
|
-
a {
|
|
1727
|
-
background-color: transparent;
|
|
1728
|
-
border: 0;
|
|
1729
|
-
cursor: pointer;
|
|
1520
|
+
"KOL-LINK": `:is(a, button) {
|
|
1521
|
+
/* color: var(--color-midnight); */
|
|
1730
1522
|
color: var(--external-link-color, var(--color-gruen));
|
|
1731
|
-
|
|
1523
|
+
font-style: normal;
|
|
1524
|
+
font-weight: 400;
|
|
1732
1525
|
padding: var(--external-link-padding, 0);
|
|
1733
|
-
text-decoration-line: none
|
|
1526
|
+
text-decoration-line: none;
|
|
1734
1527
|
}
|
|
1735
|
-
a:focus
|
|
1736
|
-
outline: var(--color-focus) solid 2px;
|
|
1528
|
+
:is(a, button):focus {
|
|
1529
|
+
/* outline: var(--color-focus) solid 2px; */
|
|
1530
|
+
outline: none;
|
|
1737
1531
|
}
|
|
1738
|
-
a:hover {
|
|
1532
|
+
:is(a, button):hover {
|
|
1533
|
+
/* text-decoration-thickness: 0.25em; */
|
|
1739
1534
|
box-shadow: inset 0 -1px 0 0 var(--external-link-color, var(--color-gruen));
|
|
1740
1535
|
}
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
}
|
|
1536
|
+
.hidden {
|
|
1537
|
+
display: none;
|
|
1538
|
+
visibility: hidden;
|
|
1539
|
+
} /*************************/ /* kol-link-wc {display: inline-block;} */ /* kol-icon {padding: 0 0.25rem;} */
|
|
1745
1540
|
.hidden {
|
|
1746
1541
|
display: none;
|
|
1747
1542
|
visibility: hidden;
|
|
@@ -1757,6 +1552,9 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
1757
1552
|
background: white;
|
|
1758
1553
|
left: unset;
|
|
1759
1554
|
position: unset;
|
|
1555
|
+
}
|
|
1556
|
+
.icon-only {
|
|
1557
|
+
padding-bottom: 0.2rem;
|
|
1760
1558
|
}`,
|
|
1761
1559
|
"KOL-DETAILS": `details {
|
|
1762
1560
|
display: grid;
|
|
@@ -1861,128 +1659,42 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
1861
1659
|
progress {
|
|
1862
1660
|
display: none;
|
|
1863
1661
|
}`,
|
|
1864
|
-
"KOL-SELECT":
|
|
1865
|
-
|
|
1866
|
-
padding: 0;
|
|
1867
|
-
margin: 0;
|
|
1868
|
-
font-size: var(--textFontSize);
|
|
1869
|
-
}
|
|
1870
|
-
input:focus,
|
|
1871
|
-
input:hover,
|
|
1872
|
-
select:focus,
|
|
1873
|
-
select:hover,
|
|
1874
|
-
textarea:focus,
|
|
1875
|
-
textarea:hover {
|
|
1876
|
-
border-color: var(--color-gruen-hell);
|
|
1662
|
+
"KOL-SELECT": `:host {
|
|
1663
|
+
--color: var(--colorText); /* --color: blue; */
|
|
1877
1664
|
}
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
}
|
|
1883
|
-
input:focus-within,
|
|
1884
|
-
select:focus-within,
|
|
1885
|
-
textarea:focus-within {
|
|
1886
|
-
outline: var(--color-focus) solid 2px;
|
|
1665
|
+
kol-input {
|
|
1666
|
+
color: var(--color);
|
|
1667
|
+
font-size: var(--textFontSize);
|
|
1668
|
+
gap: var(--gapSmallest);
|
|
1887
1669
|
}
|
|
1888
|
-
|
|
1670
|
+
label {
|
|
1671
|
+
font-weight: 700;
|
|
1889
1672
|
order: 1;
|
|
1890
|
-
margin-bottom: var(--gapSmallest);
|
|
1891
|
-
}
|
|
1892
|
-
kol-input > label > span {
|
|
1893
|
-
color: var(--color-text);
|
|
1894
|
-
line-height: 1.5;
|
|
1895
1673
|
}
|
|
1896
|
-
|
|
1897
|
-
background-color: white;
|
|
1898
|
-
display: block;
|
|
1674
|
+
.input {
|
|
1899
1675
|
order: 2;
|
|
1900
1676
|
}
|
|
1901
|
-
kol-
|
|
1902
|
-
|
|
1677
|
+
kol-alert.error {
|
|
1678
|
+
color: var(--colorSignalError);
|
|
1903
1679
|
order: 3;
|
|
1904
1680
|
}
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
textarea {
|
|
1908
|
-
font-family: var(--textFont);
|
|
1909
|
-
background-color: transparent;
|
|
1910
|
-
box-sizing: border-box;
|
|
1911
|
-
font-size: var(--textFontSize);
|
|
1912
|
-
display: inline-flex;
|
|
1681
|
+
select {
|
|
1682
|
+
background-color: var(--colorLight);
|
|
1913
1683
|
line-height: 1.5;
|
|
1914
|
-
color:
|
|
1915
|
-
border
|
|
1916
|
-
border-width: 1px;
|
|
1917
|
-
border-style: solid;
|
|
1684
|
+
color: var(--color);
|
|
1685
|
+
border: var(--formBorder);
|
|
1918
1686
|
padding: 0.5em 0.75em;
|
|
1919
|
-
overflow: hidden;
|
|
1920
|
-
width: 100%;
|
|
1921
|
-
}
|
|
1922
|
-
select {
|
|
1923
|
-
padding-top: 0.6115em;
|
|
1924
|
-
padding-bottom: 0.6115em;
|
|
1925
1687
|
}
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
textarea {
|
|
1930
|
-
display: inherit;
|
|
1931
|
-
}
|
|
1932
|
-
input::placeholder {
|
|
1933
|
-
color: var(--color-grau-dunkel);
|
|
1688
|
+
select:hover,
|
|
1689
|
+
select:focus {
|
|
1690
|
+
border-color: var(--colorPrimaryActive);
|
|
1934
1691
|
}
|
|
1935
|
-
|
|
1692
|
+
select:disabled {
|
|
1936
1693
|
cursor: not-allowed;
|
|
1937
1694
|
}
|
|
1938
|
-
|
|
1939
|
-
content: "*";
|
|
1940
|
-
padding-left: 0.125em;
|
|
1941
|
-
}
|
|
1942
|
-
.icons {
|
|
1943
|
-
display: flex;
|
|
1944
|
-
justify-content: space-between;
|
|
1945
|
-
height: 0;
|
|
1946
|
-
}
|
|
1947
|
-
.icons > * {
|
|
1948
|
-
margin: 0.6em;
|
|
1949
|
-
}
|
|
1950
|
-
.icons > *:last-child:not(:first-child) {
|
|
1951
|
-
margin-right: 1em;
|
|
1952
|
-
}
|
|
1953
|
-
.icon-left input,
|
|
1954
|
-
.icon-left select {
|
|
1955
|
-
padding-left: 2em;
|
|
1956
|
-
}
|
|
1957
|
-
.icon-right input,
|
|
1958
|
-
.icon-right select {
|
|
1959
|
-
padding-right: 2em;
|
|
1960
|
-
}
|
|
1961
|
-
kol-button-wc {
|
|
1962
|
-
position: relative;
|
|
1963
|
-
float: right;
|
|
1964
|
-
z-index: 1;
|
|
1965
|
-
margin-top: -33px;
|
|
1966
|
-
}
|
|
1967
|
-
kol-button-wc button {
|
|
1968
|
-
border: 1px solid var(--color-grau-dunkel);
|
|
1969
|
-
box-sizing: border-box;
|
|
1970
|
-
background-color: transparent;
|
|
1971
|
-
cursor: pointer;
|
|
1972
|
-
}
|
|
1973
|
-
.icon-right kol-button-wc {
|
|
1974
|
-
margin-right: 2.5em;
|
|
1975
|
-
}
|
|
1976
|
-
.disabled {
|
|
1977
|
-
opacity: 0.33;
|
|
1978
|
-
}
|
|
1979
|
-
select[multiple],
|
|
1980
|
-
textarea {
|
|
1695
|
+
select[multiple] {
|
|
1981
1696
|
overflow: auto;
|
|
1982
1697
|
}
|
|
1983
|
-
textarea {
|
|
1984
|
-
display: block;
|
|
1985
|
-
}
|
|
1986
1698
|
select option {
|
|
1987
1699
|
margin: 1px 0;
|
|
1988
1700
|
padding: 0.5em;
|
|
@@ -1991,13 +1703,13 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
1991
1703
|
select option:disabled {
|
|
1992
1704
|
cursor: not-allowed;
|
|
1993
1705
|
}
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
color:
|
|
2000
|
-
}
|
|
1706
|
+
.required label > span::after {
|
|
1707
|
+
content: "*";
|
|
1708
|
+
padding-left: 0.125em;
|
|
1709
|
+
} /* kol-input.error select:invalid { */
|
|
1710
|
+
kol-input.error select {
|
|
1711
|
+
border-color: var(--colorSignalError);
|
|
1712
|
+
} /* option:active:not(:disabled),option:focus:not(:disabled),option:hover:not(:disabled) {color: white;} */`,
|
|
2001
1713
|
"KOL-INPUT-COLOR": `kol-input {
|
|
2002
1714
|
display: grid;
|
|
2003
1715
|
padding: 0;
|
|
@@ -2147,15 +1859,14 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2147
1859
|
padding-left: 0;
|
|
2148
1860
|
}
|
|
2149
1861
|
:host > div > kol-heading-wc button kol-icon::part(icon) {
|
|
1862
|
+
font-family: "Font Awesome 6 Free";
|
|
2150
1863
|
font-weight: 900;
|
|
2151
1864
|
color: var(--color-midnight);
|
|
2152
1865
|
}
|
|
2153
|
-
:host > div > kol-heading-wc button kol-icon::part(
|
|
2154
|
-
font-family: "Font Awesome 6 Free";
|
|
1866
|
+
:host > div.open > kol-heading-wc button kol-icon::part(icon)::before {
|
|
2155
1867
|
content: "\\f068";
|
|
2156
1868
|
}
|
|
2157
|
-
:host > div > kol-heading-wc button kol-icon::part(
|
|
2158
|
-
font-family: "Font Awesome 6 Free";
|
|
1869
|
+
:host > div.close > kol-heading-wc button kol-icon::part(icon)::before {
|
|
2159
1870
|
content: "\\2b";
|
|
2160
1871
|
}
|
|
2161
1872
|
:host > div {
|
|
@@ -2192,18 +1903,26 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2192
1903
|
hyphens: var(--hyphens);
|
|
2193
1904
|
line-height: var(--textFontLineHeight);
|
|
2194
1905
|
}
|
|
2195
|
-
:host > div:
|
|
1906
|
+
:host > div:first-child {
|
|
2196
1907
|
overflow-x: auto;
|
|
2197
1908
|
overflow-y: hidden;
|
|
2198
1909
|
}
|
|
2199
1910
|
table {
|
|
2200
|
-
width: 100%;
|
|
2201
1911
|
border-collapse: collapse;
|
|
2202
|
-
border-spacing: 0;
|
|
2203
1912
|
}
|
|
2204
1913
|
caption {
|
|
2205
1914
|
height: auto;
|
|
2206
1915
|
text-align: left;
|
|
1916
|
+
} /* visuell verstecken */
|
|
1917
|
+
caption {
|
|
1918
|
+
clip: rect(1px, 1px, 1px, 1px);
|
|
1919
|
+
clip-path: inset(50%);
|
|
1920
|
+
height: 1px;
|
|
1921
|
+
width: 1px;
|
|
1922
|
+
margin: -1px;
|
|
1923
|
+
overflow: hidden;
|
|
1924
|
+
padding: 0;
|
|
1925
|
+
position: absolute;
|
|
2207
1926
|
}
|
|
2208
1927
|
table,
|
|
2209
1928
|
tr,
|
|
@@ -2237,92 +1956,51 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2237
1956
|
align-items: center;
|
|
2238
1957
|
gap: 0.25em;
|
|
2239
1958
|
}
|
|
2240
|
-
|
|
1959
|
+
.pagination {
|
|
2241
1960
|
padding: 0.5em;
|
|
2242
1961
|
font-size: var(--textFontSize);
|
|
2243
|
-
|
|
2244
|
-
:host > div:last-child,
|
|
2245
|
-
:host > div.pagination > div:last-child {
|
|
2246
|
-
display: grid;
|
|
2247
|
-
align-items: center;
|
|
2248
|
-
justify-items: center;
|
|
2249
|
-
gap: var(--gapSmallest);
|
|
2250
|
-
}
|
|
2251
|
-
@media (min-width: 1024px) {
|
|
2252
|
-
:host > div:last-child,
|
|
2253
|
-
:host > div.pagination > div:last-child {
|
|
2254
|
-
grid-auto-flow: column;
|
|
2255
|
-
justify-content: start;
|
|
2256
|
-
}
|
|
2257
|
-
:host > div.pagination kol-pagination {
|
|
2258
|
-
display: flex;
|
|
2259
|
-
gap: 1rem;
|
|
2260
|
-
}
|
|
1962
|
+
gap: 1rem;
|
|
2261
1963
|
}
|
|
2262
1964
|
th kol-button button {
|
|
2263
1965
|
padding: 0.5rem;
|
|
2264
|
-
}
|
|
2265
|
-
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
nav {
|
|
2270
|
-
font-family: var(--font-family);
|
|
2271
|
-
font-size: 18px;
|
|
2272
|
-
background-color: var(--color-grau-hell);
|
|
1966
|
+
} /* default: [aria-sort="none"] */
|
|
1967
|
+
[data-sort] kol-button::part(icon)::before {
|
|
1968
|
+
font-family: "Font Awesome 6 Free";
|
|
1969
|
+
font-weight: 900;
|
|
1970
|
+
content: "\\f0dc";
|
|
2273
1971
|
}
|
|
2274
|
-
|
|
1972
|
+
[data-sort="sort-ASC"] kol-button::part(icon)::before {
|
|
1973
|
+
content: "\\f0de";
|
|
1974
|
+
}
|
|
1975
|
+
[data-sort="sort-DESC"] kol-button::part(icon)::before {
|
|
1976
|
+
content: "\\f0dd";
|
|
1977
|
+
}`,
|
|
1978
|
+
"KOL-NAV": `ul {
|
|
2275
1979
|
list-style: none;
|
|
2276
1980
|
}
|
|
2277
1981
|
a {
|
|
2278
|
-
|
|
2279
|
-
text-decoration: none;
|
|
2280
|
-
color: var(--color-dunkel);
|
|
2281
|
-
width: 100%;
|
|
1982
|
+
color: var(--colorText);
|
|
2282
1983
|
display: block;
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
padding: 0.75rem 0.5rem 0.75rem 0;
|
|
2286
|
-
border-left-color: var(--color-gruen-dunkel);
|
|
2287
|
-
border-left-style: solid;
|
|
2288
|
-
border-left-width: 0.5rem;
|
|
2289
|
-
line-height: 1.5rem;
|
|
2290
|
-
min-height: 44px;
|
|
2291
|
-
min-width: 44px;
|
|
1984
|
+
padding: 0.3rem 0.5rem;
|
|
1985
|
+
text-decoration: none;
|
|
2292
1986
|
transition-duration: 0.5s;
|
|
2293
1987
|
transition-property: background-color, color, border-color;
|
|
2294
1988
|
}
|
|
2295
1989
|
a:hover {
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
color: var(--color-grau-dunkel);
|
|
2299
|
-
}
|
|
2300
|
-
a > kol-icon {
|
|
2301
|
-
display: inline-block;
|
|
2302
|
-
text-align: center;
|
|
2303
|
-
width: 44px;
|
|
2304
|
-
}
|
|
2305
|
-
button {
|
|
2306
|
-
background-color: var(--color-gruen-dunkel);
|
|
1990
|
+
background-color: var(--colorPrimarySuccess);
|
|
1991
|
+
color: var(--colorLight);
|
|
2307
1992
|
}
|
|
2308
|
-
a
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
.hidden {
|
|
2314
|
-
display: none;
|
|
1993
|
+
a:focus,
|
|
1994
|
+
button:focus {
|
|
1995
|
+
outline: var(--focusOutline);
|
|
1996
|
+
outline-offset: 2px;
|
|
1997
|
+
transition: outline-offset 0.2s linear;
|
|
2315
1998
|
}
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
width: 100%;
|
|
2319
|
-
text-align: center;
|
|
2320
|
-
} /* horizontal */
|
|
2321
|
-
ul.flex {
|
|
2322
|
-
display: flex;
|
|
1999
|
+
.list[data-deep="0"] {
|
|
2000
|
+
font-family: var(--textFontSerif);
|
|
2323
2001
|
}
|
|
2324
|
-
|
|
2325
|
-
|
|
2002
|
+
.horizontal {
|
|
2003
|
+
gap: var(--gap);
|
|
2326
2004
|
}`,
|
|
2327
2005
|
"KOL-CARD": `:host > div {
|
|
2328
2006
|
--card-padding: var(--gap);
|
|
@@ -2407,7 +2085,7 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2407
2085
|
justify-items: left;
|
|
2408
2086
|
width: 100%;
|
|
2409
2087
|
}
|
|
2410
|
-
kol-input.
|
|
2088
|
+
kol-input.checkbox {
|
|
2411
2089
|
grid-template-columns: calc(6 * var(--spacing)) auto;
|
|
2412
2090
|
}
|
|
2413
2091
|
kol-input.switch {
|
|
@@ -2446,19 +2124,19 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2446
2124
|
background-color: var(--color-blau);
|
|
2447
2125
|
border-color: var(--color-blau);
|
|
2448
2126
|
}
|
|
2449
|
-
.
|
|
2127
|
+
.checkbox input[type="checkbox"] {
|
|
2450
2128
|
height: calc(6 * var(--spacing));
|
|
2451
2129
|
min-width: calc(6 * var(--spacing));
|
|
2452
2130
|
width: calc(6 * var(--spacing));
|
|
2453
2131
|
}
|
|
2454
|
-
.
|
|
2132
|
+
.checkbox input[type="checkbox"]:before {
|
|
2455
2133
|
background-color: transparent;
|
|
2456
2134
|
display: block;
|
|
2457
2135
|
height: calc(6 * var(--spacing));
|
|
2458
2136
|
position: relative;
|
|
2459
2137
|
width: calc(6 * var(--spacing));
|
|
2460
2138
|
}
|
|
2461
|
-
.
|
|
2139
|
+
.checkbox input[type="checkbox"]:checked:before {
|
|
2462
2140
|
border-right-width: 3px;
|
|
2463
2141
|
border-bottom-width: 3px;
|
|
2464
2142
|
left: calc(1.5 * var(--spacing) - var(--border-width));
|
|
@@ -2471,7 +2149,7 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2471
2149
|
height: calc(3 * var(--spacing));
|
|
2472
2150
|
width: calc(1.5 * var(--spacing));
|
|
2473
2151
|
}
|
|
2474
|
-
.
|
|
2152
|
+
.checkbox input[type="checkbox"]:indeterminate:before {
|
|
2475
2153
|
background-color: var(--color-grau-dunkel);
|
|
2476
2154
|
height: 0.375rem;
|
|
2477
2155
|
top: 0.5rem;
|
|
@@ -2521,7 +2199,7 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2521
2199
|
--input-inner-size: calc(var(--spacing) * 3);
|
|
2522
2200
|
--input-outer-size: calc(var(--spacing) * 6);
|
|
2523
2201
|
}
|
|
2524
|
-
|
|
2202
|
+
div[slot="input"] {
|
|
2525
2203
|
align-items: center;
|
|
2526
2204
|
display: flex;
|
|
2527
2205
|
gap: calc(var(--spacing) * 2);
|
|
@@ -2539,6 +2217,8 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2539
2217
|
}
|
|
2540
2218
|
input {
|
|
2541
2219
|
cursor: pointer;
|
|
2220
|
+
display: grid;
|
|
2221
|
+
align-self: center;
|
|
2542
2222
|
border: var(--border-width) solid var(--input-color);
|
|
2543
2223
|
appearance: none;
|
|
2544
2224
|
border-radius: 100%;
|
|
@@ -2563,12 +2243,10 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2563
2243
|
}
|
|
2564
2244
|
input::before {
|
|
2565
2245
|
content: "";
|
|
2566
|
-
cursor: pointer;
|
|
2567
|
-
left: var(--input-inner-position);
|
|
2568
|
-
top: var(--input-inner-position);
|
|
2246
|
+
cursor: pointer; /* left: var(--input-inner-position);top: var(--input-inner-position); */
|
|
2569
2247
|
position: relative;
|
|
2570
2248
|
border-radius: 100%;
|
|
2571
|
-
display: block;
|
|
2249
|
+
display: inline-block;
|
|
2572
2250
|
height: var(--input-inner-size);
|
|
2573
2251
|
width: var(--input-inner-size);
|
|
2574
2252
|
}
|
|
@@ -2606,6 +2284,7 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2606
2284
|
cursor: pointer;
|
|
2607
2285
|
display: grid;
|
|
2608
2286
|
font-size: var(--text-size); /* order: 2; */
|
|
2287
|
+
font-weight: 700;
|
|
2609
2288
|
}
|
|
2610
2289
|
legend {
|
|
2611
2290
|
font-size: var(--text-size);
|
|
@@ -2846,7 +2525,7 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2846
2525
|
display: grid;
|
|
2847
2526
|
gap: 1rem;
|
|
2848
2527
|
}
|
|
2849
|
-
:host
|
|
2528
|
+
:host > div {
|
|
2850
2529
|
display: inline-flex;
|
|
2851
2530
|
flex-wrap: wrap;
|
|
2852
2531
|
align-items: center;
|
|
@@ -2878,6 +2557,22 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
2878
2557
|
align-self: flex-end;
|
|
2879
2558
|
padding-bottom: 0.5rem;
|
|
2880
2559
|
color: var(--color-midnight);
|
|
2560
|
+
}
|
|
2561
|
+
kol-button::part(icon)::before {
|
|
2562
|
+
font-family: "Font Awesome 6 Free";
|
|
2563
|
+
font-weight: 900;
|
|
2564
|
+
}
|
|
2565
|
+
kol-button.first::part(icon)::before {
|
|
2566
|
+
content: "\\f100";
|
|
2567
|
+
}
|
|
2568
|
+
kol-button.previous::part(icon)::before {
|
|
2569
|
+
content: "\\f104";
|
|
2570
|
+
}
|
|
2571
|
+
kol-button.next::part(icon)::before {
|
|
2572
|
+
content: "\\f105";
|
|
2573
|
+
}
|
|
2574
|
+
kol-button.last::part(icon)::before {
|
|
2575
|
+
content: "\\f101";
|
|
2881
2576
|
}`,
|
|
2882
2577
|
"KOL-INPUT-RANGE": `/* https://www.cssportal.com/style-input-range/ */
|
|
2883
2578
|
kol-input {
|
|
@@ -3079,10 +2774,10 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
3079
2774
|
align-items: center;
|
|
3080
2775
|
justify-content: center;
|
|
3081
2776
|
}
|
|
3082
|
-
a.
|
|
2777
|
+
a.icon-only {
|
|
3083
2778
|
padding: 8px;
|
|
3084
2779
|
}
|
|
3085
|
-
a.
|
|
2780
|
+
a.icon-only kol-icon {
|
|
3086
2781
|
display: inline-block;
|
|
3087
2782
|
width: 1.5em;
|
|
3088
2783
|
height: 1.5em;
|
|
@@ -3136,18 +2831,214 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
3136
2831
|
:host kol-icon[exportparts*="separator"] {
|
|
3137
2832
|
padding: 0 0.5rem;
|
|
3138
2833
|
}
|
|
3139
|
-
:host kol-icon::part(icon
|
|
2834
|
+
:host kol-icon::part(icon) {
|
|
2835
|
+
font-family: "Font Awesome 6 Free";
|
|
3140
2836
|
font-weight: 900;
|
|
3141
|
-
font-size: 0.875rem;
|
|
2837
|
+
font-size: 0.875rem !important;
|
|
3142
2838
|
}
|
|
3143
|
-
:host kol-icon::part(icon
|
|
3144
|
-
color:
|
|
3145
|
-
content: "\\f054";
|
|
2839
|
+
:host kol-icon::part(icon)::before {
|
|
2840
|
+
color: currentColor;
|
|
3146
2841
|
font-family: "Font Awesome 6 Free";
|
|
3147
2842
|
}
|
|
2843
|
+
:host ul > li:not(:first-child) kol-icon::part(icon)::before {
|
|
2844
|
+
content: "\\f105";
|
|
2845
|
+
}
|
|
3148
2846
|
:host li > kol-link > kol-link-wc > a {
|
|
3149
2847
|
color: red !important;
|
|
3150
2848
|
}`,
|
|
2849
|
+
"KOL-MODAL": `:host .overlay .modal {
|
|
2850
|
+
max-height: calc(100% - 32px);
|
|
2851
|
+
}`,
|
|
2852
|
+
"KOL-ICON": `:host {
|
|
2853
|
+
color: inherit;
|
|
2854
|
+
} /*! * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) * Copyright 2022 Fonticons, Inc. */
|
|
2855
|
+
.fa {
|
|
2856
|
+
font-family: var(--fa-style-family, "Font Awesome 6 Free");
|
|
2857
|
+
font-weight: var(--fa-style, 900);
|
|
2858
|
+
}
|
|
2859
|
+
.fa,
|
|
2860
|
+
.fas,
|
|
2861
|
+
.fa-solid,
|
|
2862
|
+
.far,
|
|
2863
|
+
.fa-regular,
|
|
2864
|
+
.fal,
|
|
2865
|
+
.fa-light,
|
|
2866
|
+
.fat,
|
|
2867
|
+
.fa-thin,
|
|
2868
|
+
.fad,
|
|
2869
|
+
.fa-duotone,
|
|
2870
|
+
.fab,
|
|
2871
|
+
.fa-brands {
|
|
2872
|
+
-moz-osx-font-smoothing: grayscale;
|
|
2873
|
+
-webkit-font-smoothing: antialiased;
|
|
2874
|
+
display: var(--fa-display, inline-block);
|
|
2875
|
+
font-style: normal;
|
|
2876
|
+
font-variant: normal;
|
|
2877
|
+
line-height: 1;
|
|
2878
|
+
text-rendering: auto;
|
|
2879
|
+
}
|
|
2880
|
+
[class*="fa-"] {
|
|
2881
|
+
font-style: 0.8rem;
|
|
2882
|
+
} /************************************************************/
|
|
2883
|
+
.fa-arrow-right::before {
|
|
2884
|
+
content: "\\f061";
|
|
2885
|
+
}
|
|
2886
|
+
.fa-arrow-right-from-bracket::before {
|
|
2887
|
+
content: "\\f08b";
|
|
2888
|
+
}
|
|
2889
|
+
.fa-clock::before {
|
|
2890
|
+
content: "\\f017";
|
|
2891
|
+
}
|
|
2892
|
+
.fa-home::before {
|
|
2893
|
+
content: "\\f015";
|
|
2894
|
+
}
|
|
2895
|
+
.fa-times-circle::before {
|
|
2896
|
+
content: "\\f057";
|
|
2897
|
+
}
|
|
2898
|
+
.fa-exclamation-triangle::before {
|
|
2899
|
+
content: "\\f071";
|
|
2900
|
+
} /************************************************************/
|
|
2901
|
+
.fa-chevron-left::before {
|
|
2902
|
+
content: "\\f053";
|
|
2903
|
+
}
|
|
2904
|
+
.fa-chevron-right::before {
|
|
2905
|
+
content: "\\f054";
|
|
2906
|
+
}
|
|
2907
|
+
fa-exclamation-triangle::before {
|
|
2908
|
+
content: "\\f071";
|
|
2909
|
+
}
|
|
2910
|
+
.fa-file::before {
|
|
2911
|
+
content: "\\f15b";
|
|
2912
|
+
}
|
|
2913
|
+
.fa-house::before {
|
|
2914
|
+
content: "\\f015";
|
|
2915
|
+
}
|
|
2916
|
+
.fa-link::before {
|
|
2917
|
+
content: "\\f0c1";
|
|
2918
|
+
}
|
|
2919
|
+
.fa-plus::before {
|
|
2920
|
+
content: "\\2b";
|
|
2921
|
+
}
|
|
2922
|
+
.fa-search::before {
|
|
2923
|
+
content: "\\f002";
|
|
2924
|
+
}
|
|
2925
|
+
.fa-times-circle::before {
|
|
2926
|
+
content: "\\f057";
|
|
2927
|
+
}
|
|
2928
|
+
.fa-arrow-up-right-from-square::before {
|
|
2929
|
+
content: "\\f08e";
|
|
2930
|
+
}
|
|
2931
|
+
.fa-user::before {
|
|
2932
|
+
content: "\\f007";
|
|
2933
|
+
}
|
|
2934
|
+
.fa-xmark::before {
|
|
2935
|
+
content: "\\f00d";
|
|
2936
|
+
} /************************************************************/
|
|
2937
|
+
:root,
|
|
2938
|
+
:host {
|
|
2939
|
+
--fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";
|
|
2940
|
+
}
|
|
2941
|
+
@font-face {
|
|
2942
|
+
font-family: "Font Awesome 6 Free";
|
|
2943
|
+
font-style: normal;
|
|
2944
|
+
font-weight: 400;
|
|
2945
|
+
font-display: block;
|
|
2946
|
+
src: url("../webfonts/fa-regular-400.woff2") format("woff2"),
|
|
2947
|
+
url("../webfonts/fa-regular-400.ttf") format("truetype");
|
|
2948
|
+
}
|
|
2949
|
+
.far,
|
|
2950
|
+
.fa-regular {
|
|
2951
|
+
font-family: "Font Awesome 6 Free";
|
|
2952
|
+
font-weight: 400;
|
|
2953
|
+
}
|
|
2954
|
+
:root,
|
|
2955
|
+
:host {
|
|
2956
|
+
--fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
|
|
2957
|
+
}
|
|
2958
|
+
@font-face {
|
|
2959
|
+
font-family: "Font Awesome 6 Free";
|
|
2960
|
+
font-style: normal;
|
|
2961
|
+
font-weight: 900;
|
|
2962
|
+
font-display: block;
|
|
2963
|
+
src: url("../webfonts/fa-solid-900.woff2") format("woff2"),
|
|
2964
|
+
url("../webfonts/fa-solid-900.ttf") format("truetype");
|
|
2965
|
+
}
|
|
2966
|
+
.fas,
|
|
2967
|
+
.fa-solid {
|
|
2968
|
+
font-family: "Font Awesome 6 Free";
|
|
2969
|
+
font-weight: 900;
|
|
2970
|
+
}
|
|
2971
|
+
@font-face {
|
|
2972
|
+
font-family: "Font Awesome 5 Brands";
|
|
2973
|
+
font-display: block;
|
|
2974
|
+
font-weight: 400;
|
|
2975
|
+
src: url("../webfonts/fa-brands-400.woff2") format("woff2"),
|
|
2976
|
+
url("../webfonts/fa-brands-400.ttf") format("truetype");
|
|
2977
|
+
}
|
|
2978
|
+
@font-face {
|
|
2979
|
+
font-family: "Font Awesome 5 Free";
|
|
2980
|
+
font-display: block;
|
|
2981
|
+
font-weight: 900;
|
|
2982
|
+
src: url("../webfonts/fa-solid-900.woff2") format("woff2"),
|
|
2983
|
+
url("../webfonts/fa-solid-900.ttf") format("truetype");
|
|
2984
|
+
}
|
|
2985
|
+
@font-face {
|
|
2986
|
+
font-family: "Font Awesome 5 Free";
|
|
2987
|
+
font-display: block;
|
|
2988
|
+
font-weight: 400;
|
|
2989
|
+
src: url("../webfonts/fa-regular-400.woff2") format("woff2"),
|
|
2990
|
+
url("../webfonts/fa-regular-400.ttf") format("truetype");
|
|
2991
|
+
}
|
|
2992
|
+
@font-face {
|
|
2993
|
+
font-family: "FontAwesome";
|
|
2994
|
+
font-display: block;
|
|
2995
|
+
src: url("../webfonts/fa-solid-900.woff2") format("woff2"),
|
|
2996
|
+
url("../webfonts/fa-solid-900.ttf") format("truetype");
|
|
2997
|
+
}
|
|
2998
|
+
@font-face {
|
|
2999
|
+
font-family: "FontAwesome";
|
|
3000
|
+
font-display: block;
|
|
3001
|
+
src: url("../webfonts/fa-brands-400.woff2") format("woff2"),
|
|
3002
|
+
url("../webfonts/fa-brands-400.ttf") format("truetype");
|
|
3003
|
+
}
|
|
3004
|
+
@font-face {
|
|
3005
|
+
font-family: "FontAwesome";
|
|
3006
|
+
font-display: block;
|
|
3007
|
+
src: url("../webfonts/fa-regular-400.woff2") format("woff2"),
|
|
3008
|
+
url("../webfonts/fa-regular-400.ttf") format("truetype");
|
|
3009
|
+
unicode-range: U+F003, U+F006, U+F014, U+F016-F017, U+F01A-F01B, U+F01D,
|
|
3010
|
+
U+F022, U+F03E, U+F044, U+F046, U+F05C-F05D, U+F06E, U+F070, U+F087-F088,
|
|
3011
|
+
U+F08A, U+F094, U+F096-F097, U+F09D, U+F0A0, U+F0A2, U+F0A4-F0A7, U+F0C5,
|
|
3012
|
+
U+F0C7, U+F0E5-F0E6, U+F0EB, U+F0F6-F0F8, U+F10C, U+F114-F115, U+F118-F11A,
|
|
3013
|
+
U+F11C-F11D, U+F133, U+F147, U+F14E, U+F150-F152, U+F185-F186, U+F18E,
|
|
3014
|
+
U+F190-F192, U+F196, U+F1C1-F1C9, U+F1D9, U+F1DB, U+F1E3, U+F1EA, U+F1F7,
|
|
3015
|
+
U+F1F9, U+F20A, U+F247-F248, U+F24A, U+F24D, U+F255-F25B, U+F25D,
|
|
3016
|
+
U+F271-F274, U+F278, U+F27B, U+F28C, U+F28E, U+F29C, U+F2B5, U+F2B7, U+F2BA,
|
|
3017
|
+
U+F2BC, U+F2BE, U+F2C0-F2C1, U+F2C3, U+F2D0, U+F2D2, U+F2D4, U+F2DC;
|
|
3018
|
+
}
|
|
3019
|
+
@font-face {
|
|
3020
|
+
font-family: "FontAwesome";
|
|
3021
|
+
font-display: block;
|
|
3022
|
+
src: url("../webfonts/fa-v4compatibility.woff2") format("woff2"),
|
|
3023
|
+
url("../webfonts/fa-v4compatibility.ttf") format("truetype");
|
|
3024
|
+
unicode-range: U+F041, U+F047, U+F065-F066, U+F07D-F07E, U+F080, U+F08B,
|
|
3025
|
+
U+F08E, U+F090, U+F09A, U+F0AC, U+F0AE, U+F0B2, U+F0D0, U+F0D6, U+F0E4,
|
|
3026
|
+
U+F0EC, U+F10A-F10B, U+F123, U+F13E, U+F148-F149, U+F14C, U+F156, U+F15E,
|
|
3027
|
+
U+F160-F161, U+F163, U+F175-F178, U+F195, U+F1F8, U+F219, U+F250, U+F252,
|
|
3028
|
+
U+F27A;
|
|
3029
|
+
}`,
|
|
3030
|
+
"KOL-SKIP-NAV": `kol-link-wc > a > kol-span-wc {
|
|
3031
|
+
border-radius: var(--a11y-min-size);
|
|
3032
|
+
border-style: solid;
|
|
3033
|
+
border-width: 2px;
|
|
3034
|
+
gap: 0.5rem;
|
|
3035
|
+
line-height: 1rem;
|
|
3036
|
+
padding: 8px 14px;
|
|
3037
|
+
background-color: var(--color-ocean);
|
|
3038
|
+
border-color: var(--color-ocean);
|
|
3039
|
+
color: var(--color-white);
|
|
3040
|
+
cursor: pointer;
|
|
3041
|
+
}`,
|
|
3151
3042
|
"KOL-LINK-GROUP": `ul {
|
|
3152
3043
|
list-style: none;
|
|
3153
3044
|
margin: 0px;
|
|
@@ -3176,17 +3067,8 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
3176
3067
|
list-style-type: none !important;
|
|
3177
3068
|
margin-left: 0;
|
|
3178
3069
|
}`,
|
|
3179
|
-
"KOL-
|
|
3180
|
-
|
|
3181
|
-
border-style: solid;
|
|
3182
|
-
border-width: 2px;
|
|
3183
|
-
gap: 0.5rem;
|
|
3184
|
-
line-height: 1rem;
|
|
3185
|
-
padding: 0.75rem 1rem;
|
|
3186
|
-
background-color: var(--colorPrimary);
|
|
3187
|
-
border-color: var(--colorPrimary);
|
|
3188
|
-
color: var(--colorPrimaryFront);
|
|
3189
|
-
cursor: pointer;
|
|
3070
|
+
"KOL-TOOLTIP": `:host {
|
|
3071
|
+
--kolibri-font-size: var(--textFontSize);
|
|
3190
3072
|
}`
|
|
3191
3073
|
});
|
|
3192
3074
|
|
|
@@ -4706,30 +4588,26 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4706
4588
|
overflow-y: hidden;
|
|
4707
4589
|
}
|
|
4708
4590
|
caption {
|
|
4709
|
-
|
|
4591
|
+
position: absolute;
|
|
4592
|
+
width: 1px;
|
|
4593
|
+
height: 1px;
|
|
4594
|
+
padding: 0;
|
|
4595
|
+
margin: -1px;
|
|
4596
|
+
overflow: hidden;
|
|
4597
|
+
clip: rect(0, 0, 0, 0);
|
|
4598
|
+
white-space: nowrap;
|
|
4599
|
+
border-width: 0;
|
|
4710
4600
|
}
|
|
4711
4601
|
th {
|
|
4712
|
-
font-weight:
|
|
4713
|
-
color: var(--color-
|
|
4714
|
-
}
|
|
4715
|
-
:host table thead tr:first-child th,
|
|
4716
|
-
:host table thead tr:first-child td {
|
|
4717
|
-
border-width: 0;
|
|
4718
|
-
border-top-width: 2px;
|
|
4719
|
-
border-style: solid;
|
|
4720
|
-
border-color: var(--color-ice);
|
|
4602
|
+
font-weight: 700;
|
|
4603
|
+
color: var(--color-black);
|
|
4721
4604
|
}
|
|
4722
4605
|
table {
|
|
4723
4606
|
width: 100%;
|
|
4724
4607
|
border-spacing: 0;
|
|
4725
4608
|
}
|
|
4726
|
-
|
|
4727
|
-
|
|
4728
|
-
:host table thead tr:last-child td {
|
|
4729
|
-
border-width: 0;
|
|
4730
|
-
border-bottom-width: 2px;
|
|
4731
|
-
border-style: solid;
|
|
4732
|
-
border-color: var(--color-ice);
|
|
4609
|
+
tr:last-child td {
|
|
4610
|
+
border-bottom-width: 0;
|
|
4733
4611
|
}
|
|
4734
4612
|
th {
|
|
4735
4613
|
background-color: var(--color-white);
|
|
@@ -4746,13 +4624,12 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4746
4624
|
}
|
|
4747
4625
|
th div.right {
|
|
4748
4626
|
justify-content: end;
|
|
4749
|
-
}
|
|
4750
|
-
tr:nth-child(even) {
|
|
4751
|
-
background-color: #f2f2f2;
|
|
4752
|
-
}
|
|
4627
|
+
} /*tr:nth-child(even) {background-color: #f2f2f2;}*/
|
|
4753
4628
|
th,
|
|
4754
4629
|
td {
|
|
4755
4630
|
padding: 0.5em;
|
|
4631
|
+
border-bottom: 1px solid var(--color-granite);
|
|
4632
|
+
height: 2.75rem;
|
|
4756
4633
|
}
|
|
4757
4634
|
td.center > div {
|
|
4758
4635
|
display: flex;
|
|
@@ -4776,6 +4653,11 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4776
4653
|
justify-items: center;
|
|
4777
4654
|
gap: 1em;
|
|
4778
4655
|
}
|
|
4656
|
+
.pagination {
|
|
4657
|
+
align-items: center;
|
|
4658
|
+
justify-content: start;
|
|
4659
|
+
grid-template-columns: auto 1fr;
|
|
4660
|
+
}
|
|
4779
4661
|
@media (min-width: 1024px) {
|
|
4780
4662
|
:host > div:last-child,
|
|
4781
4663
|
:host > div:last-child > div:last-child {
|
|
@@ -5412,7 +5294,9 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5412
5294
|
}`,
|
|
5413
5295
|
"KOL-PAGINATION": `:host {
|
|
5414
5296
|
display: grid;
|
|
5297
|
+
grid-template-columns: 1fr auto;
|
|
5415
5298
|
gap: 1rem;
|
|
5299
|
+
align-items: center;
|
|
5416
5300
|
}
|
|
5417
5301
|
:host .navigation-list {
|
|
5418
5302
|
display: inline-flex;
|