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