@public-ui/themes 1.5.0 → 1.5.1
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/assets/bpa-icons/bpa-icons.eot +0 -0
- package/assets/bpa-icons/bpa-icons.json +28 -28
- package/assets/bpa-icons/bpa-icons.ttf +0 -0
- package/assets/bpa-icons/bpa-icons.woff +0 -0
- package/assets/bpa-icons/bpa-icons.woff2 +0 -0
- package/assets/bpa-icons/style.css +6 -6
- package/assets/bpa-icons/style.less +6 -6
- package/assets/bpa-icons/style.module.less +6 -6
- package/assets/bpa-icons/style.scss +6 -6
- package/assets/bpa-icons/style.styl +6 -6
- package/dist/index.cjs +360 -363
- package/dist/index.mjs +360 -363
- package/package.json +5 -5
package/dist/index.cjs
CHANGED
|
@@ -4499,28 +4499,34 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4499
4499
|
--color-ocean: #0077b6;
|
|
4500
4500
|
--color-sky: #99c9e2;
|
|
4501
4501
|
--color-ice: #cce4f0;
|
|
4502
|
+
--color-crystal: #f0f7fb;
|
|
4502
4503
|
--color-crimson: #780f2d;
|
|
4503
4504
|
--color-red: #c0003c;
|
|
4504
4505
|
--color-pink: #f2ccd8;
|
|
4506
|
+
--color-blossom: #fbf0f3;
|
|
4505
4507
|
--color-olive: #004d38;
|
|
4506
4508
|
--color-green: #005c45;
|
|
4507
4509
|
--color-jungle: #00854a;
|
|
4508
4510
|
--color-lime: #c1ca31;
|
|
4509
4511
|
--color-mint: #ccdeda;
|
|
4512
|
+
--color-haze: #f0f5f4;
|
|
4510
4513
|
--color-fire: #7a2e1f;
|
|
4511
4514
|
--color-orange: #c44931;
|
|
4512
4515
|
--color-coral: #f5dcd7;
|
|
4513
|
-
--color-
|
|
4514
|
-
--color-
|
|
4515
|
-
--color-
|
|
4516
|
-
--color-
|
|
4517
|
-
--color-
|
|
4516
|
+
--color-peach: #fdf6f5;
|
|
4517
|
+
--color-bronze: #6a4a06;
|
|
4518
|
+
--color-yellow: #f9e03a;
|
|
4519
|
+
--color-ivory: #fdf3b0;
|
|
4520
|
+
--color-wine: #3f1d4a;
|
|
4521
|
+
--color-purple: #6b4479;
|
|
4522
|
+
--color-lavender: #dfd6de;
|
|
4518
4523
|
--color-black: #202020;
|
|
4519
4524
|
--color-metal: #454d4f;
|
|
4520
4525
|
--color-grey: #576164;
|
|
4521
4526
|
--color-granite: #bec5c9;
|
|
4522
4527
|
--color-silver: #e5e8e9;
|
|
4523
4528
|
--color-smoke: #f2f3f4;
|
|
4529
|
+
--color-cloud: #f6f7f7;
|
|
4524
4530
|
--color-white: #ffffff;
|
|
4525
4531
|
--font-family: BundesSans Web, Calibri, Verdana, Arial, Helvetica, sans-serif;
|
|
4526
4532
|
--font-size: 16px;
|
|
@@ -4693,7 +4699,7 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4693
4699
|
border-color: transparent;
|
|
4694
4700
|
}`,
|
|
4695
4701
|
"KOL-INPUT-TEXT": `kol-input {
|
|
4696
|
-
gap: 0.
|
|
4702
|
+
gap: 0.25em;
|
|
4697
4703
|
}
|
|
4698
4704
|
kol-input .error {
|
|
4699
4705
|
order: 1;
|
|
@@ -4709,31 +4715,30 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4709
4715
|
font-size: 0.875em;
|
|
4710
4716
|
font-style: italic;
|
|
4711
4717
|
}
|
|
4712
|
-
input
|
|
4713
|
-
select,
|
|
4714
|
-
textarea {
|
|
4715
|
-
border: none;
|
|
4716
|
-
}
|
|
4717
|
-
input[type="color"] {
|
|
4718
|
+
input {
|
|
4718
4719
|
border: none;
|
|
4719
|
-
min-height: 40px !important;
|
|
4720
|
-
}
|
|
4721
|
-
input[type="color"],
|
|
4722
|
-
input[type="file"] {
|
|
4723
|
-
background-color: transparent;
|
|
4724
4720
|
}
|
|
4725
4721
|
input::placeholder {
|
|
4726
4722
|
color: var(--color-grey);
|
|
4727
4723
|
}
|
|
4728
4724
|
.input {
|
|
4725
|
+
background-color: var(--color-white);
|
|
4729
4726
|
border-color: var(--color-grey);
|
|
4730
|
-
border-radius:
|
|
4727
|
+
border-radius: var(--border-radius);
|
|
4731
4728
|
border-style: solid;
|
|
4732
4729
|
border-width: 2px;
|
|
4733
4730
|
padding: 0 0.5em;
|
|
4734
4731
|
}
|
|
4735
4732
|
.input > kol-icon {
|
|
4736
|
-
width:
|
|
4733
|
+
width: 1em;
|
|
4734
|
+
}
|
|
4735
|
+
.input:is(.icon-left, .icon-right) {
|
|
4736
|
+
padding-left: 1em;
|
|
4737
|
+
padding-right: 1em;
|
|
4738
|
+
}
|
|
4739
|
+
.input:is(.icon-left, .icon-right) input {
|
|
4740
|
+
padding-left: 0.5em;
|
|
4741
|
+
padding-right: 0.5em;
|
|
4737
4742
|
}
|
|
4738
4743
|
.input > input:first-child {
|
|
4739
4744
|
padding-left: 0.375em;
|
|
@@ -4744,7 +4749,8 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4744
4749
|
.input:hover {
|
|
4745
4750
|
border-color: var(--color-midnight);
|
|
4746
4751
|
}
|
|
4747
|
-
input:
|
|
4752
|
+
input:read-only,
|
|
4753
|
+
input:disabled {
|
|
4748
4754
|
cursor: not-allowed;
|
|
4749
4755
|
}
|
|
4750
4756
|
.required label > span::after {
|
|
@@ -4762,34 +4768,15 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4762
4768
|
color: var(--color-red);
|
|
4763
4769
|
font-weight: 700;
|
|
4764
4770
|
}
|
|
4765
|
-
.disabled {
|
|
4766
|
-
opacity:
|
|
4771
|
+
kol-input.disabled :is(input, label) {
|
|
4772
|
+
opacity: 1;
|
|
4767
4773
|
}
|
|
4768
|
-
|
|
4769
|
-
|
|
4770
|
-
|
|
4771
|
-
}
|
|
4772
|
-
textarea {
|
|
4773
|
-
display: block;
|
|
4774
|
-
}
|
|
4775
|
-
select option {
|
|
4776
|
-
margin: 1px 0;
|
|
4777
|
-
padding: 0.5em;
|
|
4778
|
-
border-radius: 0.25em;
|
|
4779
|
-
cursor: pointer;
|
|
4780
|
-
}
|
|
4781
|
-
select option:disabled {
|
|
4782
|
-
cursor: not-allowed;
|
|
4783
|
-
}
|
|
4784
|
-
option:active:not(:disabled),
|
|
4785
|
-
option:checked:not(:disabled),
|
|
4786
|
-
option:focus:not(:disabled),
|
|
4787
|
-
option:hover:not(:disabled) {
|
|
4788
|
-
background: var(--color-ocean);
|
|
4789
|
-
color: white;
|
|
4774
|
+
kol-input.disabled :is(input, .input) {
|
|
4775
|
+
background-color: var(--color-smoke);
|
|
4776
|
+
border-color: var(--color-granite);
|
|
4790
4777
|
}`,
|
|
4791
4778
|
"KOL-INPUT-PASSWORD": `kol-input {
|
|
4792
|
-
gap: 0.
|
|
4779
|
+
gap: 0.25em;
|
|
4793
4780
|
}
|
|
4794
4781
|
kol-input .error {
|
|
4795
4782
|
order: 1;
|
|
@@ -4805,31 +4792,30 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4805
4792
|
font-size: 0.875em;
|
|
4806
4793
|
font-style: italic;
|
|
4807
4794
|
}
|
|
4808
|
-
input
|
|
4809
|
-
select,
|
|
4810
|
-
textarea {
|
|
4811
|
-
border: none;
|
|
4812
|
-
}
|
|
4813
|
-
input[type="color"] {
|
|
4795
|
+
input {
|
|
4814
4796
|
border: none;
|
|
4815
|
-
min-height: 40px !important;
|
|
4816
|
-
}
|
|
4817
|
-
input[type="color"],
|
|
4818
|
-
input[type="file"] {
|
|
4819
|
-
background-color: transparent;
|
|
4820
4797
|
}
|
|
4821
4798
|
input::placeholder {
|
|
4822
4799
|
color: var(--color-grey);
|
|
4823
4800
|
}
|
|
4824
4801
|
.input {
|
|
4802
|
+
background-color: var(--color-white);
|
|
4825
4803
|
border-color: var(--color-grey);
|
|
4826
|
-
border-radius:
|
|
4804
|
+
border-radius: var(--border-radius);
|
|
4827
4805
|
border-style: solid;
|
|
4828
4806
|
border-width: 2px;
|
|
4829
4807
|
padding: 0 0.5em;
|
|
4830
4808
|
}
|
|
4831
4809
|
.input > kol-icon {
|
|
4832
|
-
width:
|
|
4810
|
+
width: 1em;
|
|
4811
|
+
}
|
|
4812
|
+
.input:is(.icon-left, .icon-right) {
|
|
4813
|
+
padding-left: 1em;
|
|
4814
|
+
padding-right: 1em;
|
|
4815
|
+
}
|
|
4816
|
+
.input:is(.icon-left, .icon-right) input {
|
|
4817
|
+
padding-left: 0.5em;
|
|
4818
|
+
padding-right: 0.5em;
|
|
4833
4819
|
}
|
|
4834
4820
|
.input > input:first-child {
|
|
4835
4821
|
padding-left: 0.375em;
|
|
@@ -4840,7 +4826,8 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4840
4826
|
.input:hover {
|
|
4841
4827
|
border-color: var(--color-midnight);
|
|
4842
4828
|
}
|
|
4843
|
-
input:
|
|
4829
|
+
input:read-only,
|
|
4830
|
+
input:disabled {
|
|
4844
4831
|
cursor: not-allowed;
|
|
4845
4832
|
}
|
|
4846
4833
|
.required label > span::after {
|
|
@@ -4858,34 +4845,16 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4858
4845
|
color: var(--color-red);
|
|
4859
4846
|
font-weight: 700;
|
|
4860
4847
|
}
|
|
4861
|
-
.disabled {
|
|
4862
|
-
opacity:
|
|
4863
|
-
}
|
|
4864
|
-
select[multiple],
|
|
4865
|
-
textarea {
|
|
4866
|
-
overflow: auto;
|
|
4867
|
-
}
|
|
4868
|
-
textarea {
|
|
4869
|
-
display: block;
|
|
4870
|
-
}
|
|
4871
|
-
select option {
|
|
4872
|
-
margin: 1px 0;
|
|
4873
|
-
padding: 0.5em;
|
|
4874
|
-
border-radius: 0.25em;
|
|
4875
|
-
cursor: pointer;
|
|
4876
|
-
}
|
|
4877
|
-
select option:disabled {
|
|
4878
|
-
cursor: not-allowed;
|
|
4848
|
+
kol-input.disabled :is(button, input, label, option, select, textarea) {
|
|
4849
|
+
opacity: 1;
|
|
4879
4850
|
}
|
|
4880
|
-
|
|
4881
|
-
|
|
4882
|
-
|
|
4883
|
-
|
|
4884
|
-
background: var(--color-ocean);
|
|
4885
|
-
color: white;
|
|
4851
|
+
kol-input.disabled :is(input, select, textarea, .input) {
|
|
4852
|
+
background-color: var(--color-smoke);
|
|
4853
|
+
border-color: var(--color-granite);
|
|
4854
|
+
color: var(--color-black);
|
|
4886
4855
|
}`,
|
|
4887
4856
|
"KOL-INPUT-NUMBER": `kol-input {
|
|
4888
|
-
gap: 0.
|
|
4857
|
+
gap: 0.25em;
|
|
4889
4858
|
}
|
|
4890
4859
|
kol-input .error {
|
|
4891
4860
|
order: 1;
|
|
@@ -4901,31 +4870,30 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4901
4870
|
font-size: 0.875em;
|
|
4902
4871
|
font-style: italic;
|
|
4903
4872
|
}
|
|
4904
|
-
input
|
|
4905
|
-
select,
|
|
4906
|
-
textarea {
|
|
4907
|
-
border: none;
|
|
4908
|
-
}
|
|
4909
|
-
input[type="color"] {
|
|
4873
|
+
input {
|
|
4910
4874
|
border: none;
|
|
4911
|
-
min-height: 40px !important;
|
|
4912
|
-
}
|
|
4913
|
-
input[type="color"],
|
|
4914
|
-
input[type="file"] {
|
|
4915
|
-
background-color: transparent;
|
|
4916
4875
|
}
|
|
4917
4876
|
input::placeholder {
|
|
4918
4877
|
color: var(--color-grey);
|
|
4919
4878
|
}
|
|
4920
4879
|
.input {
|
|
4880
|
+
background-color: var(--color-white);
|
|
4921
4881
|
border-color: var(--color-grey);
|
|
4922
|
-
border-radius:
|
|
4882
|
+
border-radius: var(--border-radius);
|
|
4923
4883
|
border-style: solid;
|
|
4924
4884
|
border-width: 2px;
|
|
4925
4885
|
padding: 0 0.5em;
|
|
4926
4886
|
}
|
|
4927
4887
|
.input > kol-icon {
|
|
4928
|
-
width:
|
|
4888
|
+
width: 1em;
|
|
4889
|
+
}
|
|
4890
|
+
.input:is(.icon-left, .icon-right) {
|
|
4891
|
+
padding-left: 1em;
|
|
4892
|
+
padding-right: 1em;
|
|
4893
|
+
}
|
|
4894
|
+
.input:is(.icon-left, .icon-right) input {
|
|
4895
|
+
padding-left: 0.5em;
|
|
4896
|
+
padding-right: 0.5em;
|
|
4929
4897
|
}
|
|
4930
4898
|
.input > input:first-child {
|
|
4931
4899
|
padding-left: 0.375em;
|
|
@@ -4936,7 +4904,7 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4936
4904
|
.input:hover {
|
|
4937
4905
|
border-color: var(--color-midnight);
|
|
4938
4906
|
}
|
|
4939
|
-
input:
|
|
4907
|
+
input:disabled {
|
|
4940
4908
|
cursor: not-allowed;
|
|
4941
4909
|
}
|
|
4942
4910
|
.required label > span::after {
|
|
@@ -4954,34 +4922,16 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4954
4922
|
color: var(--color-red);
|
|
4955
4923
|
font-weight: 700;
|
|
4956
4924
|
}
|
|
4957
|
-
.disabled {
|
|
4958
|
-
opacity:
|
|
4959
|
-
}
|
|
4960
|
-
select[multiple],
|
|
4961
|
-
textarea {
|
|
4962
|
-
overflow: auto;
|
|
4963
|
-
}
|
|
4964
|
-
textarea {
|
|
4965
|
-
display: block;
|
|
4966
|
-
}
|
|
4967
|
-
select option {
|
|
4968
|
-
margin: 1px 0;
|
|
4969
|
-
padding: 0.5em;
|
|
4970
|
-
border-radius: 0.25em;
|
|
4971
|
-
cursor: pointer;
|
|
4972
|
-
}
|
|
4973
|
-
select option:disabled {
|
|
4974
|
-
cursor: not-allowed;
|
|
4925
|
+
kol-input.disabled :is(input, label) {
|
|
4926
|
+
opacity: 1;
|
|
4975
4927
|
}
|
|
4976
|
-
|
|
4977
|
-
|
|
4978
|
-
|
|
4979
|
-
|
|
4980
|
-
background: var(--color-ocean);
|
|
4981
|
-
color: white;
|
|
4928
|
+
kol-input.disabled :is(input, .input) {
|
|
4929
|
+
background-color: var(--color-smoke);
|
|
4930
|
+
border-color: var(--color-granite);
|
|
4931
|
+
color: var(--color-black);
|
|
4982
4932
|
}`,
|
|
4983
4933
|
"KOL-INPUT-EMAIL": `kol-input {
|
|
4984
|
-
gap: 0.
|
|
4934
|
+
gap: 0.25em;
|
|
4985
4935
|
}
|
|
4986
4936
|
kol-input .error {
|
|
4987
4937
|
order: 1;
|
|
@@ -4997,31 +4947,30 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4997
4947
|
font-size: 0.875em;
|
|
4998
4948
|
font-style: italic;
|
|
4999
4949
|
}
|
|
5000
|
-
input
|
|
5001
|
-
select,
|
|
5002
|
-
textarea {
|
|
5003
|
-
border: none;
|
|
5004
|
-
}
|
|
5005
|
-
input[type="color"] {
|
|
4950
|
+
input {
|
|
5006
4951
|
border: none;
|
|
5007
|
-
min-height: 40px !important;
|
|
5008
|
-
}
|
|
5009
|
-
input[type="color"],
|
|
5010
|
-
input[type="file"] {
|
|
5011
|
-
background-color: transparent;
|
|
5012
4952
|
}
|
|
5013
4953
|
input::placeholder {
|
|
5014
4954
|
color: var(--color-grey);
|
|
5015
4955
|
}
|
|
5016
4956
|
.input {
|
|
4957
|
+
background-color: var(--color-white);
|
|
5017
4958
|
border-color: var(--color-grey);
|
|
5018
|
-
border-radius:
|
|
4959
|
+
border-radius: var(--border-radius);
|
|
5019
4960
|
border-style: solid;
|
|
5020
4961
|
border-width: 2px;
|
|
5021
4962
|
padding: 0 0.5em;
|
|
5022
4963
|
}
|
|
5023
4964
|
.input > kol-icon {
|
|
5024
|
-
width:
|
|
4965
|
+
width: 1em;
|
|
4966
|
+
}
|
|
4967
|
+
.input:is(.icon-left, .icon-right) {
|
|
4968
|
+
padding-left: 1em;
|
|
4969
|
+
padding-right: 1em;
|
|
4970
|
+
}
|
|
4971
|
+
.input:is(.icon-left, .icon-right) input {
|
|
4972
|
+
padding-left: 0.5em;
|
|
4973
|
+
padding-right: 0.5em;
|
|
5025
4974
|
}
|
|
5026
4975
|
.input > input:first-child {
|
|
5027
4976
|
padding-left: 0.375em;
|
|
@@ -5032,7 +4981,8 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5032
4981
|
.input:hover {
|
|
5033
4982
|
border-color: var(--color-midnight);
|
|
5034
4983
|
}
|
|
5035
|
-
input:
|
|
4984
|
+
input:read-only,
|
|
4985
|
+
input:disabled {
|
|
5036
4986
|
cursor: not-allowed;
|
|
5037
4987
|
}
|
|
5038
4988
|
.required label > span::after {
|
|
@@ -5050,34 +5000,16 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5050
5000
|
color: var(--color-red);
|
|
5051
5001
|
font-weight: 700;
|
|
5052
5002
|
}
|
|
5053
|
-
.disabled {
|
|
5054
|
-
opacity:
|
|
5055
|
-
}
|
|
5056
|
-
select[multiple],
|
|
5057
|
-
textarea {
|
|
5058
|
-
overflow: auto;
|
|
5003
|
+
kol-input.disabled :is(input, label) {
|
|
5004
|
+
opacity: 1;
|
|
5059
5005
|
}
|
|
5060
|
-
|
|
5061
|
-
|
|
5062
|
-
|
|
5063
|
-
|
|
5064
|
-
margin: 1px 0;
|
|
5065
|
-
padding: 0.5em;
|
|
5066
|
-
border-radius: 0.25em;
|
|
5067
|
-
cursor: pointer;
|
|
5068
|
-
}
|
|
5069
|
-
select option:disabled {
|
|
5070
|
-
cursor: not-allowed;
|
|
5071
|
-
}
|
|
5072
|
-
option:active:not(:disabled),
|
|
5073
|
-
option:checked:not(:disabled),
|
|
5074
|
-
option:focus:not(:disabled),
|
|
5075
|
-
option:hover:not(:disabled) {
|
|
5076
|
-
background: var(--color-ocean);
|
|
5077
|
-
color: white;
|
|
5006
|
+
kol-input.disabled :is(input, .input) {
|
|
5007
|
+
background-color: var(--color-smoke);
|
|
5008
|
+
border-color: var(--color-granite);
|
|
5009
|
+
color: var(--color-black);
|
|
5078
5010
|
}`,
|
|
5079
5011
|
"KOL-INPUT-FILE": `kol-input {
|
|
5080
|
-
gap: 0.
|
|
5012
|
+
gap: 0.25em;
|
|
5081
5013
|
}
|
|
5082
5014
|
kol-input .error {
|
|
5083
5015
|
order: 1;
|
|
@@ -5096,16 +5028,9 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5096
5028
|
kol-input .input input[type="file"] {
|
|
5097
5029
|
padding-top: calc(0.5em + 2px);
|
|
5098
5030
|
}
|
|
5099
|
-
input
|
|
5100
|
-
select,
|
|
5101
|
-
textarea {
|
|
5102
|
-
border: none;
|
|
5103
|
-
}
|
|
5104
|
-
input[type="color"] {
|
|
5031
|
+
input {
|
|
5105
5032
|
border: none;
|
|
5106
|
-
min-height: 40px !important;
|
|
5107
5033
|
}
|
|
5108
|
-
input[type="color"],
|
|
5109
5034
|
input[type="file"] {
|
|
5110
5035
|
background-color: transparent;
|
|
5111
5036
|
}
|
|
@@ -5113,14 +5038,23 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5113
5038
|
color: var(--color-grey);
|
|
5114
5039
|
}
|
|
5115
5040
|
.input {
|
|
5041
|
+
background-color: var(--color-white);
|
|
5116
5042
|
border-color: var(--color-grey);
|
|
5117
|
-
border-radius:
|
|
5043
|
+
border-radius: var(--border-radius);
|
|
5118
5044
|
border-style: solid;
|
|
5119
5045
|
border-width: 2px;
|
|
5120
5046
|
padding: 0 0.5em;
|
|
5121
5047
|
}
|
|
5122
5048
|
.input > kol-icon {
|
|
5123
|
-
width:
|
|
5049
|
+
width: 1em;
|
|
5050
|
+
}
|
|
5051
|
+
.input:is(.icon-left, .icon-right) {
|
|
5052
|
+
padding-left: 1em;
|
|
5053
|
+
padding-right: 1em;
|
|
5054
|
+
}
|
|
5055
|
+
.input:is(.icon-left, .icon-right) input {
|
|
5056
|
+
padding-left: 0.5em;
|
|
5057
|
+
padding-right: 0.5em;
|
|
5124
5058
|
}
|
|
5125
5059
|
.input > input:first-child {
|
|
5126
5060
|
padding-left: 0.375em;
|
|
@@ -5131,7 +5065,8 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5131
5065
|
.input:hover {
|
|
5132
5066
|
border-color: var(--color-midnight);
|
|
5133
5067
|
}
|
|
5134
|
-
input:
|
|
5068
|
+
input:read-only,
|
|
5069
|
+
input:disabled {
|
|
5135
5070
|
cursor: not-allowed;
|
|
5136
5071
|
}
|
|
5137
5072
|
.required label > span::after {
|
|
@@ -5149,34 +5084,16 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5149
5084
|
color: var(--color-red);
|
|
5150
5085
|
font-weight: 700;
|
|
5151
5086
|
}
|
|
5152
|
-
.disabled {
|
|
5153
|
-
opacity:
|
|
5154
|
-
}
|
|
5155
|
-
select[multiple],
|
|
5156
|
-
textarea {
|
|
5157
|
-
overflow: auto;
|
|
5087
|
+
kol-input.disabled :is(button, input, label, option, select, textarea) {
|
|
5088
|
+
opacity: 1;
|
|
5158
5089
|
}
|
|
5159
|
-
textarea {
|
|
5160
|
-
|
|
5161
|
-
|
|
5162
|
-
|
|
5163
|
-
margin: 1px 0;
|
|
5164
|
-
padding: 0.5em;
|
|
5165
|
-
border-radius: 0.25em;
|
|
5166
|
-
cursor: pointer;
|
|
5167
|
-
}
|
|
5168
|
-
select option:disabled {
|
|
5169
|
-
cursor: not-allowed;
|
|
5170
|
-
}
|
|
5171
|
-
option:active:not(:disabled),
|
|
5172
|
-
option:checked:not(:disabled),
|
|
5173
|
-
option:focus:not(:disabled),
|
|
5174
|
-
option:hover:not(:disabled) {
|
|
5175
|
-
background: var(--color-ocean);
|
|
5176
|
-
color: white;
|
|
5090
|
+
kol-input.disabled :is(input, select, textarea, .input) {
|
|
5091
|
+
background-color: var(--color-smoke);
|
|
5092
|
+
border-color: var(--color-granite);
|
|
5093
|
+
color: var(--color-black);
|
|
5177
5094
|
}`,
|
|
5178
5095
|
"KOL-TEXTAREA": `kol-input {
|
|
5179
|
-
gap: 0.
|
|
5096
|
+
gap: 0.25em;
|
|
5180
5097
|
}
|
|
5181
5098
|
kol-input .error {
|
|
5182
5099
|
order: 1;
|
|
@@ -5192,31 +5109,30 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5192
5109
|
font-size: 0.875em;
|
|
5193
5110
|
font-style: italic;
|
|
5194
5111
|
}
|
|
5195
|
-
input,
|
|
5196
|
-
select,
|
|
5197
5112
|
textarea {
|
|
5198
5113
|
border: none;
|
|
5199
5114
|
}
|
|
5200
|
-
input[type="color"] {
|
|
5201
|
-
border: none;
|
|
5202
|
-
min-height: 40px !important;
|
|
5203
|
-
}
|
|
5204
|
-
input[type="color"],
|
|
5205
|
-
input[type="file"] {
|
|
5206
|
-
background-color: transparent;
|
|
5207
|
-
}
|
|
5208
5115
|
input::placeholder {
|
|
5209
5116
|
color: var(--color-grey);
|
|
5210
5117
|
}
|
|
5211
5118
|
.input {
|
|
5119
|
+
background-color: var(--color-white);
|
|
5212
5120
|
border-color: var(--color-grey);
|
|
5213
|
-
border-radius:
|
|
5121
|
+
border-radius: var(--border-radius);
|
|
5214
5122
|
border-style: solid;
|
|
5215
5123
|
border-width: 2px;
|
|
5216
5124
|
padding: 0 0.5em;
|
|
5217
5125
|
}
|
|
5218
5126
|
.input > kol-icon {
|
|
5219
|
-
width:
|
|
5127
|
+
width: 1em;
|
|
5128
|
+
}
|
|
5129
|
+
.input:is(.icon-left, .icon-right) {
|
|
5130
|
+
padding-left: 1em;
|
|
5131
|
+
padding-right: 1em;
|
|
5132
|
+
}
|
|
5133
|
+
.input:is(.icon-left, .icon-right) input {
|
|
5134
|
+
padding-left: 0.5em;
|
|
5135
|
+
padding-right: 0.5em;
|
|
5220
5136
|
}
|
|
5221
5137
|
.input > input:first-child {
|
|
5222
5138
|
padding-left: 0.375em;
|
|
@@ -5227,7 +5143,8 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5227
5143
|
.input:hover {
|
|
5228
5144
|
border-color: var(--color-midnight);
|
|
5229
5145
|
}
|
|
5230
|
-
|
|
5146
|
+
textarea:read-only,
|
|
5147
|
+
textarea:disabled {
|
|
5231
5148
|
cursor: not-allowed;
|
|
5232
5149
|
}
|
|
5233
5150
|
.required label > span::after {
|
|
@@ -5255,21 +5172,14 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5255
5172
|
textarea {
|
|
5256
5173
|
display: block;
|
|
5257
5174
|
}
|
|
5258
|
-
|
|
5259
|
-
|
|
5260
|
-
padding: 0.5em;
|
|
5261
|
-
border-radius: 0.25em;
|
|
5262
|
-
cursor: pointer;
|
|
5263
|
-
}
|
|
5264
|
-
select option:disabled {
|
|
5265
|
-
cursor: not-allowed;
|
|
5175
|
+
.input {
|
|
5176
|
+
position: relative;
|
|
5266
5177
|
}
|
|
5267
|
-
|
|
5268
|
-
|
|
5269
|
-
|
|
5270
|
-
|
|
5271
|
-
|
|
5272
|
-
color: white;
|
|
5178
|
+
.input textarea ~ span {
|
|
5179
|
+
position: absolute;
|
|
5180
|
+
top: -1.5rem;
|
|
5181
|
+
right: 0;
|
|
5182
|
+
color: var(--color-grey);
|
|
5273
5183
|
}`,
|
|
5274
5184
|
"KOL-ALERT": `.msg,
|
|
5275
5185
|
.msg {
|
|
@@ -5350,6 +5260,10 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5350
5260
|
.msg > .heading > .heading-icon::part(icon) {
|
|
5351
5261
|
line-height: 1.375rem;
|
|
5352
5262
|
}
|
|
5263
|
+
.msg > .heading > div > kol-heading-wc {
|
|
5264
|
+
line-height: 20px;
|
|
5265
|
+
padding-top: 0.125rem;
|
|
5266
|
+
}
|
|
5353
5267
|
.msg.default .heading > div > kol-heading-wc {
|
|
5354
5268
|
color: var(--color-grey);
|
|
5355
5269
|
}
|
|
@@ -5389,18 +5303,25 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5389
5303
|
.card > .heading {
|
|
5390
5304
|
padding: 0.5rem 1rem;
|
|
5391
5305
|
}
|
|
5306
|
+
.card[_has-closer] > .heading {
|
|
5307
|
+
padding-top: 0;
|
|
5308
|
+
padding-bottom: 0;
|
|
5309
|
+
padding-right: 0;
|
|
5310
|
+
}
|
|
5392
5311
|
.card > .heading > div {
|
|
5393
5312
|
width: 100%;
|
|
5313
|
+
min-height: 1.25rem;
|
|
5394
5314
|
}
|
|
5395
5315
|
.card > .heading .heading-icon {
|
|
5396
5316
|
justify-self: right;
|
|
5317
|
+
margin-top: -4px;
|
|
5397
5318
|
}
|
|
5398
5319
|
.card > .heading kol-heading-wc {
|
|
5399
5320
|
width: 100%;
|
|
5400
5321
|
color: white;
|
|
5401
5322
|
display: flex;
|
|
5402
5323
|
font-size: 1.25rem;
|
|
5403
|
-
line-height: 1.
|
|
5324
|
+
line-height: 1.25rem;
|
|
5404
5325
|
}
|
|
5405
5326
|
.card > .heading kol-heading-wc > * {
|
|
5406
5327
|
margin: auto 0;
|
|
@@ -5426,6 +5347,11 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5426
5347
|
:is(.error, .info, .success, .warning) .heading-icon::part(icon) {
|
|
5427
5348
|
font-family: "Font Awesome 6 Free" !important;
|
|
5428
5349
|
font-weight: 900;
|
|
5350
|
+
height: 1.25rem;
|
|
5351
|
+
width: 1.25rem;
|
|
5352
|
+
}
|
|
5353
|
+
:is(.error, .info, .success, .warning) .heading-icon {
|
|
5354
|
+
font-size: 1.25rem !important;
|
|
5429
5355
|
}
|
|
5430
5356
|
.error .heading-icon::part(icon)::before {
|
|
5431
5357
|
content: "\\f06a";
|
|
@@ -5486,10 +5412,18 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5486
5412
|
.close > button.icon-only {
|
|
5487
5413
|
padding: 8px;
|
|
5488
5414
|
}
|
|
5489
|
-
.close > button.icon-only kol-icon {
|
|
5490
|
-
display:
|
|
5491
|
-
width:
|
|
5492
|
-
height:
|
|
5415
|
+
.close > button.icon-only kol-icon {
|
|
5416
|
+
display: flex;
|
|
5417
|
+
width: 1em;
|
|
5418
|
+
height: 1em;
|
|
5419
|
+
font-size: 1rem;
|
|
5420
|
+
}
|
|
5421
|
+
.close > button.icon-only kol-icon::part(icon) {
|
|
5422
|
+
font-family: "Font Awesome 6 Free";
|
|
5423
|
+
font-weight: 900;
|
|
5424
|
+
}
|
|
5425
|
+
.close > button.icon-only kol-icon::part(icon)::before {
|
|
5426
|
+
content: "\\f00d";
|
|
5493
5427
|
}
|
|
5494
5428
|
.close > button:active {
|
|
5495
5429
|
box-shadow: none;
|
|
@@ -5513,7 +5447,7 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5513
5447
|
}
|
|
5514
5448
|
h1 {
|
|
5515
5449
|
font-size: 1.5rem;
|
|
5516
|
-
line-height:
|
|
5450
|
+
line-height: 1.75rem;
|
|
5517
5451
|
}
|
|
5518
5452
|
h2 {
|
|
5519
5453
|
font-size: 1.25rem;
|
|
@@ -5529,10 +5463,9 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5529
5463
|
:host > span {
|
|
5530
5464
|
border-radius: 0.3125rem;
|
|
5531
5465
|
display: inline-flex;
|
|
5532
|
-
font-size:
|
|
5466
|
+
font-size: 1em;
|
|
5533
5467
|
font-style: normal;
|
|
5534
|
-
|
|
5535
|
-
line-height: 1rem;
|
|
5468
|
+
line-height: 1.25rem;
|
|
5536
5469
|
}
|
|
5537
5470
|
:host > span.smart-button {
|
|
5538
5471
|
align-items: center;
|
|
@@ -5549,7 +5482,7 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5549
5482
|
padding: 2px;
|
|
5550
5483
|
}
|
|
5551
5484
|
:host > span kol-span-wc {
|
|
5552
|
-
padding: 0.25rem 0.
|
|
5485
|
+
padding: 0.25rem 0.75rem;
|
|
5553
5486
|
}
|
|
5554
5487
|
:host > span > kol-span-wc {
|
|
5555
5488
|
align-items: center;
|
|
@@ -5568,8 +5501,8 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5568
5501
|
"KOL-INDENTED-TEXT": `:host > div {
|
|
5569
5502
|
background-color: var(--color-white);
|
|
5570
5503
|
border-left: none;
|
|
5571
|
-
box-shadow: -
|
|
5572
|
-
padding: 0
|
|
5504
|
+
box-shadow: -2px 0px 0px var(--color-ocean);
|
|
5505
|
+
padding: 0 0.5em;
|
|
5573
5506
|
width: 100%;
|
|
5574
5507
|
}`,
|
|
5575
5508
|
"KOL-LINK": `:is(a, button) {
|
|
@@ -5694,7 +5627,7 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5694
5627
|
stroke: var(--color-midnight);
|
|
5695
5628
|
}`,
|
|
5696
5629
|
"KOL-SELECT": `kol-input {
|
|
5697
|
-
gap: 0.
|
|
5630
|
+
gap: 0.25em;
|
|
5698
5631
|
}
|
|
5699
5632
|
kol-input .error {
|
|
5700
5633
|
order: 1;
|
|
@@ -5710,31 +5643,32 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5710
5643
|
font-size: 0.875em;
|
|
5711
5644
|
font-style: italic;
|
|
5712
5645
|
}
|
|
5713
|
-
|
|
5714
|
-
select,
|
|
5715
|
-
textarea {
|
|
5716
|
-
border: none;
|
|
5717
|
-
}
|
|
5718
|
-
input[type="color"] {
|
|
5646
|
+
select {
|
|
5719
5647
|
border: none;
|
|
5720
|
-
min-height: 40px !important;
|
|
5721
|
-
}
|
|
5722
|
-
input[type="color"],
|
|
5723
|
-
input[type="file"] {
|
|
5724
|
-
background-color: transparent;
|
|
5725
5648
|
}
|
|
5726
5649
|
input::placeholder {
|
|
5727
5650
|
color: var(--color-grey);
|
|
5728
5651
|
}
|
|
5729
5652
|
.input {
|
|
5653
|
+
background-color: var(--color-white);
|
|
5730
5654
|
border-color: var(--color-grey);
|
|
5731
|
-
border-radius:
|
|
5655
|
+
border-radius: var(--border-radius);
|
|
5732
5656
|
border-style: solid;
|
|
5733
5657
|
border-width: 2px;
|
|
5734
5658
|
padding: 0 0.5em;
|
|
5735
5659
|
}
|
|
5736
5660
|
.input > kol-icon {
|
|
5737
|
-
width:
|
|
5661
|
+
width: 1em;
|
|
5662
|
+
}
|
|
5663
|
+
.input:is(.icon-left, .icon-right) {
|
|
5664
|
+
padding-left: 1em;
|
|
5665
|
+
padding-right: 1em;
|
|
5666
|
+
}
|
|
5667
|
+
.input.icon-left kol-icon:first-child {
|
|
5668
|
+
margin-right: 0.5em;
|
|
5669
|
+
}
|
|
5670
|
+
.input.icon-right kol-icon:last-child {
|
|
5671
|
+
margin-left: 0.5em;
|
|
5738
5672
|
}
|
|
5739
5673
|
.input > input:first-child {
|
|
5740
5674
|
padding-left: 0.375em;
|
|
@@ -5745,7 +5679,7 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5745
5679
|
.input:hover {
|
|
5746
5680
|
border-color: var(--color-midnight);
|
|
5747
5681
|
}
|
|
5748
|
-
|
|
5682
|
+
select:disabled {
|
|
5749
5683
|
cursor: not-allowed;
|
|
5750
5684
|
}
|
|
5751
5685
|
.required label > span::after {
|
|
@@ -5763,15 +5697,15 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5763
5697
|
color: var(--color-red);
|
|
5764
5698
|
font-weight: 700;
|
|
5765
5699
|
}
|
|
5766
|
-
.disabled {
|
|
5767
|
-
opacity:
|
|
5700
|
+
kol-input.disabled :is(select, label, option) {
|
|
5701
|
+
opacity: 1;
|
|
5768
5702
|
}
|
|
5769
|
-
select
|
|
5770
|
-
|
|
5771
|
-
|
|
5703
|
+
kol-input.disabled :is(select, .input) {
|
|
5704
|
+
background-color: var(--color-smoke);
|
|
5705
|
+
border-color: var(--color-granite);
|
|
5772
5706
|
}
|
|
5773
|
-
|
|
5774
|
-
|
|
5707
|
+
select[multiple] {
|
|
5708
|
+
overflow: auto;
|
|
5775
5709
|
}
|
|
5776
5710
|
select option {
|
|
5777
5711
|
margin: 1px 0;
|
|
@@ -5790,7 +5724,7 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5790
5724
|
color: white;
|
|
5791
5725
|
}`,
|
|
5792
5726
|
"KOL-INPUT-COLOR": `kol-input {
|
|
5793
|
-
gap: 0.
|
|
5727
|
+
gap: 0.25em;
|
|
5794
5728
|
}
|
|
5795
5729
|
kol-input .error {
|
|
5796
5730
|
order: 1;
|
|
@@ -5806,31 +5740,37 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5806
5740
|
font-size: 0.875em;
|
|
5807
5741
|
font-style: italic;
|
|
5808
5742
|
}
|
|
5809
|
-
input
|
|
5810
|
-
select,
|
|
5811
|
-
textarea {
|
|
5743
|
+
input {
|
|
5812
5744
|
border: none;
|
|
5813
5745
|
}
|
|
5814
5746
|
input[type="color"] {
|
|
5815
5747
|
border: none;
|
|
5816
5748
|
min-height: 40px !important;
|
|
5817
5749
|
}
|
|
5818
|
-
input[type="color"]
|
|
5819
|
-
input[type="file"] {
|
|
5750
|
+
input[type="color"] {
|
|
5820
5751
|
background-color: transparent;
|
|
5821
5752
|
}
|
|
5822
5753
|
input::placeholder {
|
|
5823
5754
|
color: var(--color-grey);
|
|
5824
5755
|
}
|
|
5825
5756
|
.input {
|
|
5757
|
+
background-color: var(--color-white);
|
|
5826
5758
|
border-color: var(--color-grey);
|
|
5827
|
-
border-radius:
|
|
5759
|
+
border-radius: var(--border-radius);
|
|
5828
5760
|
border-style: solid;
|
|
5829
5761
|
border-width: 2px;
|
|
5830
5762
|
padding: 0 0.5em;
|
|
5831
5763
|
}
|
|
5832
5764
|
.input > kol-icon {
|
|
5833
|
-
width:
|
|
5765
|
+
width: 1em;
|
|
5766
|
+
}
|
|
5767
|
+
.input:is(.icon-left, .icon-right) {
|
|
5768
|
+
padding-left: 1em;
|
|
5769
|
+
padding-right: 1em;
|
|
5770
|
+
}
|
|
5771
|
+
.input:is(.icon-left, .icon-right) input {
|
|
5772
|
+
padding-left: 0.5em;
|
|
5773
|
+
padding-right: 0.5em;
|
|
5834
5774
|
}
|
|
5835
5775
|
.input > input:first-child {
|
|
5836
5776
|
padding-left: 0.375em;
|
|
@@ -5841,7 +5781,8 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5841
5781
|
.input:hover {
|
|
5842
5782
|
border-color: var(--color-midnight);
|
|
5843
5783
|
}
|
|
5844
|
-
input:not([type="color"]):read-only,
|
|
5784
|
+
input:not([type="color"]):read-only,
|
|
5785
|
+
input:disabled {
|
|
5845
5786
|
cursor: not-allowed;
|
|
5846
5787
|
}
|
|
5847
5788
|
.required label > span::after {
|
|
@@ -5859,31 +5800,13 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5859
5800
|
color: var(--color-red);
|
|
5860
5801
|
font-weight: 700;
|
|
5861
5802
|
}
|
|
5862
|
-
.disabled {
|
|
5863
|
-
opacity:
|
|
5864
|
-
}
|
|
5865
|
-
select[multiple],
|
|
5866
|
-
textarea {
|
|
5867
|
-
overflow: auto;
|
|
5868
|
-
}
|
|
5869
|
-
textarea {
|
|
5870
|
-
display: block;
|
|
5871
|
-
}
|
|
5872
|
-
select option {
|
|
5873
|
-
margin: 1px 0;
|
|
5874
|
-
padding: 0.5em;
|
|
5875
|
-
border-radius: 0.25em;
|
|
5876
|
-
cursor: pointer;
|
|
5877
|
-
}
|
|
5878
|
-
select option:disabled {
|
|
5879
|
-
cursor: not-allowed;
|
|
5803
|
+
kol-input.disabled :is(input, label) {
|
|
5804
|
+
opacity: 1;
|
|
5880
5805
|
}
|
|
5881
|
-
|
|
5882
|
-
|
|
5883
|
-
|
|
5884
|
-
|
|
5885
|
-
background: var(--color-ocean);
|
|
5886
|
-
color: white;
|
|
5806
|
+
kol-input.disabled :is(input, .input) {
|
|
5807
|
+
background-color: var(--color-smoke);
|
|
5808
|
+
border-color: var(--color-granite);
|
|
5809
|
+
color: var(--color-black);
|
|
5887
5810
|
}`,
|
|
5888
5811
|
"KOL-ACCORDION": `kol-span-wc > span {
|
|
5889
5812
|
display: flex;
|
|
@@ -5910,10 +5833,10 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5910
5833
|
color: var(--color-midnight);
|
|
5911
5834
|
}
|
|
5912
5835
|
:host > div.open > kol-heading-wc button kol-icon::part(icon)::before {
|
|
5913
|
-
content: "\\
|
|
5836
|
+
content: "\\f078";
|
|
5914
5837
|
}
|
|
5915
5838
|
:host > div.close > kol-heading-wc button kol-icon::part(icon)::before {
|
|
5916
|
-
content: "\\
|
|
5839
|
+
content: "\\f054";
|
|
5917
5840
|
}
|
|
5918
5841
|
:host > div {
|
|
5919
5842
|
width: 100%;
|
|
@@ -5923,9 +5846,9 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5923
5846
|
:host > div div[class="header"],
|
|
5924
5847
|
:host > div[class*="open"] div[class="content"] {
|
|
5925
5848
|
margin: 0;
|
|
5926
|
-
padding-left: 2.25em;
|
|
5927
5849
|
}
|
|
5928
|
-
:host > div
|
|
5850
|
+
:host > div div[class="content"] {
|
|
5851
|
+
padding-left: 2.25em;
|
|
5929
5852
|
padding-bottom: 12px;
|
|
5930
5853
|
padding-right: 8px;
|
|
5931
5854
|
}
|
|
@@ -6040,10 +5963,21 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
6040
5963
|
font-family: var(--font-family);
|
|
6041
5964
|
font-size: var(--font-size);
|
|
6042
5965
|
background-color: var(--color-smoke);
|
|
5966
|
+
width: 100%;
|
|
6043
5967
|
}
|
|
6044
5968
|
ul {
|
|
6045
5969
|
list-style: none;
|
|
6046
5970
|
}
|
|
5971
|
+
kol-link-wc,
|
|
5972
|
+
a {
|
|
5973
|
+
height: 100%;
|
|
5974
|
+
min-height: 44px;
|
|
5975
|
+
display: flex;
|
|
5976
|
+
place-items: center;
|
|
5977
|
+
}
|
|
5978
|
+
.entry > kol-span-wc > span {
|
|
5979
|
+
width: 100%;
|
|
5980
|
+
}
|
|
6047
5981
|
.entry > :is(kol-button-wc, kol-link-wc, kol-span-wc):first-child {
|
|
6048
5982
|
background-color: var(--color-white);
|
|
6049
5983
|
text-decoration: none;
|
|
@@ -6052,10 +5986,6 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
6052
5986
|
display: flex;
|
|
6053
5987
|
align-items: center;
|
|
6054
5988
|
font-style: normal;
|
|
6055
|
-
padding: 0.75rem 0.5rem 0.75rem 0;
|
|
6056
|
-
border-left-color: var(--color-white);
|
|
6057
|
-
border-left-style: solid;
|
|
6058
|
-
border-left-width: 0.5rem;
|
|
6059
5989
|
line-height: 1.5rem;
|
|
6060
5990
|
min-height: 44px;
|
|
6061
5991
|
min-width: 44px;
|
|
@@ -6063,22 +5993,55 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
6063
5993
|
transition-property: background-color, color, border-color;
|
|
6064
5994
|
letter-spacing: 0.175px;
|
|
6065
5995
|
}
|
|
5996
|
+
.entry > :is(kol-link-wc, kol-button-wc):first-child :is(a, button) {
|
|
5997
|
+
color: var(--color-midnight);
|
|
5998
|
+
text-decoration: none;
|
|
5999
|
+
}
|
|
6066
6000
|
.entry > :is(kol-button-wc, kol-link-wc, kol-span-wc):first-child:hover {
|
|
6067
6001
|
border-left-color: var(--color-ocean);
|
|
6002
|
+
background-color: var(--color-ocean);
|
|
6003
|
+
}
|
|
6004
|
+
.entry
|
|
6005
|
+
> :is(kol-link-wc, kol-button-wc, kol-span-wc):first-child:hover
|
|
6006
|
+
> :is(a, button, span) {
|
|
6007
|
+
color: var(--color-white);
|
|
6068
6008
|
font-weight: 700;
|
|
6009
|
+
letter-spacing: unset;
|
|
6069
6010
|
}
|
|
6070
|
-
.selected :is(kol-button-wc, kol-link-wc, kol-span-wc):first-child {
|
|
6011
|
+
.selected > :is(kol-button-wc, kol-link-wc, kol-span-wc):first-child {
|
|
6071
6012
|
background-color: var(--color-ice);
|
|
6072
|
-
border-left-color: var(--color-midnight);
|
|
6073
6013
|
color: var(--color-midnight);
|
|
6074
6014
|
font-weight: 700;
|
|
6075
|
-
letter-spacing: unset;
|
|
6076
6015
|
}
|
|
6077
|
-
|
|
6078
|
-
|
|
6079
|
-
|
|
6080
|
-
|
|
6016
|
+
.selected
|
|
6017
|
+
> :is(kol-link-wc, kol-button-wc, kol-span-wc):first-child
|
|
6018
|
+
> :is(a, button, span) {
|
|
6019
|
+
font-weight: 700;
|
|
6020
|
+
}
|
|
6021
|
+
.selected :is(kol-button-wc, kol-link-wc, kol-span-wc):first-child:hover {
|
|
6081
6022
|
color: var(--color-white);
|
|
6023
|
+
letter-spacing: unset;
|
|
6024
|
+
}
|
|
6025
|
+
.entry > kol-span-wc > span,
|
|
6026
|
+
.entry :is(a, button) {
|
|
6027
|
+
border-left-color: transparent;
|
|
6028
|
+
border-left-style: solid;
|
|
6029
|
+
border-left-width: 0.5rem;
|
|
6030
|
+
padding: 0.75rem 0.5rem 0.75rem 0.25rem;
|
|
6031
|
+
}
|
|
6032
|
+
.selected :is(a, button),
|
|
6033
|
+
[exportparts*="selected"] a {
|
|
6034
|
+
border-left-color: var(--color-midnight);
|
|
6035
|
+
} /** Compact mode */
|
|
6036
|
+
.entry.text-center :is(kol-button-wc, kol-link-wc, kol-span-wc):first-child {
|
|
6037
|
+
place-items: center;
|
|
6038
|
+
}
|
|
6039
|
+
.entry.text-center > kol-span-wc > span {
|
|
6040
|
+
flex-direction: column;
|
|
6041
|
+
}
|
|
6042
|
+
.entry.text-center > kol-span-wc > span,
|
|
6043
|
+
.entry.text-center :is(a, button) {
|
|
6044
|
+
padding-left: 0;
|
|
6082
6045
|
}`,
|
|
6083
6046
|
"KOL-CARD": `/* https://www.figma.com/file/56JbmrssCRpjpfxoAFeHqT/Design-System-EPLF-(in-progress)?node-id=8225%3A5945 */
|
|
6084
6047
|
:host > div {
|
|
@@ -6116,10 +6079,10 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
6116
6079
|
gap: 0.4em;
|
|
6117
6080
|
}
|
|
6118
6081
|
:host kol-input.default {
|
|
6119
|
-
grid-template-columns:
|
|
6082
|
+
grid-template-columns: 1.5rem auto;
|
|
6120
6083
|
}
|
|
6121
6084
|
:host kol-input.switch {
|
|
6122
|
-
grid-template-columns:
|
|
6085
|
+
grid-template-columns: 3.5rem auto;
|
|
6123
6086
|
}
|
|
6124
6087
|
:host kol-input > div.input {
|
|
6125
6088
|
display: inherit;
|
|
@@ -6201,7 +6164,7 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
6201
6164
|
border-color: var(--color-midnight);
|
|
6202
6165
|
}
|
|
6203
6166
|
:host kol-input.default input[type="checkbox"] {
|
|
6204
|
-
border-radius:
|
|
6167
|
+
border-radius: var(--border-radius);
|
|
6205
6168
|
height: calc(6 * var(--spacing));
|
|
6206
6169
|
min-width: calc(6 * var(--spacing));
|
|
6207
6170
|
width: calc(6 * var(--spacing));
|
|
@@ -6229,14 +6192,15 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
6229
6192
|
width: calc(1.5 * var(--spacing));
|
|
6230
6193
|
}
|
|
6231
6194
|
:host kol-input.default input[type="checkbox"]:indeterminate {
|
|
6232
|
-
--tw-bg-opacity: 1;
|
|
6195
|
+
--tw-bg-opacity: 1;
|
|
6196
|
+
background-color: var(--color-midnight);
|
|
6233
6197
|
}
|
|
6234
6198
|
:host kol-input.default input[type="checkbox"]:indeterminate:before {
|
|
6235
6199
|
background-color: var(--color-white);
|
|
6236
6200
|
height: 0.125rem;
|
|
6237
6201
|
top: 0.6rem;
|
|
6238
|
-
left: 0.
|
|
6239
|
-
width: calc(
|
|
6202
|
+
left: 0.25rem;
|
|
6203
|
+
width: calc(3 * var(--spacing));
|
|
6240
6204
|
transform: inherit;
|
|
6241
6205
|
}
|
|
6242
6206
|
:host kol-input.default input[type="checkbox"]:checked:indeterminate:before {
|
|
@@ -6413,26 +6377,32 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
6413
6377
|
fieldset.horizontal legend {
|
|
6414
6378
|
display: inline-block;
|
|
6415
6379
|
margin-bottom: 0.25em;
|
|
6380
|
+
}
|
|
6381
|
+
fieldset [slot="input"] {
|
|
6382
|
+
gap: 0.5rem;
|
|
6383
|
+
}
|
|
6384
|
+
fieldset div label {
|
|
6385
|
+
padding-left: 0;
|
|
6416
6386
|
}`,
|
|
6417
6387
|
"KOL-TOAST": `:host > div {
|
|
6418
6388
|
position: fixed;
|
|
6419
6389
|
top: 0;
|
|
6420
|
-
|
|
6390
|
+
right: 0;
|
|
6421
6391
|
width: 100%;
|
|
6422
6392
|
height: 0;
|
|
6423
6393
|
z-index: 200;
|
|
6424
6394
|
}
|
|
6425
6395
|
:host > div > kol-alert {
|
|
6426
6396
|
display: block;
|
|
6427
|
-
margin: auto;
|
|
6428
|
-
|
|
6397
|
+
margin-left: auto;
|
|
6398
|
+
margin-right: unset;
|
|
6399
|
+
padding: 2rem;
|
|
6429
6400
|
max-width: 750px;
|
|
6430
6401
|
}
|
|
6431
6402
|
:host > div > kol-button-wc {
|
|
6432
6403
|
top: 0;
|
|
6433
6404
|
position: relative;
|
|
6434
6405
|
display: block;
|
|
6435
|
-
margin: auto;
|
|
6436
6406
|
width: 1em;
|
|
6437
6407
|
}`,
|
|
6438
6408
|
"KOL-TABS": `button:disabled {
|
|
@@ -6616,9 +6586,25 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
6616
6586
|
align-self: flex-end;
|
|
6617
6587
|
padding-bottom: 0.5rem;
|
|
6618
6588
|
color: var(--color-midnight);
|
|
6589
|
+
}
|
|
6590
|
+
kol-button::part(icon) {
|
|
6591
|
+
font-family: "Font Awesome 6 Free";
|
|
6592
|
+
font-weight: 900;
|
|
6593
|
+
}
|
|
6594
|
+
kol-button.first::part(icon):before {
|
|
6595
|
+
content: "\\f100";
|
|
6596
|
+
}
|
|
6597
|
+
kol-button.previous::part(icon):before {
|
|
6598
|
+
content: "\\f104";
|
|
6599
|
+
}
|
|
6600
|
+
kol-button.next::part(icon):before {
|
|
6601
|
+
content: "\\f105";
|
|
6602
|
+
}
|
|
6603
|
+
kol-button.last::part(icon):before {
|
|
6604
|
+
content: "\\f101";
|
|
6619
6605
|
}`,
|
|
6620
6606
|
"KOL-INPUT-RANGE": `kol-input {
|
|
6621
|
-
gap: 0.
|
|
6607
|
+
gap: 0.25em;
|
|
6622
6608
|
}
|
|
6623
6609
|
kol-input .error {
|
|
6624
6610
|
order: 1;
|
|
@@ -6634,42 +6620,38 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
6634
6620
|
font-size: 0.875em;
|
|
6635
6621
|
font-style: italic;
|
|
6636
6622
|
}
|
|
6637
|
-
input
|
|
6638
|
-
select,
|
|
6639
|
-
textarea {
|
|
6640
|
-
border: none;
|
|
6641
|
-
}
|
|
6642
|
-
input[type="color"] {
|
|
6623
|
+
input {
|
|
6643
6624
|
border: none;
|
|
6644
|
-
min-height: 40px !important;
|
|
6645
|
-
}
|
|
6646
|
-
input[type="color"],
|
|
6647
|
-
input[type="file"] {
|
|
6648
|
-
background-color: transparent;
|
|
6649
6625
|
}
|
|
6650
6626
|
input::placeholder {
|
|
6651
6627
|
color: var(--color-grey);
|
|
6652
6628
|
}
|
|
6653
6629
|
.input {
|
|
6630
|
+
background-color: var(--color-white);
|
|
6654
6631
|
border-color: var(--color-grey);
|
|
6655
|
-
border-radius:
|
|
6632
|
+
border-radius: var(--border-radius);
|
|
6656
6633
|
border-style: solid;
|
|
6657
6634
|
border-width: 2px;
|
|
6658
|
-
padding: 0
|
|
6635
|
+
padding: 0 1em;
|
|
6659
6636
|
}
|
|
6660
6637
|
.input > kol-icon {
|
|
6661
|
-
width:
|
|
6638
|
+
width: 1em;
|
|
6662
6639
|
}
|
|
6663
|
-
.input >
|
|
6664
|
-
|
|
6640
|
+
.input.icon-left > kol-icon:first-child {
|
|
6641
|
+
margin-right: 0.5em;
|
|
6665
6642
|
}
|
|
6666
|
-
.input >
|
|
6667
|
-
|
|
6643
|
+
.input.icon-right > kol-icon:last-child {
|
|
6644
|
+
margin-left: 0.5em;
|
|
6645
|
+
}
|
|
6646
|
+
.input:is(.icon-left, .icon-right) {
|
|
6647
|
+
padding-left: 1em;
|
|
6648
|
+
padding-right: 1em;
|
|
6668
6649
|
}
|
|
6669
6650
|
.input:hover {
|
|
6670
6651
|
border-color: var(--color-midnight);
|
|
6671
6652
|
}
|
|
6672
|
-
input:
|
|
6653
|
+
input:read-only,
|
|
6654
|
+
input:disabled {
|
|
6673
6655
|
cursor: not-allowed;
|
|
6674
6656
|
}
|
|
6675
6657
|
.required label > span::after {
|
|
@@ -6687,31 +6669,13 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
6687
6669
|
color: var(--color-red);
|
|
6688
6670
|
font-weight: 700;
|
|
6689
6671
|
}
|
|
6690
|
-
.disabled {
|
|
6691
|
-
opacity:
|
|
6692
|
-
}
|
|
6693
|
-
select[multiple],
|
|
6694
|
-
textarea {
|
|
6695
|
-
overflow: auto;
|
|
6696
|
-
}
|
|
6697
|
-
textarea {
|
|
6698
|
-
display: block;
|
|
6699
|
-
}
|
|
6700
|
-
select option {
|
|
6701
|
-
margin: 1px 0;
|
|
6702
|
-
padding: 0.5em;
|
|
6703
|
-
border-radius: 0.25em;
|
|
6704
|
-
cursor: pointer;
|
|
6705
|
-
}
|
|
6706
|
-
select option:disabled {
|
|
6707
|
-
cursor: not-allowed;
|
|
6672
|
+
kol-input.disabled :is(input, label) {
|
|
6673
|
+
opacity: 1;
|
|
6708
6674
|
}
|
|
6709
|
-
|
|
6710
|
-
|
|
6711
|
-
|
|
6712
|
-
|
|
6713
|
-
background: var(--color-ocean);
|
|
6714
|
-
color: white;
|
|
6675
|
+
kol-input.disabled :is(.input) {
|
|
6676
|
+
background-color: var(--color-smoke);
|
|
6677
|
+
border-color: var(--color-granite);
|
|
6678
|
+
color: var(--color-black);
|
|
6715
6679
|
}`,
|
|
6716
6680
|
"KOL-LINK-BUTTON": `:is(a, button):focus {
|
|
6717
6681
|
outline: none;
|
|
@@ -6809,6 +6773,19 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
6809
6773
|
:is(a, button).loading > kol-span-wc kol-icon {
|
|
6810
6774
|
animation: spin 5s infinite linear;
|
|
6811
6775
|
}
|
|
6776
|
+
/** small ghost button */
|
|
6777
|
+
.ghost :is(a, button).small > kol-span-wc {
|
|
6778
|
+
border: none;
|
|
6779
|
+
background-color: transparent;
|
|
6780
|
+
box-shadow: none;
|
|
6781
|
+
}
|
|
6782
|
+
.ghost :is(a, button).small > kol-span-wc > span {
|
|
6783
|
+
border-radius: 1.5em;
|
|
6784
|
+
border-style: solid;
|
|
6785
|
+
border-width: 2px;
|
|
6786
|
+
border-color: var(--color-white);
|
|
6787
|
+
background-color: var(--color-white);
|
|
6788
|
+
}
|
|
6812
6789
|
.ghost :is(a, button).small:active > kol-span-wc > span,
|
|
6813
6790
|
.ghost :is(a, button).small:hover > kol-span-wc > span,
|
|
6814
6791
|
.ghost :is(a, button).small.transparent:active > kol-span-wc > span,
|
|
@@ -6860,11 +6837,31 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
6860
6837
|
position: unset;
|
|
6861
6838
|
}`,
|
|
6862
6839
|
"KOL-ABBR": `abbr {
|
|
6863
|
-
border-bottom:
|
|
6840
|
+
border-bottom: dashed var(--color-black) 1px;
|
|
6864
6841
|
text-decoration: none !important;
|
|
6865
6842
|
}`,
|
|
6843
|
+
"KOL-BREADCRUMB": `li:has(:is(kol-icon + kol-link, kol-icon + span)) kol-icon {
|
|
6844
|
+
font-size: 0.75rem;
|
|
6845
|
+
}
|
|
6846
|
+
li:has(:is(kol-icon + kol-link, kol-icon + span)) kol-icon::part(icon) {
|
|
6847
|
+
font-family: "Font Awesome 6 Free";
|
|
6848
|
+
font-weight: 900;
|
|
6849
|
+
color: var(--color-grey);
|
|
6850
|
+
}
|
|
6851
|
+
li:has(:is(kol-icon + kol-link, kol-icon + span)) kol-icon::part(icon)::before {
|
|
6852
|
+
content: "\\f054";
|
|
6853
|
+
}
|
|
6854
|
+
kol-link::part(icon) {
|
|
6855
|
+
font-size: 1.25rem;
|
|
6856
|
+
}
|
|
6857
|
+
ul li > :is(span, kol-link) {
|
|
6858
|
+
line-height: 1.25rem;
|
|
6859
|
+
height: 20px;
|
|
6860
|
+
}
|
|
6861
|
+
ul li:last-child > span {
|
|
6862
|
+
color: var(--color-grey);
|
|
6863
|
+
}`,
|
|
6866
6864
|
"KOL-ICON": `:host {
|
|
6867
|
-
display: inline-block;
|
|
6868
6865
|
width: 1em;
|
|
6869
6866
|
height: 1em;
|
|
6870
6867
|
}
|