@public-ui/themes 1.5.0-rc.20 → 1.5.0-rc.21
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 +347 -402
- package/dist/index.d.ts +11 -11
- package/dist/index.mjs +347 -402
- package/package.json +5 -5
package/dist/index.cjs
CHANGED
|
@@ -23371,13 +23371,9 @@ const MAPZ = components.KoliBri.createTheme("mapz", {
|
|
|
23371
23371
|
padding: 0;
|
|
23372
23372
|
}
|
|
23373
23373
|
*[tabindex]:focus,
|
|
23374
|
-
|
|
23375
|
-
|
|
23376
|
-
|
|
23377
|
-
select:focus,
|
|
23378
|
-
summary:focus,
|
|
23379
|
-
textarea:focus {
|
|
23380
|
-
border-radius: var(--kolibri-border-radius);
|
|
23374
|
+
kol-input:not(.checkbox, .radio) .input:focus-within,
|
|
23375
|
+
kol-input:is(.checkbox, .radio) input:focus,
|
|
23376
|
+
summary:focus {
|
|
23381
23377
|
cursor: pointer;
|
|
23382
23378
|
outline-color: var(--kolibri-color-outline);
|
|
23383
23379
|
outline-offset: 2px;
|
|
@@ -23562,53 +23558,54 @@ const MAPZ = components.KoliBri.createTheme("mapz", {
|
|
|
23562
23558
|
.card .content {
|
|
23563
23559
|
padding: var(--spacing);
|
|
23564
23560
|
}`,
|
|
23565
|
-
"KOL-INPUT-TEXT": `
|
|
23566
|
-
|
|
23567
|
-
|
|
23568
|
-
|
|
23561
|
+
"KOL-INPUT-TEXT": `input,
|
|
23562
|
+
select,
|
|
23563
|
+
textarea {
|
|
23564
|
+
border: none;
|
|
23569
23565
|
}
|
|
23570
|
-
input
|
|
23571
|
-
|
|
23572
|
-
|
|
23573
|
-
|
|
23574
|
-
|
|
23575
|
-
|
|
23576
|
-
|
|
23566
|
+
input[type="color"] {
|
|
23567
|
+
border: none;
|
|
23568
|
+
min-height: 40px !important;
|
|
23569
|
+
}
|
|
23570
|
+
input[type="color"],
|
|
23571
|
+
input[type="file"] {
|
|
23572
|
+
background-color: transparent;
|
|
23573
|
+
}
|
|
23574
|
+
kol-input {
|
|
23575
|
+
gap: var(--spacing);
|
|
23577
23576
|
}
|
|
23578
23577
|
kol-input > label {
|
|
23579
23578
|
order: 1;
|
|
23580
|
-
}
|
|
23581
|
-
kol-input > label > span {
|
|
23582
23579
|
color: var(--default-letter);
|
|
23583
|
-
font-size: 0.875rem;
|
|
23584
|
-
line-height: 1.5rem;
|
|
23585
23580
|
}
|
|
23586
|
-
kol-input >
|
|
23587
|
-
|
|
23581
|
+
kol-input > .input {
|
|
23582
|
+
border-color: var(--kolibri-border-color);
|
|
23588
23583
|
border-radius: 0.25rem;
|
|
23589
|
-
|
|
23584
|
+
border-style: solid;
|
|
23585
|
+
border-width: 2px;
|
|
23590
23586
|
order: 2;
|
|
23591
23587
|
}
|
|
23592
|
-
kol-input >
|
|
23588
|
+
kol-input:hover > .input {
|
|
23589
|
+
border-color: var(--kolibri-color-secondary);
|
|
23590
|
+
}
|
|
23591
|
+
kol-input > .input > kol-icon:first-child {
|
|
23592
|
+
margin-left: 0.75em;
|
|
23593
|
+
}
|
|
23594
|
+
kol-input > .input > kol-icon:last-child {
|
|
23595
|
+
margin-right: 0.75em;
|
|
23596
|
+
}
|
|
23597
|
+
kol-input > .error {
|
|
23593
23598
|
order: 3;
|
|
23594
23599
|
}
|
|
23600
|
+
kol-input > .hint {
|
|
23601
|
+
order: 4;
|
|
23602
|
+
font-size: 0.875em;
|
|
23603
|
+
}
|
|
23595
23604
|
input,
|
|
23596
23605
|
select,
|
|
23597
23606
|
textarea {
|
|
23598
|
-
font-family: var(--font-family);
|
|
23599
|
-
background-color: transparent;
|
|
23600
|
-
box-sizing: border-box;
|
|
23601
|
-
font-size: 1rem;
|
|
23602
|
-
display: inline-flex;
|
|
23603
|
-
line-height: 1.5em;
|
|
23604
23607
|
color: var(--default-letter);
|
|
23605
|
-
border-color: var(--kolibri-border-color);
|
|
23606
|
-
border-width: 2px;
|
|
23607
|
-
border-style: solid;
|
|
23608
23608
|
padding: 0.5em 0.75em;
|
|
23609
|
-
border-radius: 0.25rem;
|
|
23610
|
-
overflow: hidden;
|
|
23611
|
-
width: 100%;
|
|
23612
23609
|
}
|
|
23613
23610
|
input:not([type="range"]),
|
|
23614
23611
|
select:not([multiple]) {
|
|
@@ -23622,27 +23619,11 @@ const MAPZ = components.KoliBri.createTheme("mapz", {
|
|
|
23622
23619
|
}
|
|
23623
23620
|
input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
|
|
23624
23621
|
cursor: not-allowed;
|
|
23625
|
-
background-color: var(--background-light-grey);
|
|
23626
|
-
}
|
|
23627
|
-
.required label > span::after {
|
|
23628
|
-
content: "*";
|
|
23629
|
-
padding-left: 0.125em;
|
|
23630
|
-
}
|
|
23631
|
-
.icon-left input,
|
|
23632
|
-
.icon-left select {
|
|
23633
|
-
padding-left: 2em;
|
|
23634
|
-
}
|
|
23635
|
-
.icon-right input,
|
|
23636
|
-
.icon-right select {
|
|
23637
|
-
padding-right: 2em;
|
|
23638
23622
|
}
|
|
23639
23623
|
select[multiple],
|
|
23640
23624
|
textarea {
|
|
23641
23625
|
overflow: auto;
|
|
23642
23626
|
}
|
|
23643
|
-
textarea {
|
|
23644
|
-
display: block;
|
|
23645
|
-
}
|
|
23646
23627
|
select option {
|
|
23647
23628
|
margin: 1px 0;
|
|
23648
23629
|
padding: 0.5em;
|
|
@@ -23662,56 +23643,54 @@ const MAPZ = components.KoliBri.createTheme("mapz", {
|
|
|
23662
23643
|
"KOL-BUTTON-GROUP": `kol-button-group-wc {
|
|
23663
23644
|
gap: 0.25em;
|
|
23664
23645
|
}`,
|
|
23665
|
-
"KOL-INPUT-PASSWORD":
|
|
23666
|
-
|
|
23646
|
+
"KOL-INPUT-PASSWORD": `input,
|
|
23647
|
+
select,
|
|
23648
|
+
textarea {
|
|
23649
|
+
border: none;
|
|
23667
23650
|
}
|
|
23668
|
-
|
|
23669
|
-
|
|
23670
|
-
|
|
23671
|
-
margin: 0;
|
|
23651
|
+
input[type="color"] {
|
|
23652
|
+
border: none;
|
|
23653
|
+
min-height: 40px !important;
|
|
23672
23654
|
}
|
|
23673
|
-
input
|
|
23674
|
-
input
|
|
23675
|
-
|
|
23676
|
-
|
|
23677
|
-
|
|
23678
|
-
|
|
23679
|
-
border-color: var(--kolibri-color-secondary);
|
|
23655
|
+
input[type="color"],
|
|
23656
|
+
input[type="file"] {
|
|
23657
|
+
background-color: transparent;
|
|
23658
|
+
}
|
|
23659
|
+
kol-input {
|
|
23660
|
+
gap: var(--spacing);
|
|
23680
23661
|
}
|
|
23681
23662
|
kol-input > label {
|
|
23682
23663
|
order: 1;
|
|
23683
|
-
}
|
|
23684
|
-
kol-input > label > span {
|
|
23685
23664
|
color: var(--default-letter);
|
|
23686
|
-
font-size: 0.875rem;
|
|
23687
|
-
line-height: 1.5rem;
|
|
23688
23665
|
}
|
|
23689
|
-
kol-input >
|
|
23690
|
-
|
|
23666
|
+
kol-input > .input {
|
|
23667
|
+
border-color: var(--kolibri-border-color);
|
|
23691
23668
|
border-radius: 0.25rem;
|
|
23692
|
-
|
|
23669
|
+
border-style: solid;
|
|
23670
|
+
border-width: 2px;
|
|
23693
23671
|
order: 2;
|
|
23694
23672
|
}
|
|
23695
|
-
kol-input >
|
|
23673
|
+
kol-input:hover > .input {
|
|
23674
|
+
border-color: var(--kolibri-color-secondary);
|
|
23675
|
+
}
|
|
23676
|
+
kol-input > .input > kol-icon:first-child {
|
|
23677
|
+
margin-left: 0.75em;
|
|
23678
|
+
}
|
|
23679
|
+
kol-input > .input > kol-icon:last-child {
|
|
23680
|
+
margin-right: 0.75em;
|
|
23681
|
+
}
|
|
23682
|
+
kol-input > .error {
|
|
23696
23683
|
order: 3;
|
|
23697
23684
|
}
|
|
23685
|
+
kol-input > .hint {
|
|
23686
|
+
order: 4;
|
|
23687
|
+
font-size: 0.875em;
|
|
23688
|
+
}
|
|
23698
23689
|
input,
|
|
23699
23690
|
select,
|
|
23700
23691
|
textarea {
|
|
23701
|
-
font-family: var(--font-family);
|
|
23702
|
-
background-color: transparent;
|
|
23703
|
-
box-sizing: border-box;
|
|
23704
|
-
font-size: 1rem;
|
|
23705
|
-
display: inline-flex;
|
|
23706
|
-
line-height: 1.5em;
|
|
23707
23692
|
color: var(--default-letter);
|
|
23708
|
-
border-color: var(--kolibri-border-color);
|
|
23709
|
-
border-width: 2px;
|
|
23710
|
-
border-style: solid;
|
|
23711
23693
|
padding: 0.5em 0.75em;
|
|
23712
|
-
border-radius: 0.25rem;
|
|
23713
|
-
overflow: hidden;
|
|
23714
|
-
width: 100%;
|
|
23715
23694
|
}
|
|
23716
23695
|
input:not([type="range"]),
|
|
23717
23696
|
select:not([multiple]) {
|
|
@@ -23725,27 +23704,11 @@ const MAPZ = components.KoliBri.createTheme("mapz", {
|
|
|
23725
23704
|
}
|
|
23726
23705
|
input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
|
|
23727
23706
|
cursor: not-allowed;
|
|
23728
|
-
background-color: var(--background-light-grey);
|
|
23729
|
-
}
|
|
23730
|
-
.required label > span::after {
|
|
23731
|
-
content: "*";
|
|
23732
|
-
padding-left: 0.125em;
|
|
23733
|
-
}
|
|
23734
|
-
.icon-left input,
|
|
23735
|
-
.icon-left select {
|
|
23736
|
-
padding-left: 2em;
|
|
23737
|
-
}
|
|
23738
|
-
.icon-right input,
|
|
23739
|
-
.icon-right select {
|
|
23740
|
-
padding-right: 2em;
|
|
23741
23707
|
}
|
|
23742
23708
|
select[multiple],
|
|
23743
23709
|
textarea {
|
|
23744
23710
|
overflow: auto;
|
|
23745
23711
|
}
|
|
23746
|
-
textarea {
|
|
23747
|
-
display: block;
|
|
23748
|
-
}
|
|
23749
23712
|
select option {
|
|
23750
23713
|
margin: 1px 0;
|
|
23751
23714
|
padding: 0.5em;
|
|
@@ -23762,53 +23725,54 @@ const MAPZ = components.KoliBri.createTheme("mapz", {
|
|
|
23762
23725
|
background-color: var(--kolibri-color-primary);
|
|
23763
23726
|
color: white;
|
|
23764
23727
|
}`,
|
|
23765
|
-
"KOL-INPUT-NUMBER": `
|
|
23766
|
-
|
|
23767
|
-
|
|
23768
|
-
|
|
23728
|
+
"KOL-INPUT-NUMBER": `input,
|
|
23729
|
+
select,
|
|
23730
|
+
textarea {
|
|
23731
|
+
border: none;
|
|
23769
23732
|
}
|
|
23770
|
-
input
|
|
23771
|
-
|
|
23772
|
-
|
|
23773
|
-
|
|
23774
|
-
|
|
23775
|
-
|
|
23776
|
-
|
|
23733
|
+
input[type="color"] {
|
|
23734
|
+
border: none;
|
|
23735
|
+
min-height: 40px !important;
|
|
23736
|
+
}
|
|
23737
|
+
input[type="color"],
|
|
23738
|
+
input[type="file"] {
|
|
23739
|
+
background-color: transparent;
|
|
23740
|
+
}
|
|
23741
|
+
kol-input {
|
|
23742
|
+
gap: var(--spacing);
|
|
23777
23743
|
}
|
|
23778
23744
|
kol-input > label {
|
|
23779
23745
|
order: 1;
|
|
23780
|
-
}
|
|
23781
|
-
kol-input > label > span {
|
|
23782
23746
|
color: var(--default-letter);
|
|
23783
|
-
font-size: 0.875rem;
|
|
23784
|
-
line-height: 1.5rem;
|
|
23785
23747
|
}
|
|
23786
|
-
kol-input >
|
|
23787
|
-
|
|
23748
|
+
kol-input > .input {
|
|
23749
|
+
border-color: var(--kolibri-border-color);
|
|
23788
23750
|
border-radius: 0.25rem;
|
|
23789
|
-
|
|
23751
|
+
border-style: solid;
|
|
23752
|
+
border-width: 2px;
|
|
23790
23753
|
order: 2;
|
|
23791
23754
|
}
|
|
23792
|
-
kol-input >
|
|
23755
|
+
kol-input:hover > .input {
|
|
23756
|
+
border-color: var(--kolibri-color-secondary);
|
|
23757
|
+
}
|
|
23758
|
+
kol-input > .input > kol-icon:first-child {
|
|
23759
|
+
margin-left: 0.75em;
|
|
23760
|
+
}
|
|
23761
|
+
kol-input > .input > kol-icon:last-child {
|
|
23762
|
+
margin-right: 0.75em;
|
|
23763
|
+
}
|
|
23764
|
+
kol-input > .error {
|
|
23793
23765
|
order: 3;
|
|
23794
23766
|
}
|
|
23767
|
+
kol-input > .hint {
|
|
23768
|
+
order: 4;
|
|
23769
|
+
font-size: 0.875em;
|
|
23770
|
+
}
|
|
23795
23771
|
input,
|
|
23796
23772
|
select,
|
|
23797
23773
|
textarea {
|
|
23798
|
-
font-family: var(--font-family);
|
|
23799
|
-
background-color: transparent;
|
|
23800
|
-
box-sizing: border-box;
|
|
23801
|
-
font-size: 1rem;
|
|
23802
|
-
display: inline-flex;
|
|
23803
|
-
line-height: 1.5em;
|
|
23804
23774
|
color: var(--default-letter);
|
|
23805
|
-
border-color: var(--kolibri-border-color);
|
|
23806
|
-
border-width: 2px;
|
|
23807
|
-
border-style: solid;
|
|
23808
23775
|
padding: 0.5em 0.75em;
|
|
23809
|
-
border-radius: 0.25rem;
|
|
23810
|
-
overflow: hidden;
|
|
23811
|
-
width: 100%;
|
|
23812
23776
|
}
|
|
23813
23777
|
input:not([type="range"]),
|
|
23814
23778
|
select:not([multiple]) {
|
|
@@ -23822,27 +23786,11 @@ const MAPZ = components.KoliBri.createTheme("mapz", {
|
|
|
23822
23786
|
}
|
|
23823
23787
|
input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
|
|
23824
23788
|
cursor: not-allowed;
|
|
23825
|
-
background-color: var(--background-light-grey);
|
|
23826
|
-
}
|
|
23827
|
-
.required label > span::after {
|
|
23828
|
-
content: "*";
|
|
23829
|
-
padding-left: 0.125em;
|
|
23830
|
-
}
|
|
23831
|
-
.icon-left input,
|
|
23832
|
-
.icon-left select {
|
|
23833
|
-
padding-left: 2em;
|
|
23834
|
-
}
|
|
23835
|
-
.icon-right input,
|
|
23836
|
-
.icon-right select {
|
|
23837
|
-
padding-right: 2em;
|
|
23838
23789
|
}
|
|
23839
23790
|
select[multiple],
|
|
23840
23791
|
textarea {
|
|
23841
23792
|
overflow: auto;
|
|
23842
23793
|
}
|
|
23843
|
-
textarea {
|
|
23844
|
-
display: block;
|
|
23845
|
-
}
|
|
23846
23794
|
select option {
|
|
23847
23795
|
margin: 1px 0;
|
|
23848
23796
|
padding: 0.5em;
|
|
@@ -23859,53 +23807,54 @@ const MAPZ = components.KoliBri.createTheme("mapz", {
|
|
|
23859
23807
|
background-color: var(--kolibri-color-primary);
|
|
23860
23808
|
color: white;
|
|
23861
23809
|
}`,
|
|
23862
|
-
"KOL-INPUT-EMAIL": `
|
|
23863
|
-
|
|
23864
|
-
|
|
23865
|
-
|
|
23810
|
+
"KOL-INPUT-EMAIL": `input,
|
|
23811
|
+
select,
|
|
23812
|
+
textarea {
|
|
23813
|
+
border: none;
|
|
23866
23814
|
}
|
|
23867
|
-
input
|
|
23868
|
-
|
|
23869
|
-
|
|
23870
|
-
|
|
23871
|
-
|
|
23872
|
-
|
|
23873
|
-
|
|
23815
|
+
input[type="color"] {
|
|
23816
|
+
border: none;
|
|
23817
|
+
min-height: 40px !important;
|
|
23818
|
+
}
|
|
23819
|
+
input[type="color"],
|
|
23820
|
+
input[type="file"] {
|
|
23821
|
+
background-color: transparent;
|
|
23822
|
+
}
|
|
23823
|
+
kol-input {
|
|
23824
|
+
gap: var(--spacing);
|
|
23874
23825
|
}
|
|
23875
23826
|
kol-input > label {
|
|
23876
23827
|
order: 1;
|
|
23877
|
-
}
|
|
23878
|
-
kol-input > label > span {
|
|
23879
23828
|
color: var(--default-letter);
|
|
23880
|
-
font-size: 0.875rem;
|
|
23881
|
-
line-height: 1.5rem;
|
|
23882
23829
|
}
|
|
23883
|
-
kol-input >
|
|
23884
|
-
|
|
23830
|
+
kol-input > .input {
|
|
23831
|
+
border-color: var(--kolibri-border-color);
|
|
23885
23832
|
border-radius: 0.25rem;
|
|
23886
|
-
|
|
23833
|
+
border-style: solid;
|
|
23834
|
+
border-width: 2px;
|
|
23887
23835
|
order: 2;
|
|
23888
23836
|
}
|
|
23889
|
-
kol-input >
|
|
23837
|
+
kol-input:hover > .input {
|
|
23838
|
+
border-color: var(--kolibri-color-secondary);
|
|
23839
|
+
}
|
|
23840
|
+
kol-input > .input > kol-icon:first-child {
|
|
23841
|
+
margin-left: 0.75em;
|
|
23842
|
+
}
|
|
23843
|
+
kol-input > .input > kol-icon:last-child {
|
|
23844
|
+
margin-right: 0.75em;
|
|
23845
|
+
}
|
|
23846
|
+
kol-input > .error {
|
|
23890
23847
|
order: 3;
|
|
23891
23848
|
}
|
|
23849
|
+
kol-input > .hint {
|
|
23850
|
+
order: 4;
|
|
23851
|
+
font-size: 0.875em;
|
|
23852
|
+
}
|
|
23892
23853
|
input,
|
|
23893
23854
|
select,
|
|
23894
23855
|
textarea {
|
|
23895
|
-
font-family: var(--font-family);
|
|
23896
|
-
background-color: transparent;
|
|
23897
|
-
box-sizing: border-box;
|
|
23898
|
-
font-size: 1rem;
|
|
23899
|
-
display: inline-flex;
|
|
23900
|
-
line-height: 1.5em;
|
|
23901
23856
|
color: var(--default-letter);
|
|
23902
|
-
border-color: var(--kolibri-border-color);
|
|
23903
|
-
border-width: 2px;
|
|
23904
|
-
border-style: solid;
|
|
23905
23857
|
padding: 0.5em 0.75em;
|
|
23906
|
-
border-radius: 0.25rem;
|
|
23907
|
-
overflow: hidden;
|
|
23908
|
-
width: 100%;
|
|
23909
23858
|
}
|
|
23910
23859
|
input:not([type="range"]),
|
|
23911
23860
|
select:not([multiple]) {
|
|
@@ -23919,27 +23868,11 @@ const MAPZ = components.KoliBri.createTheme("mapz", {
|
|
|
23919
23868
|
}
|
|
23920
23869
|
input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
|
|
23921
23870
|
cursor: not-allowed;
|
|
23922
|
-
background-color: var(--background-light-grey);
|
|
23923
|
-
}
|
|
23924
|
-
.required label > span::after {
|
|
23925
|
-
content: "*";
|
|
23926
|
-
padding-left: 0.125em;
|
|
23927
|
-
}
|
|
23928
|
-
.icon-left input,
|
|
23929
|
-
.icon-left select {
|
|
23930
|
-
padding-left: 2em;
|
|
23931
|
-
}
|
|
23932
|
-
.icon-right input,
|
|
23933
|
-
.icon-right select {
|
|
23934
|
-
padding-right: 2em;
|
|
23935
23871
|
}
|
|
23936
23872
|
select[multiple],
|
|
23937
23873
|
textarea {
|
|
23938
23874
|
overflow: auto;
|
|
23939
23875
|
}
|
|
23940
|
-
textarea {
|
|
23941
|
-
display: block;
|
|
23942
|
-
}
|
|
23943
23876
|
select option {
|
|
23944
23877
|
margin: 1px 0;
|
|
23945
23878
|
padding: 0.5em;
|
|
@@ -23956,53 +23889,54 @@ const MAPZ = components.KoliBri.createTheme("mapz", {
|
|
|
23956
23889
|
background-color: var(--kolibri-color-primary);
|
|
23957
23890
|
color: white;
|
|
23958
23891
|
}`,
|
|
23959
|
-
"KOL-INPUT-FILE": `
|
|
23960
|
-
|
|
23961
|
-
|
|
23962
|
-
|
|
23892
|
+
"KOL-INPUT-FILE": `input,
|
|
23893
|
+
select,
|
|
23894
|
+
textarea {
|
|
23895
|
+
border: none;
|
|
23963
23896
|
}
|
|
23964
|
-
input
|
|
23965
|
-
|
|
23966
|
-
|
|
23967
|
-
|
|
23968
|
-
|
|
23969
|
-
|
|
23970
|
-
|
|
23897
|
+
input[type="color"] {
|
|
23898
|
+
border: none;
|
|
23899
|
+
min-height: 40px !important;
|
|
23900
|
+
}
|
|
23901
|
+
input[type="color"],
|
|
23902
|
+
input[type="file"] {
|
|
23903
|
+
background-color: transparent;
|
|
23904
|
+
}
|
|
23905
|
+
kol-input {
|
|
23906
|
+
gap: var(--spacing);
|
|
23971
23907
|
}
|
|
23972
23908
|
kol-input > label {
|
|
23973
23909
|
order: 1;
|
|
23974
|
-
}
|
|
23975
|
-
kol-input > label > span {
|
|
23976
23910
|
color: var(--default-letter);
|
|
23977
|
-
font-size: 0.875rem;
|
|
23978
|
-
line-height: 1.5rem;
|
|
23979
23911
|
}
|
|
23980
|
-
kol-input >
|
|
23981
|
-
|
|
23912
|
+
kol-input > .input {
|
|
23913
|
+
border-color: var(--kolibri-border-color);
|
|
23982
23914
|
border-radius: 0.25rem;
|
|
23983
|
-
|
|
23915
|
+
border-style: solid;
|
|
23916
|
+
border-width: 2px;
|
|
23984
23917
|
order: 2;
|
|
23985
23918
|
}
|
|
23986
|
-
kol-input >
|
|
23919
|
+
kol-input:hover > .input {
|
|
23920
|
+
border-color: var(--kolibri-color-secondary);
|
|
23921
|
+
}
|
|
23922
|
+
kol-input > .input > kol-icon:first-child {
|
|
23923
|
+
margin-left: 0.75em;
|
|
23924
|
+
}
|
|
23925
|
+
kol-input > .input > kol-icon:last-child {
|
|
23926
|
+
margin-right: 0.75em;
|
|
23927
|
+
}
|
|
23928
|
+
kol-input > .error {
|
|
23987
23929
|
order: 3;
|
|
23988
23930
|
}
|
|
23931
|
+
kol-input > .hint {
|
|
23932
|
+
order: 4;
|
|
23933
|
+
font-size: 0.875em;
|
|
23934
|
+
}
|
|
23989
23935
|
input,
|
|
23990
23936
|
select,
|
|
23991
23937
|
textarea {
|
|
23992
|
-
font-family: var(--font-family);
|
|
23993
|
-
background-color: transparent;
|
|
23994
|
-
box-sizing: border-box;
|
|
23995
|
-
font-size: 1rem;
|
|
23996
|
-
display: inline-flex;
|
|
23997
|
-
line-height: 1.5em;
|
|
23998
23938
|
color: var(--default-letter);
|
|
23999
|
-
border-color: var(--kolibri-border-color);
|
|
24000
|
-
border-width: 2px;
|
|
24001
|
-
border-style: solid;
|
|
24002
23939
|
padding: 0.5em 0.75em;
|
|
24003
|
-
border-radius: 0.25rem;
|
|
24004
|
-
overflow: hidden;
|
|
24005
|
-
width: 100%;
|
|
24006
23940
|
}
|
|
24007
23941
|
input:not([type="range"]),
|
|
24008
23942
|
select:not([multiple]) {
|
|
@@ -24016,27 +23950,11 @@ const MAPZ = components.KoliBri.createTheme("mapz", {
|
|
|
24016
23950
|
}
|
|
24017
23951
|
input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
|
|
24018
23952
|
cursor: not-allowed;
|
|
24019
|
-
background-color: var(--background-light-grey);
|
|
24020
|
-
}
|
|
24021
|
-
.required label > span::after {
|
|
24022
|
-
content: "*";
|
|
24023
|
-
padding-left: 0.125em;
|
|
24024
|
-
}
|
|
24025
|
-
.icon-left input,
|
|
24026
|
-
.icon-left select {
|
|
24027
|
-
padding-left: 2em;
|
|
24028
|
-
}
|
|
24029
|
-
.icon-right input,
|
|
24030
|
-
.icon-right select {
|
|
24031
|
-
padding-right: 2em;
|
|
24032
23953
|
}
|
|
24033
23954
|
select[multiple],
|
|
24034
23955
|
textarea {
|
|
24035
23956
|
overflow: auto;
|
|
24036
23957
|
}
|
|
24037
|
-
textarea {
|
|
24038
|
-
display: block;
|
|
24039
|
-
}
|
|
24040
23958
|
select option {
|
|
24041
23959
|
margin: 1px 0;
|
|
24042
23960
|
padding: 0.5em;
|
|
@@ -24053,53 +23971,54 @@ const MAPZ = components.KoliBri.createTheme("mapz", {
|
|
|
24053
23971
|
background-color: var(--kolibri-color-primary);
|
|
24054
23972
|
color: white;
|
|
24055
23973
|
}`,
|
|
24056
|
-
"KOL-TEXTAREA": `
|
|
24057
|
-
|
|
24058
|
-
|
|
24059
|
-
|
|
23974
|
+
"KOL-TEXTAREA": `input,
|
|
23975
|
+
select,
|
|
23976
|
+
textarea {
|
|
23977
|
+
border: none;
|
|
24060
23978
|
}
|
|
24061
|
-
input
|
|
24062
|
-
|
|
24063
|
-
|
|
24064
|
-
|
|
24065
|
-
|
|
24066
|
-
|
|
24067
|
-
|
|
23979
|
+
input[type="color"] {
|
|
23980
|
+
border: none;
|
|
23981
|
+
min-height: 40px !important;
|
|
23982
|
+
}
|
|
23983
|
+
input[type="color"],
|
|
23984
|
+
input[type="file"] {
|
|
23985
|
+
background-color: transparent;
|
|
23986
|
+
}
|
|
23987
|
+
kol-input {
|
|
23988
|
+
gap: var(--spacing);
|
|
24068
23989
|
}
|
|
24069
23990
|
kol-input > label {
|
|
24070
23991
|
order: 1;
|
|
24071
|
-
}
|
|
24072
|
-
kol-input > label > span {
|
|
24073
23992
|
color: var(--default-letter);
|
|
24074
|
-
font-size: 0.875rem;
|
|
24075
|
-
line-height: 1.5rem;
|
|
24076
23993
|
}
|
|
24077
|
-
kol-input >
|
|
24078
|
-
|
|
23994
|
+
kol-input > .input {
|
|
23995
|
+
border-color: var(--kolibri-border-color);
|
|
24079
23996
|
border-radius: 0.25rem;
|
|
24080
|
-
|
|
23997
|
+
border-style: solid;
|
|
23998
|
+
border-width: 2px;
|
|
24081
23999
|
order: 2;
|
|
24082
24000
|
}
|
|
24083
|
-
kol-input >
|
|
24001
|
+
kol-input:hover > .input {
|
|
24002
|
+
border-color: var(--kolibri-color-secondary);
|
|
24003
|
+
}
|
|
24004
|
+
kol-input > .input > kol-icon:first-child {
|
|
24005
|
+
margin-left: 0.75em;
|
|
24006
|
+
}
|
|
24007
|
+
kol-input > .input > kol-icon:last-child {
|
|
24008
|
+
margin-right: 0.75em;
|
|
24009
|
+
}
|
|
24010
|
+
kol-input > .error {
|
|
24084
24011
|
order: 3;
|
|
24085
24012
|
}
|
|
24086
|
-
input
|
|
24087
|
-
|
|
24088
|
-
|
|
24089
|
-
|
|
24090
|
-
|
|
24091
|
-
|
|
24092
|
-
|
|
24093
|
-
display: inline-flex;
|
|
24094
|
-
line-height: 1.5em;
|
|
24013
|
+
kol-input > .hint {
|
|
24014
|
+
order: 4;
|
|
24015
|
+
font-size: 0.875em;
|
|
24016
|
+
}
|
|
24017
|
+
input,
|
|
24018
|
+
select,
|
|
24019
|
+
textarea {
|
|
24095
24020
|
color: var(--default-letter);
|
|
24096
|
-
border-color: var(--kolibri-border-color);
|
|
24097
|
-
border-width: 2px;
|
|
24098
|
-
border-style: solid;
|
|
24099
24021
|
padding: 0.5em 0.75em;
|
|
24100
|
-
border-radius: 0.25rem;
|
|
24101
|
-
overflow: hidden;
|
|
24102
|
-
width: 100%;
|
|
24103
24022
|
}
|
|
24104
24023
|
input:not([type="range"]),
|
|
24105
24024
|
select:not([multiple]) {
|
|
@@ -24113,27 +24032,11 @@ const MAPZ = components.KoliBri.createTheme("mapz", {
|
|
|
24113
24032
|
}
|
|
24114
24033
|
input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
|
|
24115
24034
|
cursor: not-allowed;
|
|
24116
|
-
background-color: var(--background-light-grey);
|
|
24117
|
-
}
|
|
24118
|
-
.required label > span::after {
|
|
24119
|
-
content: "*";
|
|
24120
|
-
padding-left: 0.125em;
|
|
24121
|
-
}
|
|
24122
|
-
.icon-left input,
|
|
24123
|
-
.icon-left select {
|
|
24124
|
-
padding-left: 2em;
|
|
24125
|
-
}
|
|
24126
|
-
.icon-right input,
|
|
24127
|
-
.icon-right select {
|
|
24128
|
-
padding-right: 2em;
|
|
24129
24035
|
}
|
|
24130
24036
|
select[multiple],
|
|
24131
24037
|
textarea {
|
|
24132
24038
|
overflow: auto;
|
|
24133
24039
|
}
|
|
24134
|
-
textarea {
|
|
24135
|
-
display: block;
|
|
24136
|
-
}
|
|
24137
24040
|
select option {
|
|
24138
24041
|
margin: 1px 0;
|
|
24139
24042
|
padding: 0.5em;
|
|
@@ -24378,18 +24281,7 @@ const MAPZ = components.KoliBri.createTheme("mapz", {
|
|
|
24378
24281
|
height: calc(6 * var(--spacing));
|
|
24379
24282
|
min-width: calc(6 * var(--spacing));
|
|
24380
24283
|
width: calc(6 * var(--spacing));
|
|
24381
|
-
}
|
|
24382
|
-
fieldset div input[type="radio"]:before {
|
|
24383
|
-
content: "";
|
|
24384
|
-
cursor: pointer;
|
|
24385
|
-
left: calc(1.5 * var(--spacing) - 2px);
|
|
24386
|
-
top: calc(1.5 * var(--spacing) - 2px);
|
|
24387
|
-
position: relative;
|
|
24388
|
-
border-radius: 100%;
|
|
24389
|
-
display: block;
|
|
24390
|
-
height: calc(3 * var(--spacing));
|
|
24391
|
-
width: calc(3 * var(--spacing));
|
|
24392
|
-
}
|
|
24284
|
+
} /* fieldset div input[type="radio"]:before {content: "";cursor: pointer;left: calc(1.5 * var(--spacing) - 2px);top: calc(1.5 * var(--spacing) - 2px);position: relative;border-radius: 100%;display: block;height: calc(3 * var(--spacing));width: calc(3 * var(--spacing));}*/
|
|
24393
24285
|
fieldset div input[type="radio"]:checked:before {
|
|
24394
24286
|
box-shadow: 0 0 0.1rem black;
|
|
24395
24287
|
background-color: var(--kolibri-color-primary);
|
|
@@ -24559,53 +24451,54 @@ const MAPZ = components.KoliBri.createTheme("mapz", {
|
|
|
24559
24451
|
stroke: var(--kolibri-color-normal);
|
|
24560
24452
|
fill: transparent;
|
|
24561
24453
|
}`,
|
|
24562
|
-
"KOL-SELECT": `
|
|
24563
|
-
|
|
24564
|
-
|
|
24565
|
-
|
|
24454
|
+
"KOL-SELECT": `input,
|
|
24455
|
+
select,
|
|
24456
|
+
textarea {
|
|
24457
|
+
border: none;
|
|
24566
24458
|
}
|
|
24567
|
-
input
|
|
24568
|
-
|
|
24569
|
-
|
|
24570
|
-
|
|
24571
|
-
|
|
24572
|
-
|
|
24573
|
-
|
|
24459
|
+
input[type="color"] {
|
|
24460
|
+
border: none;
|
|
24461
|
+
min-height: 40px !important;
|
|
24462
|
+
}
|
|
24463
|
+
input[type="color"],
|
|
24464
|
+
input[type="file"] {
|
|
24465
|
+
background-color: transparent;
|
|
24466
|
+
}
|
|
24467
|
+
kol-input {
|
|
24468
|
+
gap: var(--spacing);
|
|
24574
24469
|
}
|
|
24575
24470
|
kol-input > label {
|
|
24576
24471
|
order: 1;
|
|
24577
|
-
}
|
|
24578
|
-
kol-input > label > span {
|
|
24579
24472
|
color: var(--default-letter);
|
|
24580
|
-
font-size: 0.875rem;
|
|
24581
|
-
line-height: 1.5rem;
|
|
24582
24473
|
}
|
|
24583
|
-
kol-input >
|
|
24584
|
-
|
|
24474
|
+
kol-input > .input {
|
|
24475
|
+
border-color: var(--kolibri-border-color);
|
|
24585
24476
|
border-radius: 0.25rem;
|
|
24586
|
-
|
|
24477
|
+
border-style: solid;
|
|
24478
|
+
border-width: 2px;
|
|
24587
24479
|
order: 2;
|
|
24588
24480
|
}
|
|
24589
|
-
kol-input >
|
|
24481
|
+
kol-input:hover > .input {
|
|
24482
|
+
border-color: var(--kolibri-color-secondary);
|
|
24483
|
+
}
|
|
24484
|
+
kol-input > .input > kol-icon:first-child {
|
|
24485
|
+
margin-left: 0.75em;
|
|
24486
|
+
}
|
|
24487
|
+
kol-input > .input > kol-icon:last-child {
|
|
24488
|
+
margin-right: 0.75em;
|
|
24489
|
+
}
|
|
24490
|
+
kol-input > .error {
|
|
24590
24491
|
order: 3;
|
|
24591
24492
|
}
|
|
24493
|
+
kol-input > .hint {
|
|
24494
|
+
order: 4;
|
|
24495
|
+
font-size: 0.875em;
|
|
24496
|
+
}
|
|
24592
24497
|
input,
|
|
24593
24498
|
select,
|
|
24594
24499
|
textarea {
|
|
24595
|
-
font-family: var(--font-family);
|
|
24596
|
-
background-color: transparent;
|
|
24597
|
-
box-sizing: border-box;
|
|
24598
|
-
font-size: 1rem;
|
|
24599
|
-
display: inline-flex;
|
|
24600
|
-
line-height: 1.5em;
|
|
24601
24500
|
color: var(--default-letter);
|
|
24602
|
-
border-color: var(--kolibri-border-color);
|
|
24603
|
-
border-width: 2px;
|
|
24604
|
-
border-style: solid;
|
|
24605
24501
|
padding: 0.5em 0.75em;
|
|
24606
|
-
border-radius: 0.25rem;
|
|
24607
|
-
overflow: hidden;
|
|
24608
|
-
width: 100%;
|
|
24609
24502
|
}
|
|
24610
24503
|
input:not([type="range"]),
|
|
24611
24504
|
select:not([multiple]) {
|
|
@@ -24619,27 +24512,11 @@ const MAPZ = components.KoliBri.createTheme("mapz", {
|
|
|
24619
24512
|
}
|
|
24620
24513
|
input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
|
|
24621
24514
|
cursor: not-allowed;
|
|
24622
|
-
background-color: var(--background-light-grey);
|
|
24623
|
-
}
|
|
24624
|
-
.required label > span::after {
|
|
24625
|
-
content: "*";
|
|
24626
|
-
padding-left: 0.125em;
|
|
24627
|
-
}
|
|
24628
|
-
.icon-left input,
|
|
24629
|
-
.icon-left select {
|
|
24630
|
-
padding-left: 2em;
|
|
24631
|
-
}
|
|
24632
|
-
.icon-right input,
|
|
24633
|
-
.icon-right select {
|
|
24634
|
-
padding-right: 2em;
|
|
24635
24515
|
}
|
|
24636
24516
|
select[multiple],
|
|
24637
24517
|
textarea {
|
|
24638
24518
|
overflow: auto;
|
|
24639
24519
|
}
|
|
24640
|
-
textarea {
|
|
24641
|
-
display: block;
|
|
24642
|
-
}
|
|
24643
24520
|
select option {
|
|
24644
24521
|
margin: 1px 0;
|
|
24645
24522
|
padding: 0.5em;
|
|
@@ -24656,53 +24533,54 @@ const MAPZ = components.KoliBri.createTheme("mapz", {
|
|
|
24656
24533
|
background-color: var(--kolibri-color-primary);
|
|
24657
24534
|
color: white;
|
|
24658
24535
|
}`,
|
|
24659
|
-
"KOL-INPUT-COLOR": `
|
|
24660
|
-
|
|
24661
|
-
|
|
24662
|
-
|
|
24536
|
+
"KOL-INPUT-COLOR": `input,
|
|
24537
|
+
select,
|
|
24538
|
+
textarea {
|
|
24539
|
+
border: none;
|
|
24663
24540
|
}
|
|
24664
|
-
input
|
|
24665
|
-
|
|
24666
|
-
|
|
24667
|
-
|
|
24668
|
-
|
|
24669
|
-
|
|
24670
|
-
|
|
24541
|
+
input[type="color"] {
|
|
24542
|
+
border: none;
|
|
24543
|
+
min-height: 40px !important;
|
|
24544
|
+
}
|
|
24545
|
+
input[type="color"],
|
|
24546
|
+
input[type="file"] {
|
|
24547
|
+
background-color: transparent;
|
|
24548
|
+
}
|
|
24549
|
+
kol-input {
|
|
24550
|
+
gap: var(--spacing);
|
|
24671
24551
|
}
|
|
24672
24552
|
kol-input > label {
|
|
24673
24553
|
order: 1;
|
|
24674
|
-
}
|
|
24675
|
-
kol-input > label > span {
|
|
24676
24554
|
color: var(--default-letter);
|
|
24677
|
-
font-size: 0.875rem;
|
|
24678
|
-
line-height: 1.5rem;
|
|
24679
24555
|
}
|
|
24680
|
-
kol-input >
|
|
24681
|
-
|
|
24556
|
+
kol-input > .input {
|
|
24557
|
+
border-color: var(--kolibri-border-color);
|
|
24682
24558
|
border-radius: 0.25rem;
|
|
24683
|
-
|
|
24559
|
+
border-style: solid;
|
|
24560
|
+
border-width: 2px;
|
|
24684
24561
|
order: 2;
|
|
24685
24562
|
}
|
|
24686
|
-
kol-input >
|
|
24563
|
+
kol-input:hover > .input {
|
|
24564
|
+
border-color: var(--kolibri-color-secondary);
|
|
24565
|
+
}
|
|
24566
|
+
kol-input > .input > kol-icon:first-child {
|
|
24567
|
+
margin-left: 0.75em;
|
|
24568
|
+
}
|
|
24569
|
+
kol-input > .input > kol-icon:last-child {
|
|
24570
|
+
margin-right: 0.75em;
|
|
24571
|
+
}
|
|
24572
|
+
kol-input > .error {
|
|
24687
24573
|
order: 3;
|
|
24688
24574
|
}
|
|
24575
|
+
kol-input > .hint {
|
|
24576
|
+
order: 4;
|
|
24577
|
+
font-size: 0.875em;
|
|
24578
|
+
}
|
|
24689
24579
|
input,
|
|
24690
24580
|
select,
|
|
24691
24581
|
textarea {
|
|
24692
|
-
font-family: var(--font-family);
|
|
24693
|
-
background-color: transparent;
|
|
24694
|
-
box-sizing: border-box;
|
|
24695
|
-
font-size: 1rem;
|
|
24696
|
-
display: inline-flex;
|
|
24697
|
-
line-height: 1.5em;
|
|
24698
24582
|
color: var(--default-letter);
|
|
24699
|
-
border-color: var(--kolibri-border-color);
|
|
24700
|
-
border-width: 2px;
|
|
24701
|
-
border-style: solid;
|
|
24702
24583
|
padding: 0.5em 0.75em;
|
|
24703
|
-
border-radius: 0.25rem;
|
|
24704
|
-
overflow: hidden;
|
|
24705
|
-
width: 100%;
|
|
24706
24584
|
}
|
|
24707
24585
|
input:not([type="range"]),
|
|
24708
24586
|
select:not([multiple]) {
|
|
@@ -24716,27 +24594,11 @@ const MAPZ = components.KoliBri.createTheme("mapz", {
|
|
|
24716
24594
|
}
|
|
24717
24595
|
input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
|
|
24718
24596
|
cursor: not-allowed;
|
|
24719
|
-
background-color: var(--background-light-grey);
|
|
24720
|
-
}
|
|
24721
|
-
.required label > span::after {
|
|
24722
|
-
content: "*";
|
|
24723
|
-
padding-left: 0.125em;
|
|
24724
|
-
}
|
|
24725
|
-
.icon-left input,
|
|
24726
|
-
.icon-left select {
|
|
24727
|
-
padding-left: 2em;
|
|
24728
|
-
}
|
|
24729
|
-
.icon-right input,
|
|
24730
|
-
.icon-right select {
|
|
24731
|
-
padding-right: 2em;
|
|
24732
24597
|
}
|
|
24733
24598
|
select[multiple],
|
|
24734
24599
|
textarea {
|
|
24735
24600
|
overflow: auto;
|
|
24736
24601
|
}
|
|
24737
|
-
textarea {
|
|
24738
|
-
display: block;
|
|
24739
|
-
}
|
|
24740
24602
|
select option {
|
|
24741
24603
|
margin: 1px 0;
|
|
24742
24604
|
padding: 0.5em;
|
|
@@ -25095,9 +24957,10 @@ const MAPZ = components.KoliBri.createTheme("mapz", {
|
|
|
25095
24957
|
z-index: 200;
|
|
25096
24958
|
}
|
|
25097
24959
|
:host > div > kol-alert {
|
|
24960
|
+
background-color: white;
|
|
24961
|
+
border-radius: var(--kolibri-border-radius);
|
|
25098
24962
|
display: block;
|
|
25099
|
-
margin: auto;
|
|
25100
|
-
padding: 1rem;
|
|
24963
|
+
margin: 1rem auto;
|
|
25101
24964
|
max-width: 750px;
|
|
25102
24965
|
}
|
|
25103
24966
|
:host > div > kol-button-wc {
|
|
@@ -32233,6 +32096,88 @@ const MAPZ = components.KoliBri.createTheme("mapz", {
|
|
|
32233
32096
|
u+f0ec, u+f10a-f10b, u+f123, u+f13e, u+f148-f149, u+f14c, u+f156, u+f15e,
|
|
32234
32097
|
u+f160-f161, u+f163, u+f175-f178, u+f195, u+f1f8, u+f219, u+f250, u+f252,
|
|
32235
32098
|
u+f27a;
|
|
32099
|
+
}`,
|
|
32100
|
+
"KOL-INPUT-RANGE": `input,
|
|
32101
|
+
select,
|
|
32102
|
+
textarea {
|
|
32103
|
+
border: none;
|
|
32104
|
+
}
|
|
32105
|
+
input[type="color"] {
|
|
32106
|
+
border: none;
|
|
32107
|
+
min-height: 40px !important;
|
|
32108
|
+
}
|
|
32109
|
+
input[type="color"],
|
|
32110
|
+
input[type="file"] {
|
|
32111
|
+
background-color: transparent;
|
|
32112
|
+
}
|
|
32113
|
+
kol-input {
|
|
32114
|
+
gap: var(--spacing);
|
|
32115
|
+
}
|
|
32116
|
+
kol-input > label {
|
|
32117
|
+
order: 1;
|
|
32118
|
+
color: var(--default-letter);
|
|
32119
|
+
}
|
|
32120
|
+
kol-input > .input {
|
|
32121
|
+
border-color: var(--kolibri-border-color);
|
|
32122
|
+
border-radius: 0.25rem;
|
|
32123
|
+
border-style: solid;
|
|
32124
|
+
border-width: 2px;
|
|
32125
|
+
order: 2;
|
|
32126
|
+
}
|
|
32127
|
+
kol-input:hover > .input {
|
|
32128
|
+
border-color: var(--kolibri-color-secondary);
|
|
32129
|
+
}
|
|
32130
|
+
kol-input > .input > kol-icon:first-child {
|
|
32131
|
+
margin-left: 0.75em;
|
|
32132
|
+
}
|
|
32133
|
+
kol-input > .input > kol-icon:last-child {
|
|
32134
|
+
margin-right: 0.75em;
|
|
32135
|
+
}
|
|
32136
|
+
kol-input > .error {
|
|
32137
|
+
order: 3;
|
|
32138
|
+
}
|
|
32139
|
+
kol-input > .hint {
|
|
32140
|
+
order: 4;
|
|
32141
|
+
font-size: 0.875em;
|
|
32142
|
+
}
|
|
32143
|
+
input,
|
|
32144
|
+
select,
|
|
32145
|
+
textarea {
|
|
32146
|
+
color: var(--default-letter);
|
|
32147
|
+
padding: 0.5em 0.75em;
|
|
32148
|
+
}
|
|
32149
|
+
input:not([type="range"]),
|
|
32150
|
+
select:not([multiple]) {
|
|
32151
|
+
height: 2.75em;
|
|
32152
|
+
}
|
|
32153
|
+
textarea {
|
|
32154
|
+
display: inherit;
|
|
32155
|
+
}
|
|
32156
|
+
input::placeholder {
|
|
32157
|
+
color: var(--default-border-hover);
|
|
32158
|
+
}
|
|
32159
|
+
input:not([type="color"]):read-only,input:disabled,/* select:read-only, */select:disabled,textarea:read-only,textarea:disabled {
|
|
32160
|
+
cursor: not-allowed;
|
|
32161
|
+
}
|
|
32162
|
+
select[multiple],
|
|
32163
|
+
textarea {
|
|
32164
|
+
overflow: auto;
|
|
32165
|
+
}
|
|
32166
|
+
select option {
|
|
32167
|
+
margin: 1px 0;
|
|
32168
|
+
padding: 0.5em;
|
|
32169
|
+
border-radius: 0.25em;
|
|
32170
|
+
cursor: pointer;
|
|
32171
|
+
}
|
|
32172
|
+
select option:disabled {
|
|
32173
|
+
cursor: not-allowed;
|
|
32174
|
+
}
|
|
32175
|
+
option:active:not(:disabled),
|
|
32176
|
+
option:checked:not(:disabled),
|
|
32177
|
+
option:focus:not(:disabled),
|
|
32178
|
+
option:hover:not(:disabled) {
|
|
32179
|
+
background-color: var(--kolibri-color-primary);
|
|
32180
|
+
color: white;
|
|
32236
32181
|
}`
|
|
32237
32182
|
});
|
|
32238
32183
|
|