@public-ui/themes 1.6.0-rc.22 → 1.6.0-rc.24
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 +2934 -501
- package/dist/index.d.ts +52 -1
- package/dist/index.mjs +2934 -502
- package/package.json +8 -7
package/dist/index.cjs
CHANGED
|
@@ -4003,6 +4003,12 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4003
4003
|
display: grid;
|
|
4004
4004
|
gap: var(--kolibri-spacing);
|
|
4005
4005
|
}
|
|
4006
|
+
.msg {
|
|
4007
|
+
background-color: transparent;
|
|
4008
|
+
}
|
|
4009
|
+
.msg > .heading {
|
|
4010
|
+
place-items: flex-start;
|
|
4011
|
+
}
|
|
4006
4012
|
.msg > .heading > kol-icon {
|
|
4007
4013
|
place-self: baseline;
|
|
4008
4014
|
}
|
|
@@ -4094,7 +4100,7 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4094
4100
|
color: var(--color-orange);
|
|
4095
4101
|
}
|
|
4096
4102
|
.card {
|
|
4097
|
-
border-width:
|
|
4103
|
+
border-width: 2px;
|
|
4098
4104
|
border-style: solid;
|
|
4099
4105
|
filter: drop-shadow(0px 2px 4px rgba(8, 35, 48, 0.24));
|
|
4100
4106
|
flex-direction: column;
|
|
@@ -4102,7 +4108,7 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4102
4108
|
.card > .heading {
|
|
4103
4109
|
padding: 0.5rem 1rem;
|
|
4104
4110
|
}
|
|
4105
|
-
.card
|
|
4111
|
+
.card.hasCloser > .heading {
|
|
4106
4112
|
padding-top: 0;
|
|
4107
4113
|
padding-bottom: 0;
|
|
4108
4114
|
padding-right: 0;
|
|
@@ -4125,23 +4131,46 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4125
4131
|
.card > .heading kol-heading-wc > * {
|
|
4126
4132
|
margin: auto 0;
|
|
4127
4133
|
}
|
|
4134
|
+
.card > .heading kol-button-wc button:focus {
|
|
4135
|
+
outline-color: var(--color-white);
|
|
4136
|
+
outline-offset: -3px;
|
|
4137
|
+
outline-style: solid;
|
|
4138
|
+
outline-width: 3px;
|
|
4139
|
+
transition: outline 0.1s linear;
|
|
4140
|
+
}
|
|
4141
|
+
.card > .heading kol-button-wc button:hover {
|
|
4142
|
+
background-color: rgba(32, 32, 32, 0.2);
|
|
4143
|
+
}
|
|
4144
|
+
.card > .heading kol-button-wc button:active {
|
|
4145
|
+
background-color: rgba(32, 32, 32, 0.4);
|
|
4146
|
+
}
|
|
4147
|
+
.card > .heading kol-button-wc button:hover:focus {
|
|
4148
|
+
background-color: rgba(32, 32, 32, 0.1);
|
|
4149
|
+
}
|
|
4128
4150
|
.card > .content {
|
|
4129
|
-
padding:
|
|
4151
|
+
padding: 1rem;
|
|
4152
|
+
max-height: 9.5rem;
|
|
4153
|
+
overflow-y: auto;
|
|
4130
4154
|
}
|
|
4131
4155
|
.card.default > .heading {
|
|
4132
4156
|
background-color: var(--color-grey);
|
|
4157
|
+
border-bottom: 2px solid var(--color-grey);
|
|
4133
4158
|
}
|
|
4134
4159
|
.card.error > .heading {
|
|
4135
4160
|
background-color: var(--color-red);
|
|
4161
|
+
border-bottom: 2px solid var(--color-red);
|
|
4136
4162
|
}
|
|
4137
4163
|
.card.info > .heading {
|
|
4138
4164
|
background-color: var(--color-midnight);
|
|
4165
|
+
border-bottom: 2px solid var(--color-midnight);
|
|
4139
4166
|
}
|
|
4140
4167
|
.card.success > .heading {
|
|
4141
4168
|
background-color: var(--color-green);
|
|
4169
|
+
border-bottom: 2px solid var(--color-green);
|
|
4142
4170
|
}
|
|
4143
4171
|
.card.warning > .heading {
|
|
4144
4172
|
background-color: var(--color-orange);
|
|
4173
|
+
border-bottom: 2px solid var(--color-orange);
|
|
4145
4174
|
}
|
|
4146
4175
|
:is(.error, .info, .success, .warning) .heading-icon::part(icon) {
|
|
4147
4176
|
font-family: "Font Awesome 6 Free" !important;
|
|
@@ -4208,20 +4237,20 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4208
4237
|
background-color: rgba(0, 0, 0, 0);
|
|
4209
4238
|
border-color: rgba(0, 0, 0, 0);
|
|
4210
4239
|
}
|
|
4211
|
-
.close > button
|
|
4240
|
+
.close > button {
|
|
4212
4241
|
padding: 8px;
|
|
4213
4242
|
}
|
|
4214
|
-
.close > button
|
|
4243
|
+
.close > button kol-icon {
|
|
4215
4244
|
display: flex;
|
|
4216
4245
|
width: 1em;
|
|
4217
4246
|
height: 1em;
|
|
4218
4247
|
font-size: 1rem;
|
|
4219
4248
|
}
|
|
4220
|
-
.close > button
|
|
4249
|
+
.close > button kol-icon::part(icon) {
|
|
4221
4250
|
font-family: "Font Awesome 6 Free";
|
|
4222
4251
|
font-weight: 900;
|
|
4223
4252
|
}
|
|
4224
|
-
.close > button
|
|
4253
|
+
.close > button kol-icon::part(icon)::before {
|
|
4225
4254
|
content: "\\f00d";
|
|
4226
4255
|
}
|
|
4227
4256
|
.close > button:active {
|
|
@@ -4902,8 +4931,13 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4902
4931
|
:host kol-input > div.input input {
|
|
4903
4932
|
margin: 0px;
|
|
4904
4933
|
}
|
|
4905
|
-
:host kol-input
|
|
4934
|
+
:host kol-input:not(.disabled) :is(.input, label) {
|
|
4906
4935
|
cursor: pointer;
|
|
4936
|
+
}
|
|
4937
|
+
:host kol-input.disabled :is(.input, label) {
|
|
4938
|
+
cursor: not-allowed;
|
|
4939
|
+
}
|
|
4940
|
+
:host kol-input > label {
|
|
4907
4941
|
order: 3;
|
|
4908
4942
|
}
|
|
4909
4943
|
:host kol-input > kol-alert.error {
|
|
@@ -4925,7 +4959,6 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4925
4959
|
font-weight: 700;
|
|
4926
4960
|
}
|
|
4927
4961
|
:host input {
|
|
4928
|
-
cursor: pointer;
|
|
4929
4962
|
order: 1;
|
|
4930
4963
|
width: 100%;
|
|
4931
4964
|
border-color: var(--color-grey);
|
|
@@ -4959,15 +4992,10 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
4959
4992
|
:host kol-input input[type="checkbox"] {
|
|
4960
4993
|
appearance: none;
|
|
4961
4994
|
background-color: white;
|
|
4962
|
-
cursor: pointer;
|
|
4963
4995
|
transition: 0.5s;
|
|
4964
4996
|
}
|
|
4965
|
-
:host kol-input input[type="checkbox"].kol-disabled:before {
|
|
4966
|
-
cursor: not-allowed;
|
|
4967
|
-
}
|
|
4968
4997
|
:host kol-input input[type="checkbox"]:before {
|
|
4969
4998
|
content: "";
|
|
4970
|
-
cursor: pointer;
|
|
4971
4999
|
}
|
|
4972
5000
|
:host kol-input input[type="checkbox"]:checked {
|
|
4973
5001
|
background-color: var(--color-midnight);
|
|
@@ -5207,7 +5235,7 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5207
5235
|
margin-left: auto;
|
|
5208
5236
|
margin-right: unset;
|
|
5209
5237
|
padding: 2rem;
|
|
5210
|
-
max-width:
|
|
5238
|
+
max-width: 440px;
|
|
5211
5239
|
}
|
|
5212
5240
|
:host > div > kol-button-wc {
|
|
5213
5241
|
top: 0;
|
|
@@ -5430,8 +5458,8 @@ const BMF = KoliBri.createTheme("bmf", {
|
|
|
5430
5458
|
font-size: 0.875em;
|
|
5431
5459
|
font-style: italic;
|
|
5432
5460
|
}
|
|
5433
|
-
|
|
5434
|
-
|
|
5461
|
+
.inputs-wrapper {
|
|
5462
|
+
gap: 1em;
|
|
5435
5463
|
}
|
|
5436
5464
|
input::placeholder {
|
|
5437
5465
|
color: var(--color-grey);
|
|
@@ -50245,468 +50273,2868 @@ const MAPZ = KoliBri.createTheme("mapz", {
|
|
|
50245
50273
|
}`
|
|
50246
50274
|
});
|
|
50247
50275
|
|
|
50248
|
-
const
|
|
50249
|
-
|
|
50250
|
-
|
|
50251
|
-
|
|
50252
|
-
|
|
50253
|
-
|
|
50254
|
-
|
|
50255
|
-
|
|
50256
|
-
|
|
50257
|
-
|
|
50258
|
-
|
|
50259
|
-
|
|
50260
|
-
|
|
50261
|
-
|
|
50262
|
-
|
|
50263
|
-
|
|
50264
|
-
|
|
50265
|
-
|
|
50266
|
-
|
|
50267
|
-
--color-grau-90: hsl(0 0% 10%);
|
|
50268
|
-
--color-grau-80: hsl(0 0% 20%);
|
|
50269
|
-
--color-grau-70: hsl(0 0% 30%);
|
|
50270
|
-
--color-grau-60: hsl(0 0% 40%);
|
|
50271
|
-
--color-grau-50: hsl(0 0% 50%);
|
|
50272
|
-
--color-grau-40: hsl(0 0% 60%);
|
|
50273
|
-
--color-grau-30: hsl(0 0% 70%);
|
|
50274
|
-
--color-grau-20: hsl(0 0% 80%);
|
|
50275
|
-
--color-grau-10: hsl(0 0% 90%);
|
|
50276
|
-
--color-grau-0: hsl(0 0% 100%);
|
|
50277
|
-
--gap: 0.25rem;
|
|
50278
|
-
--spacing: 0.25rem;
|
|
50279
|
-
--font-family: Roboto, Kreon, Georgia, Times New Roman, sans-serif;
|
|
50280
|
-
--font-size: 16px;
|
|
50281
|
-
--font-weight-bold: 700;
|
|
50282
|
-
--line-height-bold: 1.2em; /* em! */
|
|
50283
|
-
--line-height-regular: 1.5em; /* em! */
|
|
50284
|
-
}
|
|
50285
|
-
*[tabindex]:focus,
|
|
50286
|
-
a:focus,
|
|
50287
|
-
button:focus,
|
|
50288
|
-
summary:focus,
|
|
50289
|
-
kol-input:not(.checkbox, .radio) .input:focus-within,
|
|
50290
|
-
kol-input:is(.checkbox, .radio) input:focus {
|
|
50291
|
-
outline-color: var(--color-blau-dark);
|
|
50292
|
-
outline-offset: 0.125rem;
|
|
50293
|
-
outline-style: solid;
|
|
50294
|
-
outline-width: 0.125rem;
|
|
50295
|
-
transition: outline-offset 0.25s linear;
|
|
50296
|
-
}
|
|
50297
|
-
*:not(i) {
|
|
50298
|
-
font-family: var(--font-family);
|
|
50299
|
-
}
|
|
50300
|
-
a,
|
|
50301
|
-
button {
|
|
50302
|
-
font-size: var(--font-size);
|
|
50303
|
-
outline: none;
|
|
50304
|
-
}
|
|
50305
|
-
h1,
|
|
50306
|
-
h2,
|
|
50307
|
-
h3,
|
|
50308
|
-
h4,
|
|
50309
|
-
h5,
|
|
50310
|
-
h6 {
|
|
50311
|
-
font-weight: var(--font-weight-bold);
|
|
50312
|
-
line-height: var(--line-height-heading);
|
|
50313
|
-
margin: 0;
|
|
50314
|
-
padding: 0;
|
|
50315
|
-
}
|
|
50316
|
-
p {
|
|
50317
|
-
font-weight: var(--font-weight);
|
|
50318
|
-
}
|
|
50319
|
-
kol-span-wc,
|
|
50320
|
-
kol-span-wc > span {
|
|
50321
|
-
gap: 0.5em;
|
|
50322
|
-
}
|
|
50323
|
-
.required label span::after,
|
|
50324
|
-
.required legend span::after {
|
|
50325
|
-
color: var(--color-red);
|
|
50326
|
-
padding-left: 0.25em;
|
|
50327
|
-
}
|
|
50328
|
-
kol-tooltip .tooltip-area {
|
|
50329
|
-
background-color: #f2f2f2;
|
|
50330
|
-
}
|
|
50331
|
-
kol-tooltip .tooltip-arrow {
|
|
50332
|
-
background-color: #626262;
|
|
50333
|
-
}
|
|
50334
|
-
kol-tooltip .tooltip-content {
|
|
50335
|
-
padding: 0.25rem 0.5rem;
|
|
50336
|
-
font-size: 0.875rem;
|
|
50337
|
-
line-height: 1.25rem;
|
|
50338
|
-
border-radius: 2px;
|
|
50339
|
-
border: 1px solid #626262;
|
|
50340
|
-
}`,
|
|
50341
|
-
"KOL-BADGE": `:host {
|
|
50342
|
-
display: inline-block;
|
|
50343
|
-
}
|
|
50344
|
-
:host > span {
|
|
50345
|
-
border-radius: 0.3125rem;
|
|
50346
|
-
display: inline-flex;
|
|
50347
|
-
line-height: 1.25rem;
|
|
50348
|
-
}
|
|
50349
|
-
:host > span kol-span-wc {
|
|
50350
|
-
padding: 0.25rem 0.5rem;
|
|
50351
|
-
}
|
|
50352
|
-
:host > span > kol-span-wc {
|
|
50353
|
-
align-items: center;
|
|
50354
|
-
font-style: normal;
|
|
50355
|
-
gap: 0.5rem;
|
|
50356
|
-
}
|
|
50357
|
-
:host > span > kol-span-wc > span {
|
|
50358
|
-
display: flex;
|
|
50359
|
-
gap: 0.25rem;
|
|
50360
|
-
}
|
|
50361
|
-
:host button {
|
|
50362
|
-
border-radius: 0 var(--spacing) var(--spacing) 0;
|
|
50363
|
-
}`,
|
|
50364
|
-
"KOL-HEADING": `h1,
|
|
50365
|
-
h2,
|
|
50366
|
-
h3,
|
|
50367
|
-
h4,
|
|
50368
|
-
h5,
|
|
50369
|
-
h6 {
|
|
50370
|
-
font-weight: var(--font-weight-bold);
|
|
50371
|
-
margin: 0;
|
|
50372
|
-
padding: 1rem 0;
|
|
50373
|
-
text-align: left;
|
|
50374
|
-
}
|
|
50375
|
-
h1 {
|
|
50376
|
-
font-size: 2.5rem;
|
|
50377
|
-
line-height: 1.2;
|
|
50378
|
-
padding: 0 0 1rem 0;
|
|
50379
|
-
}
|
|
50380
|
-
h2 {
|
|
50381
|
-
font-size: 2rem;
|
|
50382
|
-
line-height: 1.25;
|
|
50383
|
-
}
|
|
50384
|
-
h3 {
|
|
50385
|
-
font-size: 1.75rem;
|
|
50386
|
-
line-height: 1.29;
|
|
50387
|
-
}
|
|
50388
|
-
h4 {
|
|
50389
|
-
font-size: 1.5rem;
|
|
50390
|
-
line-height: 1.33;
|
|
50391
|
-
}
|
|
50392
|
-
h5 {
|
|
50393
|
-
font-size: 1.25rem;
|
|
50394
|
-
line-height: 1.4;
|
|
50395
|
-
}
|
|
50396
|
-
h6 {
|
|
50397
|
-
font-size: 1rem;
|
|
50398
|
-
line-height: 1.5;
|
|
50399
|
-
}`,
|
|
50400
|
-
"KOL-LINK": `:is(a, button) {
|
|
50401
|
-
align-items: baseline;
|
|
50402
|
-
color: var(--color-blau);
|
|
50403
|
-
gap: 0.25em;
|
|
50404
|
-
text-decoration-line: none;
|
|
50405
|
-
}
|
|
50406
|
-
a:active,
|
|
50407
|
-
a:focus,
|
|
50408
|
-
a:hover,
|
|
50409
|
-
button:active,
|
|
50410
|
-
button:focus,
|
|
50411
|
-
button:hover {
|
|
50412
|
-
outline-width: 0;
|
|
50413
|
-
text-decoration-line: underline;
|
|
50414
|
-
text-decoration-thickness: 0.1rem !important;
|
|
50415
|
-
}
|
|
50416
|
-
:is(a, button) > kol-span-wc {
|
|
50417
|
-
order: 1;
|
|
50418
|
-
gap: 0.25em;
|
|
50419
|
-
}
|
|
50420
|
-
:is(a, button) > kol-span-wc > span {
|
|
50421
|
-
align-items: baseline;
|
|
50422
|
-
gap: 0.25em;
|
|
50423
|
-
}
|
|
50424
|
-
.hidden {
|
|
50425
|
-
display: none;
|
|
50426
|
-
visibility: hidden;
|
|
50427
|
-
}
|
|
50428
|
-
.skip {
|
|
50429
|
-
left: -99999px;
|
|
50430
|
-
overflow: hidden;
|
|
50431
|
-
position: absolute;
|
|
50432
|
-
z-index: 9999999;
|
|
50433
|
-
line-height: 1em;
|
|
50434
|
-
}
|
|
50435
|
-
.skip:focus {
|
|
50436
|
-
background: white;
|
|
50437
|
-
left: unset;
|
|
50438
|
-
position: unset;
|
|
50439
|
-
}`,
|
|
50440
|
-
"KOL-BUTTON-LINK": `:is(a, button) {
|
|
50441
|
-
align-items: baseline;
|
|
50442
|
-
color: var(--color-blau);
|
|
50443
|
-
gap: 0.25em;
|
|
50444
|
-
text-decoration-line: none;
|
|
50445
|
-
}
|
|
50446
|
-
a:active,
|
|
50447
|
-
a:focus,
|
|
50448
|
-
a:hover,
|
|
50449
|
-
button:active,
|
|
50450
|
-
button:focus,
|
|
50451
|
-
button:hover {
|
|
50452
|
-
outline-width: 0;
|
|
50453
|
-
text-decoration-line: underline;
|
|
50454
|
-
text-decoration-thickness: 0.1rem !important;
|
|
50455
|
-
}
|
|
50456
|
-
:is(a, button) > kol-span-wc {
|
|
50457
|
-
order: 1;
|
|
50458
|
-
gap: 0.25em;
|
|
50459
|
-
}
|
|
50460
|
-
:is(a, button) > kol-span-wc > span {
|
|
50461
|
-
align-items: baseline;
|
|
50462
|
-
gap: 0.25em;
|
|
50463
|
-
}
|
|
50464
|
-
.hidden {
|
|
50465
|
-
display: none;
|
|
50466
|
-
visibility: hidden;
|
|
50467
|
-
}
|
|
50468
|
-
.skip {
|
|
50469
|
-
left: -99999px;
|
|
50470
|
-
overflow: hidden;
|
|
50471
|
-
position: absolute;
|
|
50472
|
-
z-index: 9999999;
|
|
50473
|
-
line-height: 1em;
|
|
50474
|
-
}
|
|
50475
|
-
.skip:focus {
|
|
50476
|
-
background: white;
|
|
50477
|
-
left: unset;
|
|
50478
|
-
position: unset;
|
|
50479
|
-
}`,
|
|
50480
|
-
"KOL-SPIN": `.spin {
|
|
50481
|
-
display: inline-block;
|
|
50482
|
-
height: 1rem;
|
|
50483
|
-
position: relative;
|
|
50484
|
-
width: 3rem;
|
|
50485
|
-
}
|
|
50486
|
-
.spin span {
|
|
50487
|
-
animation-timing-function: cubic-bezier(0, 1, 1, 0);
|
|
50488
|
-
border: 0.1rem solid rgb(255, 255, 255);
|
|
50489
|
-
border-radius: 50%;
|
|
50490
|
-
height: 0.8rem;
|
|
50491
|
-
width: 0.8rem;
|
|
50492
|
-
top: 0.1rem;
|
|
50493
|
-
position: absolute;
|
|
50494
|
-
}
|
|
50495
|
-
.spin span:nth-child(1) {
|
|
50496
|
-
background-color: #fc0;
|
|
50497
|
-
z-index: 0;
|
|
50498
|
-
animation: 2s ease 0s infinite normal none running spin1;
|
|
50499
|
-
left: 0.1rem;
|
|
50500
|
-
}
|
|
50501
|
-
.spin span:nth-child(2) {
|
|
50502
|
-
background-color: #f00;
|
|
50503
|
-
z-index: 1;
|
|
50504
|
-
animation: 2s ease 0s infinite normal none running spin2;
|
|
50505
|
-
left: 0.1rem;
|
|
50506
|
-
}
|
|
50507
|
-
.spin span:nth-child(3) {
|
|
50508
|
-
background-color: #000;
|
|
50509
|
-
z-index: 1;
|
|
50510
|
-
animation: 2s ease 0s infinite normal none running spin2;
|
|
50511
|
-
left: 1.1rem;
|
|
50512
|
-
}
|
|
50513
|
-
.spin span:nth-child(4) {
|
|
50514
|
-
background-color: #666;
|
|
50515
|
-
z-index: 0;
|
|
50516
|
-
animation: 2s ease 0s infinite normal none running spin3;
|
|
50517
|
-
left: 2.1rem;
|
|
50518
|
-
}
|
|
50519
|
-
@keyframes spin1 {
|
|
50520
|
-
0% {
|
|
50521
|
-
transform: scale(0);
|
|
50276
|
+
const css = (input) => input.join(``);
|
|
50277
|
+
const TOKEN_BASED = KoliBri.createTheme("token-based", {
|
|
50278
|
+
GLOBAL: css`
|
|
50279
|
+
:host {
|
|
50280
|
+
--border-radius: var(--kolibri-border-radius, 5px);
|
|
50281
|
+
--font-family: var(--kolibri-font-family, BundesSans Web, Calibri, Verdana, Arial, Helvetica, sans-serif);
|
|
50282
|
+
--font-size: var(--kolibri-font-size, 16px);
|
|
50283
|
+
--spacing: var(--kolibri-spacing, 0.25rem);
|
|
50284
|
+
--border-width: var(--kolibri-border-width, 1px);
|
|
50285
|
+
--color-primary: var(--kolibri-color-primary, #004b76);
|
|
50286
|
+
--color-primary-variant: var(--kolibri-color-primary-variant, #0077b6);
|
|
50287
|
+
--color-danger: var(--kolibri-color-danger, #c0003c);
|
|
50288
|
+
--color-warning: var(--kolibri-color-warning, #c44931);
|
|
50289
|
+
--color-success: var(--kolibri-color-success, #005c45);
|
|
50290
|
+
--color-subtle: var(--kolibri-color-subtle, #576164);
|
|
50291
|
+
--color-light: var(--kolibri-color-light, #ffffff);
|
|
50292
|
+
--color-text: var(--kolibri-color-text, #202020);
|
|
50293
|
+
--color-mute: var(--kolibri-color-mute, #f2f3f4);
|
|
50294
|
+
--color-mute-variant: var(--kolibri-color-mute-variant, #bec5c9);
|
|
50522
50295
|
}
|
|
50523
|
-
|
|
50524
|
-
|
|
50296
|
+
:host {
|
|
50297
|
+
font-family: var(--font-family);
|
|
50298
|
+
font-size: var(--font-size);
|
|
50525
50299
|
}
|
|
50526
|
-
|
|
50527
|
-
|
|
50528
|
-
0% {
|
|
50529
|
-
transform: translate(0px, 0px);
|
|
50300
|
+
* {
|
|
50301
|
+
box-sizing: border-box;
|
|
50530
50302
|
}
|
|
50531
|
-
|
|
50532
|
-
|
|
50303
|
+
*:not(i) {
|
|
50304
|
+
font-family: var(--font-family);
|
|
50533
50305
|
}
|
|
50534
|
-
|
|
50535
|
-
|
|
50536
|
-
|
|
50537
|
-
|
|
50306
|
+
h1,
|
|
50307
|
+
h2,
|
|
50308
|
+
h3,
|
|
50309
|
+
h4,
|
|
50310
|
+
h5,
|
|
50311
|
+
h6 {
|
|
50312
|
+
margin: 0;
|
|
50313
|
+
padding: 0;
|
|
50538
50314
|
}
|
|
50539
|
-
|
|
50540
|
-
|
|
50315
|
+
*[tabindex]:focus,
|
|
50316
|
+
kol-input:not(.checkbox, .radio) .input:focus-within,
|
|
50317
|
+
kol-input:is(.checkbox, .radio) input:focus,
|
|
50318
|
+
summary:focus {
|
|
50319
|
+
cursor: pointer;
|
|
50320
|
+
outline-color: var(--color-primary-variant);
|
|
50321
|
+
outline-offset: 2px;
|
|
50322
|
+
outline-style: solid;
|
|
50323
|
+
outline-width: 3px;
|
|
50324
|
+
transition: outline-offset 0.2s linear;
|
|
50541
50325
|
}
|
|
50542
|
-
|
|
50543
|
-
|
|
50544
|
-
|
|
50545
|
-
|
|
50546
|
-
|
|
50547
|
-
|
|
50548
|
-
|
|
50549
|
-
|
|
50550
|
-
|
|
50551
|
-
|
|
50552
|
-
|
|
50553
|
-
|
|
50554
|
-
|
|
50555
|
-
|
|
50556
|
-
|
|
50557
|
-
|
|
50558
|
-
|
|
50559
|
-
|
|
50560
|
-
|
|
50561
|
-
|
|
50562
|
-
|
|
50563
|
-
|
|
50564
|
-
|
|
50565
|
-
|
|
50566
|
-
|
|
50567
|
-
|
|
50568
|
-
|
|
50569
|
-
|
|
50570
|
-
|
|
50571
|
-
|
|
50572
|
-
|
|
50573
|
-
|
|
50574
|
-
|
|
50575
|
-
|
|
50576
|
-
|
|
50577
|
-
|
|
50578
|
-
|
|
50579
|
-
|
|
50580
|
-
|
|
50581
|
-
|
|
50582
|
-
|
|
50583
|
-
|
|
50584
|
-
|
|
50585
|
-
|
|
50586
|
-
|
|
50587
|
-
|
|
50588
|
-
|
|
50589
|
-
|
|
50590
|
-
|
|
50591
|
-
|
|
50592
|
-
|
|
50593
|
-
|
|
50594
|
-
|
|
50595
|
-
|
|
50596
|
-
|
|
50597
|
-
|
|
50598
|
-
|
|
50599
|
-
|
|
50600
|
-
|
|
50601
|
-
|
|
50602
|
-
|
|
50603
|
-
|
|
50604
|
-
|
|
50605
|
-
|
|
50606
|
-
|
|
50607
|
-
|
|
50608
|
-
|
|
50609
|
-
|
|
50610
|
-
|
|
50611
|
-
|
|
50612
|
-
|
|
50613
|
-
|
|
50614
|
-
|
|
50615
|
-
|
|
50616
|
-
|
|
50617
|
-
|
|
50618
|
-
|
|
50619
|
-
|
|
50620
|
-
|
|
50621
|
-
|
|
50622
|
-
|
|
50623
|
-
|
|
50624
|
-
|
|
50625
|
-
|
|
50626
|
-
|
|
50627
|
-
|
|
50628
|
-
|
|
50629
|
-
|
|
50630
|
-
|
|
50631
|
-
|
|
50632
|
-
|
|
50633
|
-
|
|
50634
|
-
|
|
50635
|
-
|
|
50636
|
-
|
|
50637
|
-
|
|
50638
|
-
|
|
50639
|
-
|
|
50640
|
-
|
|
50641
|
-
|
|
50642
|
-
|
|
50643
|
-
|
|
50644
|
-
|
|
50645
|
-
|
|
50646
|
-
|
|
50647
|
-
|
|
50648
|
-
|
|
50649
|
-
|
|
50650
|
-
|
|
50651
|
-
|
|
50652
|
-
|
|
50653
|
-
|
|
50654
|
-
|
|
50655
|
-
|
|
50656
|
-
|
|
50657
|
-
|
|
50658
|
-
|
|
50659
|
-
|
|
50660
|
-
|
|
50661
|
-
|
|
50662
|
-
|
|
50663
|
-
|
|
50664
|
-
|
|
50665
|
-
|
|
50666
|
-
|
|
50667
|
-
|
|
50668
|
-
|
|
50669
|
-
|
|
50670
|
-
|
|
50671
|
-
|
|
50672
|
-
|
|
50673
|
-
|
|
50674
|
-
|
|
50675
|
-
|
|
50676
|
-
|
|
50677
|
-
|
|
50678
|
-
|
|
50679
|
-
|
|
50680
|
-
|
|
50681
|
-
|
|
50682
|
-
|
|
50683
|
-
|
|
50684
|
-
|
|
50685
|
-
|
|
50686
|
-
|
|
50687
|
-
|
|
50688
|
-
|
|
50689
|
-
|
|
50690
|
-
|
|
50691
|
-
|
|
50692
|
-
|
|
50693
|
-
|
|
50694
|
-
|
|
50695
|
-
|
|
50696
|
-
|
|
50697
|
-
|
|
50698
|
-
|
|
50699
|
-
|
|
50700
|
-
|
|
50701
|
-
|
|
50702
|
-
|
|
50703
|
-
|
|
50704
|
-
|
|
50705
|
-
|
|
50706
|
-
|
|
50707
|
-
|
|
50708
|
-
|
|
50709
|
-
|
|
50326
|
+
kol-heading-wc {
|
|
50327
|
+
font-weight: 700;
|
|
50328
|
+
}
|
|
50329
|
+
kol-tooltip .tooltip-floating {
|
|
50330
|
+
border: var(--border-width) solid var(--color-subtle);
|
|
50331
|
+
border-radius: var(--border-radius);
|
|
50332
|
+
}
|
|
50333
|
+
kol-tooltip .tooltip-arrow {
|
|
50334
|
+
border: var(--border-width) solid var(--color-subtle);
|
|
50335
|
+
}
|
|
50336
|
+
kol-tooltip .tooltip-area {
|
|
50337
|
+
background-color: var(--color-light);
|
|
50338
|
+
}
|
|
50339
|
+
kol-tooltip .tooltip-content {
|
|
50340
|
+
border-radius: var(--border-radius);
|
|
50341
|
+
line-height: 1.5;
|
|
50342
|
+
padding: var(--spacing) calc(var(--spacing) * 1.5);
|
|
50343
|
+
}
|
|
50344
|
+
kol-span-wc,
|
|
50345
|
+
kol-span-wc > span {
|
|
50346
|
+
gap: var(--spacing);
|
|
50347
|
+
}
|
|
50348
|
+
|
|
50349
|
+
@keyframes spin {
|
|
50350
|
+
0% {
|
|
50351
|
+
transform: rotate(0deg);
|
|
50352
|
+
}
|
|
50353
|
+
100% {
|
|
50354
|
+
transform: rotate(360deg);
|
|
50355
|
+
}
|
|
50356
|
+
}
|
|
50357
|
+
`,
|
|
50358
|
+
"KOL-BUTTON": css`
|
|
50359
|
+
:is(a, button):focus {
|
|
50360
|
+
outline: none;
|
|
50361
|
+
}
|
|
50362
|
+
:is(a, button):focus kol-span-wc {
|
|
50363
|
+
outline-color: var(--color-primary-variant);
|
|
50364
|
+
outline-offset: 2px;
|
|
50365
|
+
outline-style: solid;
|
|
50366
|
+
outline-width: calc(var(--border-width) * 2);
|
|
50367
|
+
transition: outline-offset 0.2s linear;
|
|
50368
|
+
}
|
|
50369
|
+
:is(a, button) > kol-span-wc {
|
|
50370
|
+
font-weight: 700;
|
|
50371
|
+
border-radius: var(--a11y-min-size);
|
|
50372
|
+
border-style: solid;
|
|
50373
|
+
border-width: var(--border-width);
|
|
50374
|
+
min-height: var(--a11y-min-size);
|
|
50375
|
+
min-width: var(--a11y-min-size);
|
|
50376
|
+
padding: 8px 14px;
|
|
50377
|
+
text-align: center;
|
|
50378
|
+
transition-duration: 0.5s;
|
|
50379
|
+
transition-property: background-color, color, border-color;
|
|
50380
|
+
}
|
|
50381
|
+
:is(a, button):disabled > kol-span-wc {
|
|
50382
|
+
cursor: not-allowed;
|
|
50383
|
+
opacity: 0.5;
|
|
50384
|
+
}
|
|
50385
|
+
.primary :is(a, button) > kol-span-wc,
|
|
50386
|
+
.primary :is(a, button):disabled:hover > kol-span-wc {
|
|
50387
|
+
background-color: var(--color-primary);
|
|
50388
|
+
border-color: var(--color-primary);
|
|
50389
|
+
color: var(--color-light);
|
|
50390
|
+
}
|
|
50391
|
+
.secondary :is(a, button) > kol-span-wc,
|
|
50392
|
+
.secondary :is(a, button):disabled:hover > kol-span-wc,
|
|
50393
|
+
.normal :is(a, button) > kol-span-wc,
|
|
50394
|
+
.normal :is(a, button):disabled:hover > kol-span-wc {
|
|
50395
|
+
background-color: var(--color-light);
|
|
50396
|
+
border-color: var(--color-primary);
|
|
50397
|
+
color: var(--color-primary);
|
|
50398
|
+
}
|
|
50399
|
+
.danger :is(a, button) > kol-span-wc,
|
|
50400
|
+
.danger :is(a, button):disabled:hover > kol-span-wc {
|
|
50401
|
+
background-color: var(--color-danger);
|
|
50402
|
+
border-color: var(--color-danger);
|
|
50403
|
+
color: var(--color-light);
|
|
50404
|
+
}
|
|
50405
|
+
.ghost :is(a, button) > kol-span-wc,
|
|
50406
|
+
.ghost :is(a, button):disabled:hover > kol-span-wc {
|
|
50407
|
+
border-color: var(--color-light);
|
|
50408
|
+
background-color: var(--color-light);
|
|
50409
|
+
box-shadow: none;
|
|
50410
|
+
color: var(--color-primary);
|
|
50411
|
+
} /*-----------*/
|
|
50412
|
+
.primary :is(a, button):active > kol-span-wc,
|
|
50413
|
+
.primary :is(a, button):hover > kol-span-wc,
|
|
50414
|
+
.secondary :is(a, button):active > kol-span-wc,
|
|
50415
|
+
.secondary :is(a, button):hover > kol-span-wc,
|
|
50416
|
+
.normal :is(a, button):active > kol-span-wc,
|
|
50417
|
+
.normal :is(a, button):hover > kol-span-wc,
|
|
50418
|
+
.danger :is(a, button):active > kol-span-wc,
|
|
50419
|
+
.danger :is(a, button):hover > kol-span-wc,
|
|
50420
|
+
.ghost :is(a, button):active > kol-span-wc,
|
|
50421
|
+
.ghost :is(a, button):hover > kol-span-wc {
|
|
50422
|
+
background-color: var(--color-primary-variant);
|
|
50423
|
+
border-color: var(--color-primary-variant);
|
|
50424
|
+
box-shadow: 0 2px 8px 2px rgba(8, 35, 48, 0.24);
|
|
50425
|
+
color: var(--color-light);
|
|
50426
|
+
}
|
|
50427
|
+
.danger :is(a, button):active > kol-span-wc,
|
|
50428
|
+
.danger :is(a, button):hover > kol-span-wc {
|
|
50429
|
+
background-color: var(--color-danger);
|
|
50430
|
+
border-color: var(--color-danger);
|
|
50431
|
+
}
|
|
50432
|
+
:is(a, button):disabled:hover > kol-span-wc,
|
|
50433
|
+
:is(a, button):focus:hover > kol-span-wc {
|
|
50434
|
+
box-shadow: none;
|
|
50435
|
+
}
|
|
50436
|
+
.primary :is(a, button):active > kol-span-wc,
|
|
50437
|
+
.secondary :is(a, button):active > kol-span-wc,
|
|
50438
|
+
.normal :is(a, button):active > kol-span-wc,
|
|
50439
|
+
.danger :is(a, button):active > kol-span-wc,
|
|
50440
|
+
.ghost :is(a, button):active > kol-span-wc {
|
|
50441
|
+
border-color: var(--color-light);
|
|
50442
|
+
box-shadow: none;
|
|
50443
|
+
outline: none;
|
|
50444
|
+
}
|
|
50445
|
+
:is(a, button).hide-label > kol-span-wc {
|
|
50446
|
+
padding: calc(var(--spacing) * 2);
|
|
50447
|
+
width: unset;
|
|
50448
|
+
}
|
|
50449
|
+
:is(a, button).hide-label > kol-span-wc > span > span {
|
|
50450
|
+
display: none;
|
|
50451
|
+
}
|
|
50452
|
+
:is(a, button).loading > kol-span-wc kol-icon {
|
|
50453
|
+
animation: spin 5s infinite linear;
|
|
50454
|
+
}
|
|
50455
|
+
/** small ghost button */
|
|
50456
|
+
.ghost :is(a, button).small > kol-span-wc {
|
|
50457
|
+
border: none;
|
|
50458
|
+
background-color: transparent;
|
|
50459
|
+
box-shadow: none;
|
|
50460
|
+
}
|
|
50461
|
+
.ghost :is(a, button).small > kol-span-wc > span {
|
|
50462
|
+
border-radius: 1.5em;
|
|
50463
|
+
border-style: solid;
|
|
50464
|
+
border-width: var(--border-width);
|
|
50465
|
+
border-color: var(--color-light);
|
|
50466
|
+
background-color: var(--color-light);
|
|
50467
|
+
}
|
|
50468
|
+
.ghost :is(a, button).small:active > kol-span-wc > span,
|
|
50469
|
+
.ghost :is(a, button).small:hover > kol-span-wc > span,
|
|
50470
|
+
.ghost :is(a, button).small.transparent:active > kol-span-wc > span,
|
|
50471
|
+
.ghost :is(a, button).small.transparent:hover > kol-span-wc > span {
|
|
50472
|
+
background-color: var(--color-primary-variant);
|
|
50473
|
+
border-color: var(--color-primary-variant);
|
|
50474
|
+
box-shadow: 0 2px 8px 2px rgba(8, 35, 48, 0.24);
|
|
50475
|
+
color: var(--color-light);
|
|
50476
|
+
} /** :is(a,button) with transparent background */
|
|
50477
|
+
:is(a, button).transparent > kol-span-wc > span,
|
|
50478
|
+
.ghost :is(a, button).small.transparent > kol-span-wc > span,
|
|
50479
|
+
:is(a, button).transparent > kol-span-wc {
|
|
50480
|
+
background-color: transparent;
|
|
50481
|
+
border-color: transparent;
|
|
50482
|
+
}
|
|
50483
|
+
`,
|
|
50484
|
+
"KOL-INPUT-TEXT": css`
|
|
50485
|
+
kol-input {
|
|
50486
|
+
gap: var(--spacing);
|
|
50487
|
+
}
|
|
50488
|
+
kol-input .error {
|
|
50489
|
+
order: 1;
|
|
50490
|
+
}
|
|
50491
|
+
kol-input label {
|
|
50492
|
+
order: 2;
|
|
50493
|
+
}
|
|
50494
|
+
kol-input .input {
|
|
50495
|
+
order: 3;
|
|
50496
|
+
}
|
|
50497
|
+
kol-input .hint {
|
|
50498
|
+
order: 4;
|
|
50499
|
+
font-size: 0.9rem;
|
|
50500
|
+
font-style: italic;
|
|
50501
|
+
}
|
|
50502
|
+
input {
|
|
50503
|
+
border: none;
|
|
50504
|
+
}
|
|
50505
|
+
input::placeholder {
|
|
50506
|
+
color: var(--color-subtle);
|
|
50507
|
+
}
|
|
50508
|
+
.input {
|
|
50509
|
+
background-color: var(--color-light);
|
|
50510
|
+
border-color: var(--color-subtle);
|
|
50511
|
+
border-radius: var(--border-radius);
|
|
50512
|
+
border-style: solid;
|
|
50513
|
+
border-width: 2px;
|
|
50514
|
+
padding: 0 calc(var(--spacing) * 2);
|
|
50515
|
+
}
|
|
50516
|
+
.input > kol-icon {
|
|
50517
|
+
width: 1rem;
|
|
50518
|
+
}
|
|
50519
|
+
.input:is(.icon-left, .icon-right) {
|
|
50520
|
+
padding-left: calc(var(--spacing) * 4);
|
|
50521
|
+
padding-right: calc(var(--spacing) * 4);
|
|
50522
|
+
}
|
|
50523
|
+
.input:is(.icon-left, .icon-right) input {
|
|
50524
|
+
padding-left: calc(var(--spacing) * 2);
|
|
50525
|
+
padding-right: calc(var(--spacing) * 2);
|
|
50526
|
+
}
|
|
50527
|
+
.input > input:first-child {
|
|
50528
|
+
padding-left: var(--spacing);
|
|
50529
|
+
}
|
|
50530
|
+
.input > input:last-child {
|
|
50531
|
+
padding-right: var(--spacing);
|
|
50532
|
+
}
|
|
50533
|
+
.input:hover {
|
|
50534
|
+
border-color: var(--color-primary);
|
|
50535
|
+
}
|
|
50536
|
+
input:read-only,
|
|
50537
|
+
input:disabled {
|
|
50538
|
+
cursor: not-allowed;
|
|
50539
|
+
}
|
|
50540
|
+
.required label > span::after {
|
|
50541
|
+
content: '*';
|
|
50542
|
+
padding-left: 0.125em;
|
|
50543
|
+
}
|
|
50544
|
+
kol-input.error {
|
|
50545
|
+
border-left: 3px solid var(--color-danger);
|
|
50546
|
+
padding-left: calc(var(--spacing) * 2);
|
|
50547
|
+
}
|
|
50548
|
+
kol-input.error .input:focus-within {
|
|
50549
|
+
outline-color: var(--color-danger) !important;
|
|
50550
|
+
}
|
|
50551
|
+
kol-input.error kol-alert.error {
|
|
50552
|
+
color: var(--color-danger);
|
|
50553
|
+
font-weight: 700;
|
|
50554
|
+
}
|
|
50555
|
+
kol-input.disabled :is(input, label) {
|
|
50556
|
+
opacity: 1;
|
|
50557
|
+
}
|
|
50558
|
+
kol-input.disabled :is(input, .input) {
|
|
50559
|
+
background-color: var(--color-mute);
|
|
50560
|
+
border-color: var(--color-mute-variant);
|
|
50561
|
+
}
|
|
50562
|
+
`,
|
|
50563
|
+
"KOL-INPUT-PASSWORD": css`
|
|
50564
|
+
kol-input {
|
|
50565
|
+
gap: var(--spacing);
|
|
50566
|
+
}
|
|
50567
|
+
kol-input .error {
|
|
50568
|
+
order: 1;
|
|
50569
|
+
}
|
|
50570
|
+
kol-input label {
|
|
50571
|
+
order: 2;
|
|
50572
|
+
}
|
|
50573
|
+
kol-input .input {
|
|
50574
|
+
order: 3;
|
|
50575
|
+
}
|
|
50576
|
+
kol-input .hint {
|
|
50577
|
+
order: 4;
|
|
50578
|
+
font-size: 0.9rem;
|
|
50579
|
+
font-style: italic;
|
|
50580
|
+
}
|
|
50581
|
+
input {
|
|
50582
|
+
border: none;
|
|
50583
|
+
}
|
|
50584
|
+
input::placeholder {
|
|
50585
|
+
color: var(--color-subtle);
|
|
50586
|
+
}
|
|
50587
|
+
.input {
|
|
50588
|
+
background-color: var(--color-light);
|
|
50589
|
+
border-color: var(--color-subtle);
|
|
50590
|
+
border-radius: var(--border-radius);
|
|
50591
|
+
border-style: solid;
|
|
50592
|
+
border-width: 2px;
|
|
50593
|
+
padding: 0 calc(var(--spacing) * 2);
|
|
50594
|
+
}
|
|
50595
|
+
.input > kol-icon {
|
|
50596
|
+
width: 1rem;
|
|
50597
|
+
}
|
|
50598
|
+
.input:is(.icon-left, .icon-right) {
|
|
50599
|
+
padding-left: calc(var(--spacing) * 4);
|
|
50600
|
+
padding-right: calc(var(--spacing) * 4);
|
|
50601
|
+
}
|
|
50602
|
+
.input:is(.icon-left, .icon-right) input {
|
|
50603
|
+
padding-left: calc(var(--spacing) * 2);
|
|
50604
|
+
padding-right: calc(var(--spacing) * 2);
|
|
50605
|
+
}
|
|
50606
|
+
.input > input:first-child {
|
|
50607
|
+
padding-left: var(--spacing);
|
|
50608
|
+
}
|
|
50609
|
+
.input > input:last-child {
|
|
50610
|
+
padding-right: var(--spacing);
|
|
50611
|
+
}
|
|
50612
|
+
.input:hover {
|
|
50613
|
+
border-color: var(--color-primary);
|
|
50614
|
+
}
|
|
50615
|
+
input:read-only,
|
|
50616
|
+
input:disabled {
|
|
50617
|
+
cursor: not-allowed;
|
|
50618
|
+
}
|
|
50619
|
+
.required label > span::after {
|
|
50620
|
+
content: '*';
|
|
50621
|
+
padding-left: 0.125em;
|
|
50622
|
+
}
|
|
50623
|
+
kol-input.error {
|
|
50624
|
+
border-left: 3px solid var(--color-danger);
|
|
50625
|
+
padding-left: calc(var(--spacing) * 2);
|
|
50626
|
+
}
|
|
50627
|
+
kol-input.error .input:focus-within {
|
|
50628
|
+
outline-color: var(--color-danger) !important;
|
|
50629
|
+
}
|
|
50630
|
+
kol-input.error kol-alert.error {
|
|
50631
|
+
color: var(--color-danger);
|
|
50632
|
+
font-weight: 700;
|
|
50633
|
+
}
|
|
50634
|
+
kol-input.disabled :is(button, input, label, option, select, textarea) {
|
|
50635
|
+
opacity: 1;
|
|
50636
|
+
}
|
|
50637
|
+
kol-input.disabled :is(input, select, textarea, .input) {
|
|
50638
|
+
background-color: var(--color-mute);
|
|
50639
|
+
border-color: var(--color-mute-variant);
|
|
50640
|
+
color: var(--color-text);
|
|
50641
|
+
}
|
|
50642
|
+
`,
|
|
50643
|
+
"KOL-INPUT-NUMBER": css`
|
|
50644
|
+
kol-input {
|
|
50645
|
+
gap: var(--spacing);
|
|
50646
|
+
}
|
|
50647
|
+
kol-input .error {
|
|
50648
|
+
order: 1;
|
|
50649
|
+
}
|
|
50650
|
+
kol-input label {
|
|
50651
|
+
order: 2;
|
|
50652
|
+
}
|
|
50653
|
+
kol-input .input {
|
|
50654
|
+
order: 3;
|
|
50655
|
+
}
|
|
50656
|
+
kol-input .hint {
|
|
50657
|
+
order: 4;
|
|
50658
|
+
font-size: 0.9rem;
|
|
50659
|
+
font-style: italic;
|
|
50660
|
+
}
|
|
50661
|
+
input {
|
|
50662
|
+
border: none;
|
|
50663
|
+
}
|
|
50664
|
+
input::placeholder {
|
|
50665
|
+
color: var(--color-subtle);
|
|
50666
|
+
}
|
|
50667
|
+
.input {
|
|
50668
|
+
background-color: var(--color-light);
|
|
50669
|
+
border-color: var(--color-subtle);
|
|
50670
|
+
border-radius: var(--border-radius);
|
|
50671
|
+
border-style: solid;
|
|
50672
|
+
border-width: 2px;
|
|
50673
|
+
padding: 0 calc(var(--spacing) * 2);
|
|
50674
|
+
}
|
|
50675
|
+
.input > kol-icon {
|
|
50676
|
+
width: 1rem;
|
|
50677
|
+
}
|
|
50678
|
+
.input:is(.icon-left, .icon-right) {
|
|
50679
|
+
padding-left: calc(var(--spacing) * 4);
|
|
50680
|
+
padding-right: calc(var(--spacing) * 4);
|
|
50681
|
+
}
|
|
50682
|
+
.input:is(.icon-left, .icon-right) input {
|
|
50683
|
+
padding-left: calc(var(--spacing) * 2);
|
|
50684
|
+
padding-right: calc(var(--spacing) * 2);
|
|
50685
|
+
}
|
|
50686
|
+
.input > input:first-child {
|
|
50687
|
+
padding-left: var(--spacing);
|
|
50688
|
+
}
|
|
50689
|
+
.input > input:last-child {
|
|
50690
|
+
padding-right: var(--spacing);
|
|
50691
|
+
}
|
|
50692
|
+
.input:hover {
|
|
50693
|
+
border-color: var(--color-primary);
|
|
50694
|
+
}
|
|
50695
|
+
input:read-only,
|
|
50696
|
+
input:disabled {
|
|
50697
|
+
cursor: not-allowed;
|
|
50698
|
+
}
|
|
50699
|
+
.required label > span::after {
|
|
50700
|
+
content: '*';
|
|
50701
|
+
padding-left: 0.125em;
|
|
50702
|
+
}
|
|
50703
|
+
kol-input.error {
|
|
50704
|
+
border-left: 3px solid var(--color-danger);
|
|
50705
|
+
padding-left: calc(var(--spacing) * 2);
|
|
50706
|
+
}
|
|
50707
|
+
kol-input.error .input:focus-within {
|
|
50708
|
+
outline-color: var(--color-danger) !important;
|
|
50709
|
+
}
|
|
50710
|
+
kol-input.error kol-alert.error {
|
|
50711
|
+
color: var(--color-danger);
|
|
50712
|
+
font-weight: 700;
|
|
50713
|
+
}
|
|
50714
|
+
kol-input.disabled :is(input, label) {
|
|
50715
|
+
opacity: 1;
|
|
50716
|
+
}
|
|
50717
|
+
kol-input.disabled :is(input, .input) {
|
|
50718
|
+
background-color: var(--color-mute);
|
|
50719
|
+
border-color: var(--color-mute-variant);
|
|
50720
|
+
color: var(--color-text);
|
|
50721
|
+
}
|
|
50722
|
+
`,
|
|
50723
|
+
"KOL-INPUT-DATE": css`
|
|
50724
|
+
kol-input {
|
|
50725
|
+
gap: var(--spacing);
|
|
50726
|
+
}
|
|
50727
|
+
kol-input .error {
|
|
50728
|
+
order: 1;
|
|
50729
|
+
}
|
|
50730
|
+
kol-input label {
|
|
50731
|
+
order: 2;
|
|
50732
|
+
}
|
|
50733
|
+
kol-input .input {
|
|
50734
|
+
order: 3;
|
|
50735
|
+
}
|
|
50736
|
+
kol-input .hint {
|
|
50737
|
+
order: 4;
|
|
50738
|
+
font-size: 0.9rem;
|
|
50739
|
+
font-style: italic;
|
|
50740
|
+
}
|
|
50741
|
+
input {
|
|
50742
|
+
border: none;
|
|
50743
|
+
}
|
|
50744
|
+
input::placeholder {
|
|
50745
|
+
color: var(--color-subtle);
|
|
50746
|
+
}
|
|
50747
|
+
.input {
|
|
50748
|
+
background-color: var(--color-light);
|
|
50749
|
+
border-color: var(--color-subtle);
|
|
50750
|
+
border-radius: var(--border-radius);
|
|
50751
|
+
border-style: solid;
|
|
50752
|
+
border-width: 2px;
|
|
50753
|
+
padding: 0 calc(var(--spacing) * 2);
|
|
50754
|
+
}
|
|
50755
|
+
.input > kol-icon {
|
|
50756
|
+
width: 1rem;
|
|
50757
|
+
}
|
|
50758
|
+
.input:is(.icon-left, .icon-right) {
|
|
50759
|
+
padding-left: calc(var(--spacing) * 4);
|
|
50760
|
+
padding-right: calc(var(--spacing) * 4);
|
|
50761
|
+
}
|
|
50762
|
+
.input:is(.icon-left, .icon-right) input {
|
|
50763
|
+
padding-left: calc(var(--spacing) * 2);
|
|
50764
|
+
padding-right: calc(var(--spacing) * 2);
|
|
50765
|
+
}
|
|
50766
|
+
.input > input:first-child {
|
|
50767
|
+
padding-left: var(--spacing);
|
|
50768
|
+
}
|
|
50769
|
+
.input > input:last-child {
|
|
50770
|
+
padding-right: var(--spacing);
|
|
50771
|
+
}
|
|
50772
|
+
.input:hover {
|
|
50773
|
+
border-color: var(--color-primary);
|
|
50774
|
+
}
|
|
50775
|
+
input:disabled {
|
|
50776
|
+
cursor: not-allowed;
|
|
50777
|
+
}
|
|
50778
|
+
.required label > span::after {
|
|
50779
|
+
content: '*';
|
|
50780
|
+
padding-left: 0.125em;
|
|
50781
|
+
}
|
|
50782
|
+
kol-input.error {
|
|
50783
|
+
border-left: 3px solid var(--color-danger);
|
|
50784
|
+
padding-left: calc(var(--spacing) * 2);
|
|
50785
|
+
}
|
|
50786
|
+
kol-input.error .input:focus-within {
|
|
50787
|
+
outline-color: var(--color-danger) !important;
|
|
50788
|
+
}
|
|
50789
|
+
kol-input.error kol-alert.error {
|
|
50790
|
+
color: var(--color-danger);
|
|
50791
|
+
font-weight: 700;
|
|
50792
|
+
}
|
|
50793
|
+
kol-input.disabled :is(input, label) {
|
|
50794
|
+
opacity: 1;
|
|
50795
|
+
}
|
|
50796
|
+
kol-input.disabled :is(input, .input) {
|
|
50797
|
+
background-color: var(--color-mute);
|
|
50798
|
+
border-color: var(--color-mute-variant);
|
|
50799
|
+
color: var(--color-text);
|
|
50800
|
+
}
|
|
50801
|
+
`,
|
|
50802
|
+
"KOL-INPUT-EMAIL": css`
|
|
50803
|
+
kol-input {
|
|
50804
|
+
gap: var(--spacing);
|
|
50805
|
+
}
|
|
50806
|
+
kol-input .error {
|
|
50807
|
+
order: 1;
|
|
50808
|
+
}
|
|
50809
|
+
kol-input label {
|
|
50810
|
+
order: 2;
|
|
50811
|
+
}
|
|
50812
|
+
kol-input .input {
|
|
50813
|
+
order: 3;
|
|
50814
|
+
}
|
|
50815
|
+
kol-input .hint {
|
|
50816
|
+
order: 4;
|
|
50817
|
+
font-size: 0.9rem;
|
|
50818
|
+
font-style: italic;
|
|
50819
|
+
}
|
|
50820
|
+
input {
|
|
50821
|
+
border: none;
|
|
50822
|
+
}
|
|
50823
|
+
input::placeholder {
|
|
50824
|
+
color: var(--color-subtle);
|
|
50825
|
+
}
|
|
50826
|
+
.input {
|
|
50827
|
+
background-color: var(--color-light);
|
|
50828
|
+
border-color: var(--color-subtle);
|
|
50829
|
+
border-radius: var(--border-radius);
|
|
50830
|
+
border-style: solid;
|
|
50831
|
+
border-width: 2px;
|
|
50832
|
+
padding: 0 calc(var(--spacing) * 2);
|
|
50833
|
+
}
|
|
50834
|
+
.input > kol-icon {
|
|
50835
|
+
width: 1rem;
|
|
50836
|
+
}
|
|
50837
|
+
.input:is(.icon-left, .icon-right) {
|
|
50838
|
+
padding-left: calc(var(--spacing) * 4);
|
|
50839
|
+
padding-right: calc(var(--spacing) * 4);
|
|
50840
|
+
}
|
|
50841
|
+
.input:is(.icon-left, .icon-right) input {
|
|
50842
|
+
padding-left: calc(var(--spacing) * 2);
|
|
50843
|
+
padding-right: calc(var(--spacing) * 2);
|
|
50844
|
+
}
|
|
50845
|
+
.input > input:first-child {
|
|
50846
|
+
padding-left: var(--spacing);
|
|
50847
|
+
}
|
|
50848
|
+
.input > input:last-child {
|
|
50849
|
+
padding-right: var(--spacing);
|
|
50850
|
+
}
|
|
50851
|
+
.input:hover {
|
|
50852
|
+
border-color: var(--color-primary);
|
|
50853
|
+
}
|
|
50854
|
+
input:read-only,
|
|
50855
|
+
input:disabled {
|
|
50856
|
+
cursor: not-allowed;
|
|
50857
|
+
}
|
|
50858
|
+
.required label > span::after {
|
|
50859
|
+
content: '*';
|
|
50860
|
+
padding-left: 0.125em;
|
|
50861
|
+
}
|
|
50862
|
+
kol-input.error {
|
|
50863
|
+
border-left: 3px solid var(--color-danger);
|
|
50864
|
+
padding-left: calc(var(--spacing) * 2);
|
|
50865
|
+
}
|
|
50866
|
+
kol-input.error .input:focus-within {
|
|
50867
|
+
outline-color: var(--color-danger) !important;
|
|
50868
|
+
}
|
|
50869
|
+
kol-input.error kol-alert.error {
|
|
50870
|
+
color: var(--color-danger);
|
|
50871
|
+
font-weight: 700;
|
|
50872
|
+
}
|
|
50873
|
+
kol-input.disabled :is(input, label) {
|
|
50874
|
+
opacity: 1;
|
|
50875
|
+
}
|
|
50876
|
+
kol-input.disabled :is(input, .input) {
|
|
50877
|
+
background-color: var(--color-mute);
|
|
50878
|
+
border-color: var(--color-mute-variant);
|
|
50879
|
+
color: var(--color-text);
|
|
50880
|
+
}
|
|
50881
|
+
`,
|
|
50882
|
+
"KOL-INPUT-FILE": css`
|
|
50883
|
+
kol-input {
|
|
50884
|
+
gap: var(--spacing);
|
|
50885
|
+
}
|
|
50886
|
+
kol-input .error {
|
|
50887
|
+
order: 1;
|
|
50888
|
+
}
|
|
50889
|
+
kol-input label {
|
|
50890
|
+
order: 2;
|
|
50891
|
+
}
|
|
50892
|
+
kol-input .input {
|
|
50893
|
+
order: 3;
|
|
50894
|
+
}
|
|
50895
|
+
kol-input .hint {
|
|
50896
|
+
order: 4;
|
|
50897
|
+
font-size: 0.9rem;
|
|
50898
|
+
font-style: italic;
|
|
50899
|
+
}
|
|
50900
|
+
kol-input .input input[type='file'] {
|
|
50901
|
+
padding-top: calc(0.5em + 2px);
|
|
50902
|
+
}
|
|
50903
|
+
input {
|
|
50904
|
+
border: none;
|
|
50905
|
+
}
|
|
50906
|
+
input[type='file'] {
|
|
50907
|
+
background-color: transparent;
|
|
50908
|
+
}
|
|
50909
|
+
input::placeholder {
|
|
50910
|
+
color: var(--color-subtle);
|
|
50911
|
+
}
|
|
50912
|
+
.input {
|
|
50913
|
+
background-color: var(--color-light);
|
|
50914
|
+
border-color: var(--color-subtle);
|
|
50915
|
+
border-radius: var(--border-radius);
|
|
50916
|
+
border-style: solid;
|
|
50917
|
+
border-width: 2px;
|
|
50918
|
+
padding: 0 calc(var(--spacing) * 2);
|
|
50919
|
+
}
|
|
50920
|
+
.input > kol-icon {
|
|
50921
|
+
width: 1rem;
|
|
50922
|
+
}
|
|
50923
|
+
.input:is(.icon-left, .icon-right) {
|
|
50924
|
+
padding-left: calc(var(--spacing) * 4);
|
|
50925
|
+
padding-right: calc(var(--spacing) * 4);
|
|
50926
|
+
}
|
|
50927
|
+
.input:is(.icon-left, .icon-right) input {
|
|
50928
|
+
padding-left: calc(var(--spacing) * 2);
|
|
50929
|
+
padding-right: calc(var(--spacing) * 2);
|
|
50930
|
+
}
|
|
50931
|
+
.input > input:first-child {
|
|
50932
|
+
padding-left: var(--spacing);
|
|
50933
|
+
}
|
|
50934
|
+
.input > input:last-child {
|
|
50935
|
+
padding-right: var(--spacing);
|
|
50936
|
+
}
|
|
50937
|
+
.input:hover {
|
|
50938
|
+
border-color: var(--color-primary);
|
|
50939
|
+
}
|
|
50940
|
+
input:read-only,
|
|
50941
|
+
input:disabled {
|
|
50942
|
+
cursor: not-allowed;
|
|
50943
|
+
}
|
|
50944
|
+
.required label > span::after {
|
|
50945
|
+
content: '*';
|
|
50946
|
+
padding-left: 0.125em;
|
|
50947
|
+
}
|
|
50948
|
+
kol-input.error {
|
|
50949
|
+
border-left: 3px solid var(--color-danger);
|
|
50950
|
+
padding-left: calc(var(--spacing) * 2);
|
|
50951
|
+
}
|
|
50952
|
+
kol-input.error .input:focus-within {
|
|
50953
|
+
outline-color: var(--color-danger) !important;
|
|
50954
|
+
}
|
|
50955
|
+
kol-input.error kol-alert.error {
|
|
50956
|
+
color: var(--color-danger);
|
|
50957
|
+
font-weight: 700;
|
|
50958
|
+
}
|
|
50959
|
+
kol-input.disabled :is(button, input, label, option, select, textarea) {
|
|
50960
|
+
opacity: 1;
|
|
50961
|
+
}
|
|
50962
|
+
kol-input.disabled :is(input, select, textarea, .input) {
|
|
50963
|
+
background-color: var(--color-mute);
|
|
50964
|
+
border-color: var(--color-mute-variant);
|
|
50965
|
+
color: var(--color-text);
|
|
50966
|
+
}
|
|
50967
|
+
`,
|
|
50968
|
+
"KOL-TEXTAREA": css`
|
|
50969
|
+
kol-input {
|
|
50970
|
+
gap: var(--spacing);
|
|
50971
|
+
}
|
|
50972
|
+
kol-input .error {
|
|
50973
|
+
order: 1;
|
|
50974
|
+
}
|
|
50975
|
+
kol-input label {
|
|
50976
|
+
order: 2;
|
|
50977
|
+
}
|
|
50978
|
+
kol-input .input {
|
|
50979
|
+
order: 3;
|
|
50980
|
+
}
|
|
50981
|
+
kol-input .hint {
|
|
50982
|
+
order: 4;
|
|
50983
|
+
font-size: 0.9rem;
|
|
50984
|
+
font-style: italic;
|
|
50985
|
+
}
|
|
50986
|
+
textarea {
|
|
50987
|
+
border: none;
|
|
50988
|
+
}
|
|
50989
|
+
input::placeholder {
|
|
50990
|
+
color: var(--color-subtle);
|
|
50991
|
+
}
|
|
50992
|
+
.input {
|
|
50993
|
+
background-color: var(--color-light);
|
|
50994
|
+
border-color: var(--color-subtle);
|
|
50995
|
+
border-radius: var(--border-radius);
|
|
50996
|
+
border-style: solid;
|
|
50997
|
+
border-width: 2px;
|
|
50998
|
+
padding: 0 calc(var(--spacing) * 2);
|
|
50999
|
+
}
|
|
51000
|
+
.input > kol-icon {
|
|
51001
|
+
width: 1rem;
|
|
51002
|
+
}
|
|
51003
|
+
.input:is(.icon-left, .icon-right) {
|
|
51004
|
+
padding-left: calc(var(--spacing) * 4);
|
|
51005
|
+
padding-right: calc(var(--spacing) * 4);
|
|
51006
|
+
}
|
|
51007
|
+
.input:is(.icon-left, .icon-right) input {
|
|
51008
|
+
padding-left: calc(var(--spacing) * 2);
|
|
51009
|
+
padding-right: calc(var(--spacing) * 2);
|
|
51010
|
+
}
|
|
51011
|
+
.input > input:first-child {
|
|
51012
|
+
padding-left: var(--spacing);
|
|
51013
|
+
}
|
|
51014
|
+
.input > input:last-child {
|
|
51015
|
+
padding-right: var(--spacing);
|
|
51016
|
+
}
|
|
51017
|
+
.input:hover {
|
|
51018
|
+
border-color: var(--color-primary);
|
|
51019
|
+
}
|
|
51020
|
+
textarea:read-only,
|
|
51021
|
+
textarea:disabled {
|
|
51022
|
+
cursor: not-allowed;
|
|
51023
|
+
}
|
|
51024
|
+
.required label > span::after {
|
|
51025
|
+
content: '*';
|
|
51026
|
+
padding-left: 0.125em;
|
|
51027
|
+
}
|
|
51028
|
+
kol-input.error {
|
|
51029
|
+
border-left: 3px solid var(--color-danger);
|
|
51030
|
+
padding-left: calc(var(--spacing) * 2);
|
|
51031
|
+
}
|
|
51032
|
+
kol-input.error .input:focus-within {
|
|
51033
|
+
outline-color: var(--color-danger) !important;
|
|
51034
|
+
}
|
|
51035
|
+
kol-input.error kol-alert.error {
|
|
51036
|
+
color: var(--color-danger);
|
|
51037
|
+
font-weight: 700;
|
|
51038
|
+
}
|
|
51039
|
+
.disabled {
|
|
51040
|
+
opacity: 0.33;
|
|
51041
|
+
}
|
|
51042
|
+
select[multiple],
|
|
51043
|
+
textarea {
|
|
51044
|
+
overflow: auto;
|
|
51045
|
+
}
|
|
51046
|
+
textarea {
|
|
51047
|
+
display: block;
|
|
51048
|
+
}
|
|
51049
|
+
.input {
|
|
51050
|
+
position: relative;
|
|
51051
|
+
}
|
|
51052
|
+
`,
|
|
51053
|
+
"KOL-ALERT": css`
|
|
51054
|
+
.msg {
|
|
51055
|
+
border-width: 0;
|
|
51056
|
+
}
|
|
51057
|
+
kol-alert-wc {
|
|
51058
|
+
border-width: var(--border-width);
|
|
51059
|
+
border-style: solid;
|
|
51060
|
+
border-radius: var(--border-radius);
|
|
51061
|
+
display: flex;
|
|
51062
|
+
width: 100%;
|
|
51063
|
+
overflow: unset;
|
|
51064
|
+
border-color: transparent;
|
|
51065
|
+
background-color: var(--color-light);
|
|
51066
|
+
}
|
|
51067
|
+
kol-alert-wc > .heading {
|
|
51068
|
+
display: flex;
|
|
51069
|
+
gap: calc(var(--spacing) * 2);
|
|
51070
|
+
place-items: center;
|
|
51071
|
+
}
|
|
51072
|
+
kol-alert-wc > .heading > div {
|
|
51073
|
+
display: grid;
|
|
51074
|
+
gap: var(--spacing);
|
|
51075
|
+
}
|
|
51076
|
+
.msg > .heading > kol-icon {
|
|
51077
|
+
place-self: baseline;
|
|
51078
|
+
}
|
|
51079
|
+
kol-alert-wc > .heading > div {
|
|
51080
|
+
display: grid;
|
|
51081
|
+
gap: var(--spacing);
|
|
51082
|
+
}
|
|
51083
|
+
kol-alert-wc > .heading > kol-button-wc.close {
|
|
51084
|
+
place-self: center;
|
|
51085
|
+
}
|
|
51086
|
+
.msg {
|
|
51087
|
+
align-items: start;
|
|
51088
|
+
}
|
|
51089
|
+
.default {
|
|
51090
|
+
border-color: var(--color-subtle);
|
|
51091
|
+
}
|
|
51092
|
+
.default.msg .heading-icon {
|
|
51093
|
+
color: var(--color-subtle);
|
|
51094
|
+
}
|
|
51095
|
+
.error {
|
|
51096
|
+
border-color: var(--color-danger);
|
|
51097
|
+
}
|
|
51098
|
+
.error.msg .heading-icon {
|
|
51099
|
+
color: var(--color-danger);
|
|
51100
|
+
}
|
|
51101
|
+
.info {
|
|
51102
|
+
border-color: var(--color-primary);
|
|
51103
|
+
}
|
|
51104
|
+
.info.msg .heading-icon {
|
|
51105
|
+
color: var(--color-primary);
|
|
51106
|
+
}
|
|
51107
|
+
.success {
|
|
51108
|
+
border-color: var(--color-success);
|
|
51109
|
+
}
|
|
51110
|
+
.success.msg .heading-icon {
|
|
51111
|
+
color: var(--color-success);
|
|
51112
|
+
}
|
|
51113
|
+
.warning {
|
|
51114
|
+
border-color: var(--color-warning);
|
|
51115
|
+
}
|
|
51116
|
+
.warning.msg .heading-icon {
|
|
51117
|
+
color: var(--color-warning);
|
|
51118
|
+
}
|
|
51119
|
+
.heading-icon {
|
|
51120
|
+
color: var(--color-light);
|
|
51121
|
+
}
|
|
51122
|
+
kol-alert-wc .heading .heading-icon {
|
|
51123
|
+
padding: 0;
|
|
51124
|
+
}
|
|
51125
|
+
.msg > .heading > .heading-icon {
|
|
51126
|
+
padding-top: 0;
|
|
51127
|
+
place-items: baseline;
|
|
51128
|
+
}
|
|
51129
|
+
.msg > .heading > div > kol-heading-wc {
|
|
51130
|
+
padding-top: calc(--var-spacing / 2);
|
|
51131
|
+
}
|
|
51132
|
+
.msg.default .heading > div > kol-heading-wc {
|
|
51133
|
+
color: var(--color-subtle);
|
|
51134
|
+
}
|
|
51135
|
+
.msg.error .heading > div > kol-heading-wc {
|
|
51136
|
+
color: var(--color-danger);
|
|
51137
|
+
}
|
|
51138
|
+
.msg.info .heading > div > kol-heading-wc {
|
|
51139
|
+
color: var(--color-primary);
|
|
51140
|
+
}
|
|
51141
|
+
.msg.success .heading > div > kol-heading-wc {
|
|
51142
|
+
color: var(--color-success);
|
|
51143
|
+
}
|
|
51144
|
+
.msg.warning .heading > div > kol-heading-wc {
|
|
51145
|
+
color: var(--color-warning);
|
|
51146
|
+
}
|
|
51147
|
+
.msg.default .close .icon {
|
|
51148
|
+
color: var(--color-subtle);
|
|
51149
|
+
}
|
|
51150
|
+
.msg.error .close .icon {
|
|
51151
|
+
color: var(--color-danger);
|
|
51152
|
+
}
|
|
51153
|
+
.msg.info .close .icon {
|
|
51154
|
+
color: var(--color-primary);
|
|
51155
|
+
}
|
|
51156
|
+
.msg.success .close .icon {
|
|
51157
|
+
color: var(--color-success);
|
|
51158
|
+
}
|
|
51159
|
+
.msg.warning .close .icon {
|
|
51160
|
+
color: var(--color-warning);
|
|
51161
|
+
}
|
|
51162
|
+
.card {
|
|
51163
|
+
border-width: var(--border-width);
|
|
51164
|
+
border-style: solid;
|
|
51165
|
+
filter: drop-shadow(0px 2px 4px rgba(8, 35, 48, 0.24));
|
|
51166
|
+
flex-direction: column;
|
|
51167
|
+
}
|
|
51168
|
+
.card > .heading {
|
|
51169
|
+
padding: calc(var(--spacing) * 2) calc(var(--spacing) * 4);
|
|
51170
|
+
}
|
|
51171
|
+
.card[_has-closer] > .heading {
|
|
51172
|
+
padding-top: 0;
|
|
51173
|
+
padding-bottom: 0;
|
|
51174
|
+
padding-right: 0;
|
|
51175
|
+
}
|
|
51176
|
+
.card > .heading > div {
|
|
51177
|
+
width: 100%;
|
|
51178
|
+
min-height: 1.25rem;
|
|
51179
|
+
}
|
|
51180
|
+
.card > .heading .heading-icon {
|
|
51181
|
+
justify-self: right;
|
|
51182
|
+
margin-top: -4px;
|
|
51183
|
+
}
|
|
51184
|
+
.card > .heading kol-heading-wc {
|
|
51185
|
+
width: 100%;
|
|
51186
|
+
color: var(--color-light);
|
|
51187
|
+
display: flex;
|
|
51188
|
+
font-size: 1.25rem;
|
|
51189
|
+
line-height: 1.25rem;
|
|
51190
|
+
}
|
|
51191
|
+
.card > .heading kol-heading-wc > * {
|
|
51192
|
+
margin: auto 0;
|
|
51193
|
+
}
|
|
51194
|
+
.card > .content {
|
|
51195
|
+
padding: calc(var(--spacing) * 2) calc(var(--spacing) * 4);
|
|
51196
|
+
}
|
|
51197
|
+
.card.default > .heading {
|
|
51198
|
+
background-color: var(--color-subtle);
|
|
51199
|
+
}
|
|
51200
|
+
.card.error > .heading {
|
|
51201
|
+
background-color: var(--color-danger);
|
|
51202
|
+
}
|
|
51203
|
+
.card.info > .heading {
|
|
51204
|
+
background-color: var(--color-primary);
|
|
51205
|
+
}
|
|
51206
|
+
.card.success > .heading {
|
|
51207
|
+
background-color: var(--color-success);
|
|
51208
|
+
}
|
|
51209
|
+
.card.warning > .heading {
|
|
51210
|
+
background-color: var(--color-warning);
|
|
51211
|
+
}
|
|
51212
|
+
:is(.error, .info, .success, .warning) .heading-icon {
|
|
51213
|
+
font-size: 1.25rem;
|
|
51214
|
+
}
|
|
51215
|
+
.card > div > .content {
|
|
51216
|
+
grid-row: 2;
|
|
51217
|
+
grid-column: 1 / span 2;
|
|
51218
|
+
}
|
|
51219
|
+
.card.default .close {
|
|
51220
|
+
background-color: var(--color-subtle);
|
|
51221
|
+
}
|
|
51222
|
+
.card.error .close {
|
|
51223
|
+
background-color: var(--color-danger);
|
|
51224
|
+
}
|
|
51225
|
+
.card.info .close {
|
|
51226
|
+
background-color: var(--color-primary);
|
|
51227
|
+
}
|
|
51228
|
+
.card.success .close {
|
|
51229
|
+
background-color: var(--color-success);
|
|
51230
|
+
}
|
|
51231
|
+
.card.warning .close {
|
|
51232
|
+
background-color: var(--color-warning);
|
|
51233
|
+
}
|
|
51234
|
+
.close > button {
|
|
51235
|
+
border-radius: 50%; /* visible on focus */
|
|
51236
|
+
color: var(--color-light);
|
|
51237
|
+
cursor: pointer;
|
|
51238
|
+
height: var(--a11y-min-size);
|
|
51239
|
+
width: var(--a11y-min-size);
|
|
51240
|
+
}
|
|
51241
|
+
.close > button.hide-label kol-icon {
|
|
51242
|
+
display: flex;
|
|
51243
|
+
width: 1em;
|
|
51244
|
+
height: 1em;
|
|
51245
|
+
font-size: 1.2rem;
|
|
51246
|
+
}
|
|
51247
|
+
.close > button:active {
|
|
51248
|
+
box-shadow: none;
|
|
51249
|
+
outline: none;
|
|
51250
|
+
}
|
|
51251
|
+
`,
|
|
51252
|
+
"KOL-HEADING": css`
|
|
51253
|
+
h1,
|
|
51254
|
+
h2,
|
|
51255
|
+
h3,
|
|
51256
|
+
h4,
|
|
51257
|
+
h5,
|
|
51258
|
+
h6 {
|
|
51259
|
+
color: inherit;
|
|
51260
|
+
font-style: normal;
|
|
51261
|
+
}
|
|
51262
|
+
h1,
|
|
51263
|
+
h2,
|
|
51264
|
+
h3 {
|
|
51265
|
+
font-weight: 700;
|
|
51266
|
+
}
|
|
51267
|
+
h1 {
|
|
51268
|
+
font-size: 1.5rem;
|
|
51269
|
+
line-height: 1.75rem;
|
|
51270
|
+
}
|
|
51271
|
+
h2 {
|
|
51272
|
+
font-size: 1.25rem;
|
|
51273
|
+
line-height: 1.75rem;
|
|
51274
|
+
}
|
|
51275
|
+
h3 {
|
|
51276
|
+
font-size: 1.125rem;
|
|
51277
|
+
line-height: 1.5rem;
|
|
51278
|
+
}
|
|
51279
|
+
`,
|
|
51280
|
+
"KOL-BADGE": css`
|
|
51281
|
+
:host {
|
|
51282
|
+
display: inline-block;
|
|
51283
|
+
}
|
|
51284
|
+
:host > span {
|
|
51285
|
+
border-radius: var(--border-radius);
|
|
51286
|
+
display: inline-flex;
|
|
51287
|
+
font-style: normal;
|
|
51288
|
+
line-height: 1.25rem;
|
|
51289
|
+
}
|
|
51290
|
+
:host > span.smart-button {
|
|
51291
|
+
align-items: center;
|
|
51292
|
+
}
|
|
51293
|
+
:host > span kol-button-wc:hover > button {
|
|
51294
|
+
background-color: var(--color-primary-variant);
|
|
51295
|
+
color: var(--color-light);
|
|
51296
|
+
}
|
|
51297
|
+
:host > span kol-button-wc > button {
|
|
51298
|
+
color: inherit;
|
|
51299
|
+
border-top-right-radius: var(--border-radius);
|
|
51300
|
+
border-bottom-right-radius: var(--border-radius);
|
|
51301
|
+
padding: calc(var(--spacing) / 2);
|
|
51302
|
+
}
|
|
51303
|
+
:host > span kol-span-wc {
|
|
51304
|
+
padding: calc(var(--spacing) / 2) calc(var(--spacing) * 2);
|
|
51305
|
+
}
|
|
51306
|
+
:host > span > kol-span-wc {
|
|
51307
|
+
align-items: center;
|
|
51308
|
+
font-style: normal;
|
|
51309
|
+
gap: var(--spacing);
|
|
51310
|
+
}
|
|
51311
|
+
:host > span > kol-span-wc > span {
|
|
51312
|
+
display: flex;
|
|
51313
|
+
gap: calc(var(--spacing) / 2);
|
|
51314
|
+
}
|
|
51315
|
+
`,
|
|
51316
|
+
"KOL-BUTTON-GROUP": css`
|
|
51317
|
+
:host > kol-button-group-wc {
|
|
51318
|
+
display: flex;
|
|
51319
|
+
flex-wrap: wrap;
|
|
51320
|
+
gap: var(--spacing);
|
|
51321
|
+
}
|
|
51322
|
+
`,
|
|
51323
|
+
"KOL-INDENTED-TEXT": css`
|
|
51324
|
+
:host > div {
|
|
51325
|
+
background-color: var(--color-light);
|
|
51326
|
+
border-left: none;
|
|
51327
|
+
box-shadow: -2px 0px 0px var(--color-primary-variant);
|
|
51328
|
+
padding: 0 var(--spacing);
|
|
51329
|
+
width: 100%;
|
|
51330
|
+
}
|
|
51331
|
+
`,
|
|
51332
|
+
"KOL-LINK": css`
|
|
51333
|
+
:is(a, button) {
|
|
51334
|
+
color: var(--color-primary);
|
|
51335
|
+
font-style: normal;
|
|
51336
|
+
font-weight: 400;
|
|
51337
|
+
text-decoration-line: underline;
|
|
51338
|
+
}
|
|
51339
|
+
:is(a, button):focus {
|
|
51340
|
+
outline: none;
|
|
51341
|
+
}
|
|
51342
|
+
:is(a, button):focus kol-span-wc {
|
|
51343
|
+
border-radius: var(--border-radius);
|
|
51344
|
+
outline: var(--border-width) solid;
|
|
51345
|
+
}
|
|
51346
|
+
:is(a, button):hover {
|
|
51347
|
+
text-decoration-thickness: 0.25em;
|
|
51348
|
+
}
|
|
51349
|
+
:is(a, button):visited {
|
|
51350
|
+
color: var(--visited);
|
|
51351
|
+
}
|
|
51352
|
+
.hidden {
|
|
51353
|
+
display: none;
|
|
51354
|
+
visibility: hidden;
|
|
51355
|
+
}
|
|
51356
|
+
.skip {
|
|
51357
|
+
left: -99999px;
|
|
51358
|
+
overflow: hidden;
|
|
51359
|
+
position: absolute;
|
|
51360
|
+
z-index: 9999999;
|
|
51361
|
+
line-height: 1em;
|
|
51362
|
+
}
|
|
51363
|
+
.skip:focus {
|
|
51364
|
+
background: white;
|
|
51365
|
+
left: unset;
|
|
51366
|
+
position: unset;
|
|
51367
|
+
}
|
|
51368
|
+
`,
|
|
51369
|
+
"KOL-DETAILS": css`
|
|
51370
|
+
details > summary {
|
|
51371
|
+
border-radius: var(--border-radius);
|
|
51372
|
+
}
|
|
51373
|
+
details kol-indented-text {
|
|
51374
|
+
margin: var(--spacing) 0 0 calc(var(--spacing) * 3);
|
|
51375
|
+
}
|
|
51376
|
+
kol-icon {
|
|
51377
|
+
font-size: 1.2rem;
|
|
51378
|
+
}
|
|
51379
|
+
`,
|
|
51380
|
+
"KOL-SPIN": css`
|
|
51381
|
+
.spin {
|
|
51382
|
+
display: inline-block;
|
|
51383
|
+
height: 1rem;
|
|
51384
|
+
position: relative;
|
|
51385
|
+
width: 3rem;
|
|
51386
|
+
}
|
|
51387
|
+
.spin span {
|
|
51388
|
+
animation-timing-function: cubic-bezier(0, 1, 1, 0);
|
|
51389
|
+
border: 0.1rem solid rgb(255, 255, 255);
|
|
51390
|
+
border-radius: 50%;
|
|
51391
|
+
height: 0.8rem;
|
|
51392
|
+
width: 0.8rem;
|
|
51393
|
+
top: 0.1rem;
|
|
51394
|
+
position: absolute;
|
|
51395
|
+
}
|
|
51396
|
+
.spin span:nth-child(1) {
|
|
51397
|
+
background-color: #fc0;
|
|
51398
|
+
z-index: 0;
|
|
51399
|
+
animation: 2s ease 0s infinite normal none running spin1;
|
|
51400
|
+
left: 0.1rem;
|
|
51401
|
+
}
|
|
51402
|
+
.spin span:nth-child(2) {
|
|
51403
|
+
background-color: #f00;
|
|
51404
|
+
z-index: 1;
|
|
51405
|
+
animation: 2s ease 0s infinite normal none running spin2;
|
|
51406
|
+
left: 0.1rem;
|
|
51407
|
+
}
|
|
51408
|
+
.spin span:nth-child(3) {
|
|
51409
|
+
background-color: #000;
|
|
51410
|
+
z-index: 1;
|
|
51411
|
+
animation: 2s ease 0s infinite normal none running spin2;
|
|
51412
|
+
left: 1.1rem;
|
|
51413
|
+
}
|
|
51414
|
+
.spin span:nth-child(4) {
|
|
51415
|
+
background-color: #666;
|
|
51416
|
+
z-index: 0;
|
|
51417
|
+
animation: 2s ease 0s infinite normal none running spin3;
|
|
51418
|
+
left: 2.1rem;
|
|
51419
|
+
}
|
|
51420
|
+
@keyframes spin1 {
|
|
51421
|
+
0% {
|
|
51422
|
+
transform: scale(0);
|
|
51423
|
+
}
|
|
51424
|
+
100% {
|
|
51425
|
+
transform: scale(1);
|
|
51426
|
+
}
|
|
51427
|
+
}
|
|
51428
|
+
@keyframes spin2 {
|
|
51429
|
+
0% {
|
|
51430
|
+
transform: translate(0px, 0px);
|
|
51431
|
+
}
|
|
51432
|
+
100% {
|
|
51433
|
+
transform: translate(1rem, 0px);
|
|
51434
|
+
}
|
|
51435
|
+
}
|
|
51436
|
+
@keyframes spin3 {
|
|
51437
|
+
0% {
|
|
51438
|
+
transform: scale(1);
|
|
51439
|
+
}
|
|
51440
|
+
100% {
|
|
51441
|
+
transform: scale(0);
|
|
51442
|
+
}
|
|
51443
|
+
}
|
|
51444
|
+
`,
|
|
51445
|
+
"KOL-PROGRESS": css`
|
|
51446
|
+
:host progress,
|
|
51447
|
+
:host span {
|
|
51448
|
+
display: block;
|
|
51449
|
+
height: 0px;
|
|
51450
|
+
overflow: hidden;
|
|
51451
|
+
width: 0px;
|
|
51452
|
+
}
|
|
51453
|
+
:host svg line:first-child,
|
|
51454
|
+
:host svg circle:first-child {
|
|
51455
|
+
fill: transparent;
|
|
51456
|
+
stroke: var(--color-primary-variant);
|
|
51457
|
+
}
|
|
51458
|
+
:host svg line:last-child,
|
|
51459
|
+
:host svg circle:last-child {
|
|
51460
|
+
fill: transparent;
|
|
51461
|
+
stroke: var(--color-primary);
|
|
51462
|
+
}
|
|
51463
|
+
`,
|
|
51464
|
+
"KOL-SELECT": css`
|
|
51465
|
+
kol-input {
|
|
51466
|
+
gap: var(--spacing);
|
|
51467
|
+
}
|
|
51468
|
+
kol-input .error {
|
|
51469
|
+
order: 1;
|
|
51470
|
+
}
|
|
51471
|
+
kol-input label {
|
|
51472
|
+
order: 2;
|
|
51473
|
+
}
|
|
51474
|
+
kol-input .input {
|
|
51475
|
+
order: 3;
|
|
51476
|
+
}
|
|
51477
|
+
kol-input .hint {
|
|
51478
|
+
order: 4;
|
|
51479
|
+
font-size: 0.9rem;
|
|
51480
|
+
font-style: italic;
|
|
51481
|
+
}
|
|
51482
|
+
select {
|
|
51483
|
+
border: none;
|
|
51484
|
+
}
|
|
51485
|
+
input::placeholder {
|
|
51486
|
+
color: var(--color-subtle);
|
|
51487
|
+
}
|
|
51488
|
+
.input {
|
|
51489
|
+
background-color: var(--color-light);
|
|
51490
|
+
border-color: var(--color-subtle);
|
|
51491
|
+
border-radius: var(--border-radius);
|
|
51492
|
+
border-style: solid;
|
|
51493
|
+
border-width: 2px;
|
|
51494
|
+
padding: 0 calc(var(--spacing) * 2);
|
|
51495
|
+
}
|
|
51496
|
+
.input > kol-icon {
|
|
51497
|
+
width: 2rem;
|
|
51498
|
+
}
|
|
51499
|
+
.input:is(.icon-left, .icon-right) {
|
|
51500
|
+
padding-left: calc(var(--spacing) * 4);
|
|
51501
|
+
padding-right: calc(var(--spacing) * 4);
|
|
51502
|
+
}
|
|
51503
|
+
.input.icon-left kol-icon:first-child {
|
|
51504
|
+
padding-left: calc(var(--spacing) * 2);
|
|
51505
|
+
padding-right: calc(var(--spacing) * 2);
|
|
51506
|
+
}
|
|
51507
|
+
.input > input:first-child {
|
|
51508
|
+
padding-left: var(--spacing);
|
|
51509
|
+
}
|
|
51510
|
+
.input > input:last-child {
|
|
51511
|
+
padding-right: var(--spacing);
|
|
51512
|
+
}
|
|
51513
|
+
.input:hover {
|
|
51514
|
+
border-color: var(--color-primary);
|
|
51515
|
+
}
|
|
51516
|
+
select:disabled {
|
|
51517
|
+
cursor: not-allowed;
|
|
51518
|
+
}
|
|
51519
|
+
.required label > span::after {
|
|
51520
|
+
content: '*';
|
|
51521
|
+
padding-left: 0.125em;
|
|
51522
|
+
}
|
|
51523
|
+
kol-input.error {
|
|
51524
|
+
border-left: 3px solid var(--color-danger);
|
|
51525
|
+
padding-left: calc(var(--spacing) * 2);
|
|
51526
|
+
}
|
|
51527
|
+
kol-input.error .input:focus-within {
|
|
51528
|
+
outline-color: var(--color-danger) !important;
|
|
51529
|
+
}
|
|
51530
|
+
kol-input.error kol-alert.error {
|
|
51531
|
+
color: var(--color-danger);
|
|
51532
|
+
font-weight: 700;
|
|
51533
|
+
}
|
|
51534
|
+
kol-input.disabled :is(select, label, option) {
|
|
51535
|
+
opacity: 1;
|
|
51536
|
+
}
|
|
51537
|
+
kol-input.disabled :is(select, .input) {
|
|
51538
|
+
background-color: var(--color-mute);
|
|
51539
|
+
border-color: var(--color-mute-variant);
|
|
51540
|
+
}
|
|
51541
|
+
select[multiple] {
|
|
51542
|
+
overflow: auto;
|
|
51543
|
+
}
|
|
51544
|
+
select option {
|
|
51545
|
+
margin: 1px 0;
|
|
51546
|
+
padding: 0.5em;
|
|
51547
|
+
border-radius: var(--border-radius);
|
|
51548
|
+
cursor: pointer;
|
|
51549
|
+
}
|
|
51550
|
+
select option:disabled {
|
|
51551
|
+
cursor: not-allowed;
|
|
51552
|
+
}
|
|
51553
|
+
option:active:not(:disabled),
|
|
51554
|
+
option:checked:not(:disabled),
|
|
51555
|
+
option:focus:not(:disabled),
|
|
51556
|
+
option:hover:not(:disabled) {
|
|
51557
|
+
background: var(--color-primary-variant);
|
|
51558
|
+
color: var(--color-light);
|
|
51559
|
+
}
|
|
51560
|
+
`,
|
|
51561
|
+
"KOL-INPUT-COLOR": css`
|
|
51562
|
+
kol-input {
|
|
51563
|
+
gap: var(--spacing);
|
|
51564
|
+
}
|
|
51565
|
+
kol-input .error {
|
|
51566
|
+
order: 1;
|
|
51567
|
+
}
|
|
51568
|
+
kol-input label {
|
|
51569
|
+
order: 2;
|
|
51570
|
+
}
|
|
51571
|
+
kol-input .input {
|
|
51572
|
+
order: 3;
|
|
51573
|
+
}
|
|
51574
|
+
kol-input .hint {
|
|
51575
|
+
order: 4;
|
|
51576
|
+
font-size: 0.9rem;
|
|
51577
|
+
font-style: italic;
|
|
51578
|
+
}
|
|
51579
|
+
input {
|
|
51580
|
+
border: none;
|
|
51581
|
+
}
|
|
51582
|
+
input[type='color'] {
|
|
51583
|
+
border: none;
|
|
51584
|
+
min-height: 40px !important;
|
|
51585
|
+
}
|
|
51586
|
+
input[type='color'] {
|
|
51587
|
+
background-color: transparent;
|
|
51588
|
+
}
|
|
51589
|
+
input::placeholder {
|
|
51590
|
+
color: var(--color-subtle);
|
|
51591
|
+
}
|
|
51592
|
+
.input {
|
|
51593
|
+
background-color: var(--color-light);
|
|
51594
|
+
border-color: var(--color-subtle);
|
|
51595
|
+
border-radius: var(--border-radius);
|
|
51596
|
+
border-style: solid;
|
|
51597
|
+
border-width: 2px;
|
|
51598
|
+
padding: 0 calc(var(--spacing) * 2);
|
|
51599
|
+
}
|
|
51600
|
+
.input > kol-icon {
|
|
51601
|
+
width: 1rem;
|
|
51602
|
+
}
|
|
51603
|
+
.input:is(.icon-left, .icon-right) {
|
|
51604
|
+
padding-left: calc(var(--spacing) * 4);
|
|
51605
|
+
padding-right: calc(var(--spacing) * 4);
|
|
51606
|
+
}
|
|
51607
|
+
.input:is(.icon-left, .icon-right) input {
|
|
51608
|
+
padding-left: calc(var(--spacing) * 2);
|
|
51609
|
+
padding-right: calc(var(--spacing) * 2);
|
|
51610
|
+
}
|
|
51611
|
+
.input > input:first-child {
|
|
51612
|
+
padding-left: var(--spacing);
|
|
51613
|
+
}
|
|
51614
|
+
.input > input:last-child {
|
|
51615
|
+
padding-right: var(--spacing);
|
|
51616
|
+
}
|
|
51617
|
+
.input:hover {
|
|
51618
|
+
border-color: var(--color-primary);
|
|
51619
|
+
}
|
|
51620
|
+
input:read-only,
|
|
51621
|
+
input:disabled {
|
|
51622
|
+
cursor: not-allowed;
|
|
51623
|
+
}
|
|
51624
|
+
.required label > span::after {
|
|
51625
|
+
content: '*';
|
|
51626
|
+
padding-left: 0.125em;
|
|
51627
|
+
}
|
|
51628
|
+
kol-input.error {
|
|
51629
|
+
border-left: 3px solid var(--color-danger);
|
|
51630
|
+
padding-left: calc(var(--spacing) * 2);
|
|
51631
|
+
}
|
|
51632
|
+
kol-input.error .input:focus-within {
|
|
51633
|
+
outline-color: var(--color-danger) !important;
|
|
51634
|
+
}
|
|
51635
|
+
kol-input.error kol-alert.error {
|
|
51636
|
+
color: var(--color-danger);
|
|
51637
|
+
font-weight: 700;
|
|
51638
|
+
}
|
|
51639
|
+
kol-input.disabled :is(input, label) {
|
|
51640
|
+
opacity: 1;
|
|
51641
|
+
}
|
|
51642
|
+
kol-input.disabled :is(input, .input) {
|
|
51643
|
+
background-color: var(--color-mute);
|
|
51644
|
+
border-color: var(--color-mute-variant);
|
|
51645
|
+
color: var(--color-text);
|
|
51646
|
+
}
|
|
51647
|
+
`,
|
|
51648
|
+
"KOL-ACCORDION": css`
|
|
51649
|
+
kol-span-wc > span {
|
|
51650
|
+
display: flex;
|
|
51651
|
+
place-items: baseline center;
|
|
51652
|
+
text-align: left;
|
|
51653
|
+
}
|
|
51654
|
+
:host > div > kol-heading-wc button {
|
|
51655
|
+
border-radius: var(--border-radius);
|
|
51656
|
+
min-height: 2.2rem;
|
|
51657
|
+
padding: calc(var(--spacing) * 3) calc(var(--spacing) * 2);
|
|
51658
|
+
}
|
|
51659
|
+
:host > div > kol-heading-wc button kol-span-wc {
|
|
51660
|
+
font-weight: 700;
|
|
51661
|
+
font-size: 1.125rem;
|
|
51662
|
+
line-height: 20px;
|
|
51663
|
+
gap: var(--spacing);
|
|
51664
|
+
}
|
|
51665
|
+
:host > div > kol-heading-wc button kol-span-wc > span {
|
|
51666
|
+
gap: calc(var(--spacing) * 2);
|
|
51667
|
+
}
|
|
51668
|
+
:host > div > kol-heading-wc button kol-icon {
|
|
51669
|
+
color: var(--color-primary);
|
|
51670
|
+
}
|
|
51671
|
+
:host > div {
|
|
51672
|
+
width: 100%;
|
|
51673
|
+
height: 100%;
|
|
51674
|
+
display: grid;
|
|
51675
|
+
}
|
|
51676
|
+
:host > div div[class='header'],
|
|
51677
|
+
:host > div[class*='open'] div[class='content'] {
|
|
51678
|
+
margin: 0;
|
|
51679
|
+
}
|
|
51680
|
+
:host > div div[class='content'] {
|
|
51681
|
+
/* padding-left equals icon width + spacings */
|
|
51682
|
+
padding: 0 calc(var(--spacing) * 2) calc(var(--spacing) * 3) calc(16px + var(--spacing) * 4);
|
|
51683
|
+
}
|
|
51684
|
+
button:focus {
|
|
51685
|
+
outline: none;
|
|
51686
|
+
}
|
|
51687
|
+
:host > .accordion:focus-within {
|
|
51688
|
+
border-radius: var(--border-radius);
|
|
51689
|
+
cursor: pointer;
|
|
51690
|
+
outline-color: var(--color-primary-variant);
|
|
51691
|
+
outline-offset: 2px;
|
|
51692
|
+
outline-style: solid;
|
|
51693
|
+
outline-width: 3px;
|
|
51694
|
+
transition: outline-offset 0.2s linear;
|
|
51695
|
+
}
|
|
51696
|
+
`,
|
|
51697
|
+
"KOL-TABLE": css`
|
|
51698
|
+
:host * {
|
|
51699
|
+
hyphens: var(--hyphens);
|
|
51700
|
+
font-family: var(--font-family);
|
|
51701
|
+
line-height: var(--line-height);
|
|
51702
|
+
word-break: break-word;
|
|
51703
|
+
}
|
|
51704
|
+
:host > div {
|
|
51705
|
+
overflow-x: auto;
|
|
51706
|
+
overflow-y: hidden;
|
|
51707
|
+
}
|
|
51708
|
+
caption {
|
|
51709
|
+
padding: calc(var(--spacing) * 2);
|
|
51710
|
+
}
|
|
51711
|
+
th {
|
|
51712
|
+
font-weight: normal;
|
|
51713
|
+
color: var(--color-primary);
|
|
51714
|
+
}
|
|
51715
|
+
:host table thead tr:first-child th,
|
|
51716
|
+
:host table thead tr:first-child td {
|
|
51717
|
+
border-width: 0;
|
|
51718
|
+
border-top-width: calc(var(--border-width) * 2);
|
|
51719
|
+
border-style: solid;
|
|
51720
|
+
border-color: var(--color-primary-variant);
|
|
51721
|
+
}
|
|
51722
|
+
table {
|
|
51723
|
+
width: 100%;
|
|
51724
|
+
border-spacing: 0;
|
|
51725
|
+
}
|
|
51726
|
+
table,
|
|
51727
|
+
:host table thead tr:last-child th,
|
|
51728
|
+
:host table thead tr:last-child td {
|
|
51729
|
+
border-width: 0;
|
|
51730
|
+
border-bottom-width: calc(var(--border-width) * 2);
|
|
51731
|
+
border-style: solid;
|
|
51732
|
+
border-color: var(--color-primary-variant);
|
|
51733
|
+
}
|
|
51734
|
+
th {
|
|
51735
|
+
background-color: var(--color-light);
|
|
51736
|
+
}
|
|
51737
|
+
th div {
|
|
51738
|
+
width: 100%;
|
|
51739
|
+
display: flex;
|
|
51740
|
+
gap: calc(var(--spacing) * 2);
|
|
51741
|
+
grid-template-columns: 1fr auto;
|
|
51742
|
+
align-items: center;
|
|
51743
|
+
}
|
|
51744
|
+
th div.center {
|
|
51745
|
+
justify-content: center;
|
|
51746
|
+
}
|
|
51747
|
+
th div.right {
|
|
51748
|
+
justify-content: end;
|
|
51749
|
+
}
|
|
51750
|
+
tr:nth-child(even) {
|
|
51751
|
+
background-color: var(--color-mute);
|
|
51752
|
+
}
|
|
51753
|
+
th,
|
|
51754
|
+
td {
|
|
51755
|
+
padding: calc(var(--spacing) * 2);
|
|
51756
|
+
}
|
|
51757
|
+
td.center > div {
|
|
51758
|
+
display: flex;
|
|
51759
|
+
justify-content: center;
|
|
51760
|
+
}
|
|
51761
|
+
td.right > div {
|
|
51762
|
+
display: flex;
|
|
51763
|
+
justify-content: end;
|
|
51764
|
+
}
|
|
51765
|
+
th[aria-sort='ascending'],
|
|
51766
|
+
th[aria-sort='descending'] {
|
|
51767
|
+
font-weight: 700;
|
|
51768
|
+
}
|
|
51769
|
+
:host > div:last-child {
|
|
51770
|
+
padding: calc(var(--spacing) * 2);
|
|
51771
|
+
}
|
|
51772
|
+
:host > div:last-child,
|
|
51773
|
+
:host > div:last-child > div:last-child {
|
|
51774
|
+
display: grid;
|
|
51775
|
+
align-items: center;
|
|
51776
|
+
justify-items: center;
|
|
51777
|
+
gap: calc(var(--spacing) * 2);
|
|
51778
|
+
}
|
|
51779
|
+
@media (min-width: 1024px) {
|
|
51780
|
+
:host > div:last-child,
|
|
51781
|
+
:host > div:last-child > div:last-child {
|
|
51782
|
+
grid-auto-flow: column;
|
|
51783
|
+
}
|
|
51784
|
+
:host > div:last-child kol-pagination {
|
|
51785
|
+
display: flex;
|
|
51786
|
+
gap: calc(var(--spacing) * 2);
|
|
51787
|
+
}
|
|
51788
|
+
}
|
|
51789
|
+
`,
|
|
51790
|
+
"KOL-NAV": css`
|
|
51791
|
+
* {
|
|
51792
|
+
margin: 0;
|
|
51793
|
+
padding: 0;
|
|
51794
|
+
}
|
|
51795
|
+
nav {
|
|
51796
|
+
font-family: var(--font-family);
|
|
51797
|
+
font-size: var(--font-size);
|
|
51798
|
+
background-color: var(--color-mute);
|
|
51799
|
+
width: 100%;
|
|
51800
|
+
}
|
|
51801
|
+
ul {
|
|
51802
|
+
list-style: none;
|
|
51803
|
+
}
|
|
51804
|
+
kol-link-wc,
|
|
51805
|
+
a {
|
|
51806
|
+
height: 100%;
|
|
51807
|
+
min-height: var(--a11y-min-size);
|
|
51808
|
+
display: flex;
|
|
51809
|
+
place-items: center;
|
|
51810
|
+
}
|
|
51811
|
+
.entry > kol-span-wc > span {
|
|
51812
|
+
width: 100%;
|
|
51813
|
+
}
|
|
51814
|
+
.entry > :is(kol-button-wc, kol-link-wc, kol-span-wc):first-child {
|
|
51815
|
+
background-color: var(--color-light);
|
|
51816
|
+
text-decoration: none;
|
|
51817
|
+
color: var(--color-primary);
|
|
51818
|
+
width: 100%;
|
|
51819
|
+
display: flex;
|
|
51820
|
+
align-items: center;
|
|
51821
|
+
font-style: normal;
|
|
51822
|
+
line-height: 1.5rem;
|
|
51823
|
+
min-height: var(--a11y-min-size);
|
|
51824
|
+
min-width: var(--a11y-min-size);
|
|
51825
|
+
transition-duration: 0.5s;
|
|
51826
|
+
transition-property: background-color, color, border-color;
|
|
51827
|
+
letter-spacing: 0.175px;
|
|
51828
|
+
}
|
|
51829
|
+
.entry > :is(kol-link-wc, kol-button-wc):first-child :is(a, button) {
|
|
51830
|
+
color: var(--color-primary);
|
|
51831
|
+
text-decoration: none;
|
|
51832
|
+
}
|
|
51833
|
+
.entry > :is(kol-button-wc, kol-link-wc, kol-span-wc):first-child:hover {
|
|
51834
|
+
border-left-color: var(--color-primary-variant);
|
|
51835
|
+
background-color: var(--color-primary-variant);
|
|
51836
|
+
}
|
|
51837
|
+
.entry > :is(kol-link-wc, kol-button-wc, kol-span-wc):first-child:hover > :is(a, button, span) {
|
|
51838
|
+
color: var(--color-primary-variant);
|
|
51839
|
+
font-weight: 700;
|
|
51840
|
+
letter-spacing: unset;
|
|
51841
|
+
}
|
|
51842
|
+
.selected > :is(kol-button-wc, kol-link-wc, kol-span-wc):first-child {
|
|
51843
|
+
background-color: var(--color-primary-variant);
|
|
51844
|
+
color: var(--color-primary);
|
|
51845
|
+
font-weight: 700;
|
|
51846
|
+
}
|
|
51847
|
+
.selected > :is(kol-link-wc, kol-button-wc, kol-span-wc):first-child > :is(a, button, span) {
|
|
51848
|
+
font-weight: 700;
|
|
51849
|
+
}
|
|
51850
|
+
.selected :is(kol-button-wc, kol-link-wc, kol-span-wc):first-child:hover {
|
|
51851
|
+
color: var(--color-primary-variant);
|
|
51852
|
+
letter-spacing: unset;
|
|
51853
|
+
}
|
|
51854
|
+
.entry > kol-span-wc > span,
|
|
51855
|
+
.entry :is(a, button) {
|
|
51856
|
+
border-left-color: transparent;
|
|
51857
|
+
border-left-style: solid;
|
|
51858
|
+
border-left-width: 0.5rem;
|
|
51859
|
+
padding: calc(var(--spacing) * 2) var(--spacing) calc(var(--spacing) * 2) calc(var(--spacing) / 2);
|
|
51860
|
+
}
|
|
51861
|
+
.selected :is(a, button),
|
|
51862
|
+
[exportparts*='selected'] a {
|
|
51863
|
+
border-left-color: var(--color-primary);
|
|
51864
|
+
} /** Compact mode */
|
|
51865
|
+
.entry.compact :is(kol-button-wc, kol-link-wc, kol-span-wc):first-child {
|
|
51866
|
+
place-items: center;
|
|
51867
|
+
}
|
|
51868
|
+
.entry.compact > kol-span-wc > span {
|
|
51869
|
+
flex-direction: column;
|
|
51870
|
+
}
|
|
51871
|
+
.entry.compact > kol-span-wc > span,
|
|
51872
|
+
.entry.compact :is(a, button) {
|
|
51873
|
+
padding-left: 0;
|
|
51874
|
+
}
|
|
51875
|
+
`,
|
|
51876
|
+
"KOL-CARD": css`
|
|
51877
|
+
/* https://www.figma.com/file/56JbmrssCRpjpfxoAFeHqT/Design-System-EPLF-(in-progress)?node-id=8225%3A5945 */
|
|
51878
|
+
:host > div {
|
|
51879
|
+
display: grid;
|
|
51880
|
+
width: 100%;
|
|
51881
|
+
height: 100%;
|
|
51882
|
+
background-color: var(--color-light);
|
|
51883
|
+
grid-template-rows: min-content 2fr min-content;
|
|
51884
|
+
box-shadow: 0 0 0.25rem var(--color-subtle);
|
|
51885
|
+
border-radius: 0.25rem;
|
|
51886
|
+
}
|
|
51887
|
+
:host kol-heading-wc {
|
|
51888
|
+
line-height: 1.75rem;
|
|
51889
|
+
}
|
|
51890
|
+
:host div.header {
|
|
51891
|
+
padding: calc(var(--spacing) * 3) calc(var(--spacing) * 3) var(--spacing) calc(var(--spacing) * 3);
|
|
51892
|
+
}
|
|
51893
|
+
:host div.content {
|
|
51894
|
+
padding: var(--spacing) calc(var(--spacing) * 3) calc(var(--spacing) * 3);
|
|
51895
|
+
overflow: hidden;
|
|
51896
|
+
}
|
|
51897
|
+
:host div.footer {
|
|
51898
|
+
padding: calc(var(--spacing) * 2) calc(var(--spacing) * 3);
|
|
51899
|
+
}
|
|
51900
|
+
`,
|
|
51901
|
+
"KOL-INPUT-CHECKBOX": css`
|
|
51902
|
+
:host kol-input {
|
|
51903
|
+
display: grid;
|
|
51904
|
+
align-items: center;
|
|
51905
|
+
justify-items: left;
|
|
51906
|
+
width: 100%;
|
|
51907
|
+
min-height: var(--a11y-min-size);
|
|
51908
|
+
gap: var(--spacing);
|
|
51909
|
+
}
|
|
51910
|
+
:host kol-input.default {
|
|
51911
|
+
grid-template-columns: 1.5rem auto;
|
|
51912
|
+
}
|
|
51913
|
+
:host kol-input.switch {
|
|
51914
|
+
grid-template-columns: 3.5rem auto;
|
|
51915
|
+
}
|
|
51916
|
+
:host kol-input > div.input {
|
|
51917
|
+
display: inherit;
|
|
51918
|
+
min-height: var(--a11y-min-size);
|
|
51919
|
+
order: 2;
|
|
51920
|
+
}
|
|
51921
|
+
:host kol-input > div.input input {
|
|
51922
|
+
margin: 0px;
|
|
51923
|
+
}
|
|
51924
|
+
:host kol-input > label {
|
|
51925
|
+
cursor: pointer;
|
|
51926
|
+
order: 3;
|
|
51927
|
+
}
|
|
51928
|
+
:host kol-input > kol-alert.error {
|
|
51929
|
+
order: 1;
|
|
51930
|
+
padding-top: calc(var(--spacing) / 2);
|
|
51931
|
+
grid-column: span 2 / auto;
|
|
51932
|
+
}
|
|
51933
|
+
:host kol-input.error {
|
|
51934
|
+
border-left: 3px solid var(--color-danger);
|
|
51935
|
+
padding-left: calc(var(--spacing) * 2);
|
|
51936
|
+
}
|
|
51937
|
+
:host kol-input.error input:focus,
|
|
51938
|
+
kol-input.error select:focus,
|
|
51939
|
+
kol-input.error textarea:focus {
|
|
51940
|
+
outline-color: var(--color-danger) !important;
|
|
51941
|
+
}
|
|
51942
|
+
:host kol-input.error kol-alert.error {
|
|
51943
|
+
color: var(--color-danger);
|
|
51944
|
+
font-weight: 700;
|
|
51945
|
+
}
|
|
51946
|
+
:host input {
|
|
51947
|
+
cursor: pointer;
|
|
51948
|
+
order: 1;
|
|
51949
|
+
width: 100%;
|
|
51950
|
+
border-color: var(--color-subtle);
|
|
51951
|
+
border-width: 2px;
|
|
51952
|
+
border-style: solid;
|
|
51953
|
+
border-radius: var(--border-radius);
|
|
51954
|
+
line-height: 24px;
|
|
51955
|
+
font-size: 1rem;
|
|
51956
|
+
}
|
|
51957
|
+
:host input:hover {
|
|
51958
|
+
border-color: var(--color-primary);
|
|
51959
|
+
box-shadow: 0px 2px 8px 2px rgba(8, 35, 48, 0.24);
|
|
51960
|
+
}
|
|
51961
|
+
:host input:focus:hover {
|
|
51962
|
+
box-shadow: none;
|
|
51963
|
+
}
|
|
51964
|
+
:host input:active {
|
|
51965
|
+
box-shadow: none;
|
|
51966
|
+
}
|
|
51967
|
+
:host kol-alert {
|
|
51968
|
+
display: block;
|
|
51969
|
+
width: 100%;
|
|
51970
|
+
} /* CHECKBOX */
|
|
51971
|
+
:host kol-input label span {
|
|
51972
|
+
margin-top: 0.125rem;
|
|
51973
|
+
}
|
|
51974
|
+
:host .required label > span::after {
|
|
51975
|
+
content: '*';
|
|
51976
|
+
padding-left: 0.125em;
|
|
51977
|
+
}
|
|
51978
|
+
:host kol-input input[type='checkbox'] {
|
|
51979
|
+
appearance: none;
|
|
51980
|
+
background-color: white;
|
|
51981
|
+
cursor: pointer;
|
|
51982
|
+
transition: 0.5s;
|
|
51983
|
+
}
|
|
51984
|
+
:host kol-input input[type='checkbox'].kol-disabled:before {
|
|
51985
|
+
cursor: not-allowed;
|
|
51986
|
+
}
|
|
51987
|
+
:host kol-input input[type='checkbox']:before {
|
|
51988
|
+
content: '';
|
|
51989
|
+
cursor: pointer;
|
|
51990
|
+
}
|
|
51991
|
+
:host kol-input input[type='checkbox']:checked {
|
|
51992
|
+
background-color: var(--color-primary);
|
|
51993
|
+
border-color: var(--color-primary);
|
|
51994
|
+
}
|
|
51995
|
+
:host kol-input.default input[type='checkbox'] {
|
|
51996
|
+
border-radius: var(--border-radius);
|
|
51997
|
+
height: calc(6 * var(--spacing));
|
|
51998
|
+
min-width: calc(6 * var(--spacing));
|
|
51999
|
+
width: calc(6 * var(--spacing));
|
|
52000
|
+
}
|
|
52001
|
+
:host kol-input.default input[type='checkbox']:before {
|
|
52002
|
+
border-radius: 1.5em;
|
|
52003
|
+
background-color: transparent;
|
|
52004
|
+
display: block;
|
|
52005
|
+
height: calc(6 * var(--spacing));
|
|
52006
|
+
position: relative;
|
|
52007
|
+
width: calc(6 * var(--spacing));
|
|
52008
|
+
}
|
|
52009
|
+
:host kol-input.default input[type='checkbox']:checked:before {
|
|
52010
|
+
border-right-width: 3px;
|
|
52011
|
+
border-bottom-width: 3px;
|
|
52012
|
+
left: calc(1.5 * var(--spacing) - 2px);
|
|
52013
|
+
top: calc(2.85 * var(--spacing) - 2px);
|
|
52014
|
+
transform: rotate(40deg) translate(-50%, -50%);
|
|
52015
|
+
background-color: transparent;
|
|
52016
|
+
border-width: 0px 3px 3px 0px;
|
|
52017
|
+
border-color: white;
|
|
52018
|
+
border-radius: 1px;
|
|
52019
|
+
border-style: solid;
|
|
52020
|
+
height: calc(3 * var(--spacing));
|
|
52021
|
+
width: calc(1.5 * var(--spacing));
|
|
52022
|
+
}
|
|
52023
|
+
:host kol-input.default input[type='checkbox']:indeterminate {
|
|
52024
|
+
background-color: var(--color-primary);
|
|
52025
|
+
}
|
|
52026
|
+
:host kol-input.default input[type='checkbox']:indeterminate:before {
|
|
52027
|
+
background-color: var(--color-light);
|
|
52028
|
+
height: 0.125rem;
|
|
52029
|
+
top: 0.6rem;
|
|
52030
|
+
left: 0.25rem;
|
|
52031
|
+
width: calc(3 * var(--spacing));
|
|
52032
|
+
transform: inherit;
|
|
52033
|
+
}
|
|
52034
|
+
:host kol-input.default input[type='checkbox']:checked:indeterminate:before {
|
|
52035
|
+
border-width: 0px 1px 1px 0px;
|
|
52036
|
+
}
|
|
52037
|
+
:host kol-input.switch input[type='checkbox'] {
|
|
52038
|
+
min-width: 3.5em;
|
|
52039
|
+
width: 3.5em;
|
|
52040
|
+
background-color: var(--color-subtle);
|
|
52041
|
+
border-width: 0;
|
|
52042
|
+
height: 1.5em;
|
|
52043
|
+
border-radius: 1.25em;
|
|
52044
|
+
display: inline-block;
|
|
52045
|
+
position: relative;
|
|
52046
|
+
}
|
|
52047
|
+
:host kol-input.switch input[type='checkbox']:before {
|
|
52048
|
+
width: 1.25em;
|
|
52049
|
+
height: 1.25em;
|
|
52050
|
+
left: calc(0.25em - 2px);
|
|
52051
|
+
top: calc(0.25em - 2px);
|
|
52052
|
+
border-radius: 1.25em;
|
|
52053
|
+
background-color: white;
|
|
52054
|
+
position: absolute;
|
|
52055
|
+
}
|
|
52056
|
+
:host kol-input.switch input[type='checkbox']:checked {
|
|
52057
|
+
background-color: var(--color-primary);
|
|
52058
|
+
}
|
|
52059
|
+
:host kol-input.switch input[type='checkbox']:checked:before {
|
|
52060
|
+
transform: translateX(2em);
|
|
52061
|
+
}
|
|
52062
|
+
:host kol-input.switch input[type='checkbox']:indeterminate:before {
|
|
52063
|
+
transform: translateX(1em);
|
|
52064
|
+
}
|
|
52065
|
+
:host .disabled {
|
|
52066
|
+
opacity: 0.33;
|
|
52067
|
+
}
|
|
52068
|
+
`,
|
|
52069
|
+
"KOL-INPUT-RADIO": css`
|
|
52070
|
+
label {
|
|
52071
|
+
cursor: pointer;
|
|
52072
|
+
display: grid;
|
|
52073
|
+
line-height: 20px;
|
|
52074
|
+
gap: calc(var(--spacing) * 2);
|
|
52075
|
+
width: 100%;
|
|
52076
|
+
}
|
|
52077
|
+
input {
|
|
52078
|
+
cursor: pointer;
|
|
52079
|
+
width: 100%;
|
|
52080
|
+
border-color: var(--color-subtle);
|
|
52081
|
+
border-width: 2px;
|
|
52082
|
+
border-style: solid;
|
|
52083
|
+
border-radius: 5px;
|
|
52084
|
+
line-height: 24px;
|
|
52085
|
+
}
|
|
52086
|
+
input:hover {
|
|
52087
|
+
border-color: var(--color-primary);
|
|
52088
|
+
box-shadow: 0px 2px 8px 2px rgba(8, 35, 48, 0.24);
|
|
52089
|
+
}
|
|
52090
|
+
input:focus:hover {
|
|
52091
|
+
box-shadow: none;
|
|
52092
|
+
}
|
|
52093
|
+
input:hover {
|
|
52094
|
+
border-color: var(--color-primary);
|
|
52095
|
+
}
|
|
52096
|
+
kol-alert {
|
|
52097
|
+
display: block;
|
|
52098
|
+
width: 100%;
|
|
52099
|
+
}
|
|
52100
|
+
.required legend > span::after {
|
|
52101
|
+
content: '*';
|
|
52102
|
+
padding-left: 0.125em;
|
|
52103
|
+
} /* RADIO */
|
|
52104
|
+
fieldset {
|
|
52105
|
+
border: 0px;
|
|
52106
|
+
margin: 0px;
|
|
52107
|
+
padding: 0px;
|
|
52108
|
+
display: grid;
|
|
52109
|
+
gap: 0.25em;
|
|
52110
|
+
}
|
|
52111
|
+
fieldset div {
|
|
52112
|
+
align-items: center;
|
|
52113
|
+
cursor: pointer;
|
|
52114
|
+
display: flex;
|
|
52115
|
+
flex-direction: row;
|
|
52116
|
+
gap: 0.5rem;
|
|
52117
|
+
margin: 0;
|
|
52118
|
+
min-height: var(--a11y-min-size);
|
|
52119
|
+
position: relative;
|
|
52120
|
+
}
|
|
52121
|
+
fieldset div label {
|
|
52122
|
+
cursor: pointer;
|
|
52123
|
+
display: flex;
|
|
52124
|
+
padding-left: calc(var(--spacing) / 2);
|
|
52125
|
+
width: 100%;
|
|
52126
|
+
}
|
|
52127
|
+
fieldset div label span {
|
|
52128
|
+
margin-top: 0.125em;
|
|
52129
|
+
}
|
|
52130
|
+
fieldset div input[type='radio'] {
|
|
52131
|
+
appearance: none;
|
|
52132
|
+
transition: 0.5s;
|
|
52133
|
+
border-radius: 100%;
|
|
52134
|
+
height: calc(6 * var(--spacing));
|
|
52135
|
+
min-width: calc(6 * var(--spacing));
|
|
52136
|
+
width: calc(6 * var(--spacing));
|
|
52137
|
+
}
|
|
52138
|
+
fieldset div input[type='radio']:before {
|
|
52139
|
+
content: '';
|
|
52140
|
+
cursor: pointer;
|
|
52141
|
+
border-radius: 100%;
|
|
52142
|
+
display: block;
|
|
52143
|
+
}
|
|
52144
|
+
fieldset div input[type='radio']:checked:before {
|
|
52145
|
+
background-color: var(--color-primary);
|
|
52146
|
+
}
|
|
52147
|
+
fieldset div input[type='radio']:disabled {
|
|
52148
|
+
cursor: not-allowed;
|
|
52149
|
+
background-color: var(--color-mute-variant);
|
|
52150
|
+
}
|
|
52151
|
+
fieldset #error {
|
|
52152
|
+
order: 1;
|
|
52153
|
+
}
|
|
52154
|
+
fieldset legend {
|
|
52155
|
+
order: 2;
|
|
52156
|
+
display: contents;
|
|
52157
|
+
}
|
|
52158
|
+
fieldset kol-input {
|
|
52159
|
+
order: 3;
|
|
52160
|
+
}
|
|
52161
|
+
fieldset.error {
|
|
52162
|
+
padding-left: calc(var(--spacing) * 3);
|
|
52163
|
+
border-left: 3px solid var(--color-danger);
|
|
52164
|
+
}
|
|
52165
|
+
fieldset kol-alert#error {
|
|
52166
|
+
color: var(--color-danger);
|
|
52167
|
+
font-weight: 700;
|
|
52168
|
+
}
|
|
52169
|
+
fieldset.error input:focus,
|
|
52170
|
+
fieldset.error select:focus,
|
|
52171
|
+
fieldset.error textarea:focus {
|
|
52172
|
+
outline-color: var(--color-danger) !important;
|
|
52173
|
+
}
|
|
52174
|
+
fieldset.error kol-alert.error {
|
|
52175
|
+
margin-left: -0.25em;
|
|
52176
|
+
color: var(--color-danger);
|
|
52177
|
+
font-weight: 700;
|
|
52178
|
+
}
|
|
52179
|
+
.disabled {
|
|
52180
|
+
opacity: 0.33;
|
|
52181
|
+
}
|
|
52182
|
+
fieldset.horizontal {
|
|
52183
|
+
display: flex;
|
|
52184
|
+
flex-wrap: wrap;
|
|
52185
|
+
gap: var(--spacing) calc(var(--spacing) * 2);
|
|
52186
|
+
}
|
|
52187
|
+
fieldset.horizontal legend {
|
|
52188
|
+
display: inline-block;
|
|
52189
|
+
margin-bottom: calc(var(--spacing) / 2);
|
|
52190
|
+
}
|
|
52191
|
+
fieldset [slot='input'] {
|
|
52192
|
+
gap: var(--spacing);
|
|
52193
|
+
}
|
|
52194
|
+
fieldset div label {
|
|
52195
|
+
padding-left: 0;
|
|
52196
|
+
}
|
|
52197
|
+
`,
|
|
52198
|
+
"KOL-TOAST": css`
|
|
52199
|
+
:host > div {
|
|
52200
|
+
position: fixed;
|
|
52201
|
+
top: 0;
|
|
52202
|
+
right: 0;
|
|
52203
|
+
width: 100%;
|
|
52204
|
+
height: 0;
|
|
52205
|
+
z-index: 200;
|
|
52206
|
+
}
|
|
52207
|
+
:host > div > kol-alert {
|
|
52208
|
+
display: block;
|
|
52209
|
+
margin-left: auto;
|
|
52210
|
+
margin-right: unset;
|
|
52211
|
+
padding: calc(var(--spacing) * 5);
|
|
52212
|
+
max-width: 750px;
|
|
52213
|
+
}
|
|
52214
|
+
:host > div > kol-button-wc {
|
|
52215
|
+
top: 0;
|
|
52216
|
+
position: relative;
|
|
52217
|
+
display: block;
|
|
52218
|
+
width: 1rem;
|
|
52219
|
+
}
|
|
52220
|
+
`,
|
|
52221
|
+
"KOL-TABS": css`
|
|
52222
|
+
button:disabled {
|
|
52223
|
+
opacity: 0.5;
|
|
52224
|
+
cursor: not-allowed;
|
|
52225
|
+
}
|
|
52226
|
+
:host kol-button-group-wc {
|
|
52227
|
+
display: inline-flex;
|
|
52228
|
+
gap: calc(var(--spacing) * 5);
|
|
52229
|
+
flex-wrap: wrap;
|
|
52230
|
+
}
|
|
52231
|
+
button {
|
|
52232
|
+
box-sizing: border-box;
|
|
52233
|
+
background-color: transparent;
|
|
52234
|
+
border: 0;
|
|
52235
|
+
border-radius: var(--border-radius);
|
|
52236
|
+
font-style: normal;
|
|
52237
|
+
font-weight: 700;
|
|
52238
|
+
font-size: 18px;
|
|
52239
|
+
line-height: 22px;
|
|
52240
|
+
min-height: var(--a11y-min-size);
|
|
52241
|
+
min-width: var(--a11y-min-size);
|
|
52242
|
+
color: var(--color-subtle);
|
|
52243
|
+
padding: 0;
|
|
52244
|
+
}
|
|
52245
|
+
button:hover {
|
|
52246
|
+
color: var(--color-primary);
|
|
52247
|
+
}
|
|
52248
|
+
button.primary,
|
|
52249
|
+
button.selected {
|
|
52250
|
+
color: var(--color-primary);
|
|
52251
|
+
}
|
|
52252
|
+
button kol-span-wc > span {
|
|
52253
|
+
border-bottom: 0.25em solid;
|
|
52254
|
+
}
|
|
52255
|
+
button kol-span-wc > span {
|
|
52256
|
+
gap: calc(var(--spacing) * 2);
|
|
52257
|
+
}
|
|
52258
|
+
:host > div > div {
|
|
52259
|
+
padding: var(--spacing) 0;
|
|
52260
|
+
}
|
|
52261
|
+
div[role='tabpanel'] {
|
|
52262
|
+
height: 100%;
|
|
52263
|
+
}
|
|
52264
|
+
div.grid {
|
|
52265
|
+
height: 100%;
|
|
52266
|
+
}
|
|
52267
|
+
:host > .tabs-align-right {
|
|
52268
|
+
display: grid;
|
|
52269
|
+
grid-template-columns: 1fr auto;
|
|
52270
|
+
}
|
|
52271
|
+
:host > .tabs-align-right kol-button-group-wc {
|
|
52272
|
+
display: grid;
|
|
52273
|
+
order: 2;
|
|
52274
|
+
}
|
|
52275
|
+
:host > .tabs-align-left {
|
|
52276
|
+
display: grid;
|
|
52277
|
+
grid-template-columns: auto 1fr;
|
|
52278
|
+
}
|
|
52279
|
+
:host > .tabs-align-left kol-button-group-wc {
|
|
52280
|
+
display: grid;
|
|
52281
|
+
order: 0;
|
|
52282
|
+
}
|
|
52283
|
+
:host > .tabs-align-bottom {
|
|
52284
|
+
display: grid;
|
|
52285
|
+
grid-template-rows: 1fr auto;
|
|
52286
|
+
}
|
|
52287
|
+
:host > .tabs-align-bottom kol-button-group-wc {
|
|
52288
|
+
order: 2;
|
|
52289
|
+
}
|
|
52290
|
+
:host > .tabs-align-bottom kol-button-group-wc > div {
|
|
52291
|
+
display: flex;
|
|
52292
|
+
}
|
|
52293
|
+
:host > .tabs-align-bottom > kol-button-group-wc > div > div:first-child {
|
|
52294
|
+
margin: 0px calc(var(--spacing) * 3) 0px 0px;
|
|
52295
|
+
}
|
|
52296
|
+
:host > .tabs-align-bottom > kol-button-group-wc > div > div {
|
|
52297
|
+
margin: 0px calc(var(--spacing) * 3);
|
|
52298
|
+
}
|
|
52299
|
+
:host > .tabs-align-top {
|
|
52300
|
+
display: grid;
|
|
52301
|
+
grid-template-rows: auto 1fr;
|
|
52302
|
+
}
|
|
52303
|
+
:host > .tabs-align-top kol-button-group-wc {
|
|
52304
|
+
order: 0;
|
|
52305
|
+
}
|
|
52306
|
+
:host > .tabs-align-top kol-button-group-wc > div {
|
|
52307
|
+
display: flex;
|
|
52308
|
+
}
|
|
52309
|
+
:host > .tabs-align-top > kol-button-group-wc > div > div:first-child {
|
|
52310
|
+
margin: 0px calc(var(--spacing) * 3) 0px 0px;
|
|
52311
|
+
}
|
|
52312
|
+
:host > .tabs-align-top > kol-button-group-wc > div > div {
|
|
52313
|
+
margin: 0px calc(var(--spacing) * 3);
|
|
52314
|
+
}
|
|
52315
|
+
:host > div {
|
|
52316
|
+
display: grid;
|
|
52317
|
+
}
|
|
52318
|
+
:host > div.tabs-align-left {
|
|
52319
|
+
grid-template-columns: auto 1fr;
|
|
52320
|
+
}
|
|
52321
|
+
:host > div.tabs-align-right {
|
|
52322
|
+
grid-template-columns: 1fr auto;
|
|
52323
|
+
}
|
|
52324
|
+
:host > .tabs-align-left kol-button-group-wc,
|
|
52325
|
+
:host > .tabs-align-top kol-button-group-wc {
|
|
52326
|
+
order: 0;
|
|
52327
|
+
}
|
|
52328
|
+
:host > .tabs-align-bottom kol-button-group-wc,
|
|
52329
|
+
:host > .tabs-align-right kol-button-group-wc {
|
|
52330
|
+
order: 1;
|
|
52331
|
+
}
|
|
52332
|
+
:host > .tabs-align-left kol-button-group-wc,
|
|
52333
|
+
:host > .tabs-align-right kol-button-group-wc {
|
|
52334
|
+
gap: inherit;
|
|
52335
|
+
}
|
|
52336
|
+
:host > div.tabs-align-left kol-button-group-wc > div,
|
|
52337
|
+
:host > div.tabs-align-left kol-button-group-wc > div > div,
|
|
52338
|
+
:host > div.tabs-align-right kol-button-group-wc > div,
|
|
52339
|
+
:host > div.tabs-align-right kol-button-group-wc > div > div {
|
|
52340
|
+
display: grid;
|
|
52341
|
+
}
|
|
52342
|
+
:host > div.tabs-align-left kol-button-group-wc > div > div kol-button-wc,
|
|
52343
|
+
:host > div.tabs-align-right kol-button-group-wc > div > div kol-button-wc {
|
|
52344
|
+
width: 100%;
|
|
52345
|
+
}
|
|
52346
|
+
:host > div.tabs-align-bottom kol-button-group-wc div,
|
|
52347
|
+
:host > div.tabs-align-top kol-button-group-wc div {
|
|
52348
|
+
display: flex;
|
|
52349
|
+
flex-wrap: wrap;
|
|
52350
|
+
}
|
|
52351
|
+
:host kol-button-group-wc button {
|
|
52352
|
+
border: none;
|
|
52353
|
+
}
|
|
52354
|
+
`,
|
|
52355
|
+
"KOL-PAGINATION": css`
|
|
52356
|
+
:host {
|
|
52357
|
+
display: grid;
|
|
52358
|
+
gap: calc(var(--spacing) * 4);
|
|
52359
|
+
}
|
|
52360
|
+
:host > div {
|
|
52361
|
+
display: inline-flex;
|
|
52362
|
+
flex-wrap: wrap;
|
|
52363
|
+
align-items: center;
|
|
52364
|
+
gap: calc(var(--spacing) * 2);
|
|
52365
|
+
}
|
|
52366
|
+
:host .selected button {
|
|
52367
|
+
min-width: var(--a11y-min-size);
|
|
52368
|
+
min-height: var(--a11y-min-size);
|
|
52369
|
+
display: grid;
|
|
52370
|
+
place-items: center;
|
|
52371
|
+
font-family: var(--font-family);
|
|
52372
|
+
cursor: not-allowed;
|
|
52373
|
+
font-weight: 700;
|
|
52374
|
+
border-radius: 50%;
|
|
52375
|
+
border: none;
|
|
52376
|
+
font-style: normal;
|
|
52377
|
+
text-align: center;
|
|
52378
|
+
width: inherit;
|
|
52379
|
+
transition-duration: 0.5s;
|
|
52380
|
+
transition-property: background-color, color, border-color;
|
|
52381
|
+
color: var(--color-primary);
|
|
52382
|
+
background-color: var(--color-mute-variant);
|
|
52383
|
+
}
|
|
52384
|
+
:host > div > span {
|
|
52385
|
+
align-self: flex-end;
|
|
52386
|
+
padding-bottom: calc(var(--spacing) * 2);
|
|
52387
|
+
color: var(--color-primary);
|
|
52388
|
+
}
|
|
52389
|
+
`,
|
|
52390
|
+
"KOL-INPUT-RANGE": css`
|
|
52391
|
+
kol-input {
|
|
52392
|
+
gap: var(--spacing);
|
|
52393
|
+
}
|
|
52394
|
+
kol-input .error {
|
|
52395
|
+
order: 1;
|
|
52396
|
+
}
|
|
52397
|
+
kol-input label {
|
|
52398
|
+
order: 2;
|
|
52399
|
+
}
|
|
52400
|
+
kol-input .input {
|
|
52401
|
+
order: 3;
|
|
52402
|
+
}
|
|
52403
|
+
kol-input .hint {
|
|
52404
|
+
order: 4;
|
|
52405
|
+
font-size: 0.9rem;
|
|
52406
|
+
font-style: italic;
|
|
52407
|
+
}
|
|
52408
|
+
input {
|
|
52409
|
+
border: none;
|
|
52410
|
+
}
|
|
52411
|
+
input::placeholder {
|
|
52412
|
+
color: var(--color-subtle);
|
|
52413
|
+
}
|
|
52414
|
+
.input {
|
|
52415
|
+
background-color: var(--color-light);
|
|
52416
|
+
border-color: var(--color-subtle);
|
|
52417
|
+
border-radius: var(--border-radius);
|
|
52418
|
+
border-style: solid;
|
|
52419
|
+
border-width: 2px;
|
|
52420
|
+
padding: 0 calc(var(--spacing) * 2);
|
|
52421
|
+
}
|
|
52422
|
+
.input > kol-icon {
|
|
52423
|
+
width: 1rem;
|
|
52424
|
+
}
|
|
52425
|
+
.input:is(.icon-left, .icon-right) {
|
|
52426
|
+
padding-left: calc(var(--spacing) * 4);
|
|
52427
|
+
padding-right: calc(var(--spacing) * 4);
|
|
52428
|
+
}
|
|
52429
|
+
.input:hover {
|
|
52430
|
+
border-color: var(--color-primary);
|
|
52431
|
+
}
|
|
52432
|
+
input:read-only,
|
|
52433
|
+
input:disabled {
|
|
52434
|
+
cursor: not-allowed;
|
|
52435
|
+
}
|
|
52436
|
+
.required label > span::after {
|
|
52437
|
+
content: '*';
|
|
52438
|
+
padding-left: 0.125em;
|
|
52439
|
+
}
|
|
52440
|
+
kol-input.error {
|
|
52441
|
+
border-left: 3px solid var(--color-danger);
|
|
52442
|
+
padding-left: calc(var(--spacing) * 2);
|
|
52443
|
+
}
|
|
52444
|
+
kol-input.error .input:focus-within {
|
|
52445
|
+
outline-color: var(--color-danger) !important;
|
|
52446
|
+
}
|
|
52447
|
+
kol-input.error kol-alert.error {
|
|
52448
|
+
color: var(--color-danger);
|
|
52449
|
+
font-weight: 700;
|
|
52450
|
+
}
|
|
52451
|
+
kol-input.disabled :is(input, label) {
|
|
52452
|
+
opacity: 1;
|
|
52453
|
+
}
|
|
52454
|
+
kol-input.disabled :is(.input) {
|
|
52455
|
+
background-color: var(--color-mute);
|
|
52456
|
+
border-color: var(--color-mute-variant);
|
|
52457
|
+
color: var(--color-text);
|
|
52458
|
+
}
|
|
52459
|
+
`,
|
|
52460
|
+
"KOL-LINK-BUTTON": css`
|
|
52461
|
+
:is(a, button):focus {
|
|
52462
|
+
outline: none;
|
|
52463
|
+
}
|
|
52464
|
+
:is(a, button):focus kol-span-wc {
|
|
52465
|
+
outline-color: var(--color-primary-variant);
|
|
52466
|
+
outline-offset: 2px;
|
|
52467
|
+
outline-style: solid;
|
|
52468
|
+
outline-width: calc(var(--border-width) * 2);
|
|
52469
|
+
transition: outline-offset 0.2s linear;
|
|
52470
|
+
}
|
|
52471
|
+
:is(a, button) > kol-span-wc {
|
|
52472
|
+
font-weight: 700;
|
|
52473
|
+
border-radius: var(--a11y-min-size);
|
|
52474
|
+
border-style: solid;
|
|
52475
|
+
outline-width: calc(var(--border-width) * 2);
|
|
52476
|
+
min-height: var(--a11y-min-size);
|
|
52477
|
+
min-width: var(--a11y-min-size);
|
|
52478
|
+
padding: 8px 14px;
|
|
52479
|
+
text-align: center;
|
|
52480
|
+
transition-duration: 0.5s;
|
|
52481
|
+
transition-property: background-color, color, border-color;
|
|
52482
|
+
}
|
|
52483
|
+
:is(a, button):disabled > kol-span-wc {
|
|
52484
|
+
cursor: not-allowed;
|
|
52485
|
+
opacity: 0.5;
|
|
52486
|
+
}
|
|
52487
|
+
.primary :is(a, button) > kol-span-wc,
|
|
52488
|
+
.primary :is(a, button):disabled:hover > kol-span-wc {
|
|
52489
|
+
background-color: var(--color-primary);
|
|
52490
|
+
border-color: var(--color-primary);
|
|
52491
|
+
color: var(--color-light);
|
|
52492
|
+
}
|
|
52493
|
+
.secondary :is(a, button) > kol-span-wc,
|
|
52494
|
+
.secondary :is(a, button):disabled:hover > kol-span-wc,
|
|
52495
|
+
.normal :is(a, button) > kol-span-wc,
|
|
52496
|
+
.normal :is(a, button):disabled:hover > kol-span-wc {
|
|
52497
|
+
background-color: var(--color-light);
|
|
52498
|
+
border-color: var(--color-primary);
|
|
52499
|
+
color: var(--color-primary);
|
|
52500
|
+
}
|
|
52501
|
+
.danger :is(a, button) > kol-span-wc,
|
|
52502
|
+
.danger :is(a, button):disabled:hover > kol-span-wc {
|
|
52503
|
+
background-color: var(--color-danger);
|
|
52504
|
+
border-color: var(--color-danger);
|
|
52505
|
+
color: var(--color-light);
|
|
52506
|
+
}
|
|
52507
|
+
.ghost :is(a, button) > kol-span-wc,
|
|
52508
|
+
.ghost :is(a, button):disabled:hover > kol-span-wc {
|
|
52509
|
+
border-color: var(--color-light);
|
|
52510
|
+
background-color: var(--color-light);
|
|
52511
|
+
box-shadow: none;
|
|
52512
|
+
color: var(--color-primary);
|
|
52513
|
+
} /*-----------*/
|
|
52514
|
+
.primary :is(a, button):active > kol-span-wc,
|
|
52515
|
+
.primary :is(a, button):hover > kol-span-wc,
|
|
52516
|
+
.secondary :is(a, button):active > kol-span-wc,
|
|
52517
|
+
.secondary :is(a, button):hover > kol-span-wc,
|
|
52518
|
+
.normal :is(a, button):active > kol-span-wc,
|
|
52519
|
+
.normal :is(a, button):hover > kol-span-wc,
|
|
52520
|
+
.danger :is(a, button):active > kol-span-wc,
|
|
52521
|
+
.danger :is(a, button):hover > kol-span-wc,
|
|
52522
|
+
.ghost :is(a, button):active > kol-span-wc,
|
|
52523
|
+
.ghost :is(a, button):hover > kol-span-wc {
|
|
52524
|
+
background-color: var(--color-primary-variant);
|
|
52525
|
+
border-color: var(--color-primary-variant);
|
|
52526
|
+
box-shadow: 0px 2px 8px 2px rgba(8, 35, 48, 0.24);
|
|
52527
|
+
color: var(--color-light);
|
|
52528
|
+
}
|
|
52529
|
+
.danger :is(a, button):active > kol-span-wc,
|
|
52530
|
+
.danger :is(a, button):hover > kol-span-wc {
|
|
52531
|
+
background-color: var(--color-danger);
|
|
52532
|
+
border-color: var(--color-danger);
|
|
52533
|
+
}
|
|
52534
|
+
:is(a, button):disabled:hover > kol-span-wc,
|
|
52535
|
+
:is(a, button):focus:hover > kol-span-wc {
|
|
52536
|
+
box-shadow: none;
|
|
52537
|
+
}
|
|
52538
|
+
.primary :is(a, button):active > kol-span-wc,
|
|
52539
|
+
.secondary :is(a, button):active > kol-span-wc,
|
|
52540
|
+
.normal :is(a, button):active > kol-span-wc,
|
|
52541
|
+
.danger :is(a, button):active > kol-span-wc,
|
|
52542
|
+
.ghost :is(a, button):active > kol-span-wc {
|
|
52543
|
+
border-color: var(--color-light);
|
|
52544
|
+
box-shadow: none;
|
|
52545
|
+
outline: none;
|
|
52546
|
+
}
|
|
52547
|
+
:is(a, button).hide-label > kol-span-wc {
|
|
52548
|
+
padding: calc(var(--spacing) * 2);
|
|
52549
|
+
width: unset;
|
|
52550
|
+
}
|
|
52551
|
+
:is(a, button).hide-label > kol-span-wc > span > span {
|
|
52552
|
+
display: none;
|
|
52553
|
+
}
|
|
52554
|
+
:is(a, button).loading > kol-span-wc kol-icon {
|
|
52555
|
+
animation: spin 5s infinite linear;
|
|
52556
|
+
}
|
|
52557
|
+
/** small ghost button */
|
|
52558
|
+
.ghost :is(a, button).small > kol-span-wc {
|
|
52559
|
+
border: none;
|
|
52560
|
+
background-color: transparent;
|
|
52561
|
+
box-shadow: none;
|
|
52562
|
+
}
|
|
52563
|
+
.ghost :is(a, button).small > kol-span-wc > span {
|
|
52564
|
+
border-radius: 1.5em;
|
|
52565
|
+
border-style: solid;
|
|
52566
|
+
border-width: var(--border-width);
|
|
52567
|
+
border-color: var(--color-light);
|
|
52568
|
+
background-color: var(--color-light);
|
|
52569
|
+
}
|
|
52570
|
+
.ghost :is(a, button).small:active > kol-span-wc > span,
|
|
52571
|
+
.ghost :is(a, button).small:hover > kol-span-wc > span,
|
|
52572
|
+
.ghost :is(a, button).small.transparent:active > kol-span-wc > span,
|
|
52573
|
+
.ghost :is(a, button).small.transparent:hover > kol-span-wc > span {
|
|
52574
|
+
background-color: var(--color-primary-variant);
|
|
52575
|
+
border-color: var(--color-primary-variant);
|
|
52576
|
+
box-shadow: 0px 2px 8px 2px rgba(8, 35, 48, 0.24);
|
|
52577
|
+
color: var(--color-light);
|
|
52578
|
+
} /** :is(a,button) with transparent background */
|
|
52579
|
+
:is(a, button).transparent > kol-span-wc > span,
|
|
52580
|
+
.ghost :is(a, button).small.transparent > kol-span-wc > span,
|
|
52581
|
+
:is(a, button).transparent > kol-span-wc {
|
|
52582
|
+
background-color: transparent;
|
|
52583
|
+
border-color: transparent;
|
|
52584
|
+
}
|
|
52585
|
+
`,
|
|
52586
|
+
"KOL-BUTTON-LINK": css`
|
|
52587
|
+
:is(a, button) {
|
|
52588
|
+
color: var(--color-primary);
|
|
52589
|
+
font-style: normal;
|
|
52590
|
+
font-weight: 400;
|
|
52591
|
+
text-decoration-line: underline;
|
|
52592
|
+
font-size: inherit;
|
|
52593
|
+
}
|
|
52594
|
+
:is(a, button):focus {
|
|
52595
|
+
outline: none;
|
|
52596
|
+
}
|
|
52597
|
+
:is(a, button):focus kol-span-wc {
|
|
52598
|
+
border-radius: var(--border-radius);
|
|
52599
|
+
outline: calc(var(--border-width) * 2) solid;
|
|
52600
|
+
}
|
|
52601
|
+
:is(a, button):hover {
|
|
52602
|
+
text-decoration-thickness: 0.25em;
|
|
52603
|
+
}
|
|
52604
|
+
:is(a, button):visited {
|
|
52605
|
+
color: var(--visited);
|
|
52606
|
+
}
|
|
52607
|
+
.hidden {
|
|
52608
|
+
display: none;
|
|
52609
|
+
visibility: hidden;
|
|
52610
|
+
}
|
|
52611
|
+
.skip {
|
|
52612
|
+
left: -99999px;
|
|
52613
|
+
overflow: hidden;
|
|
52614
|
+
position: absolute;
|
|
52615
|
+
z-index: 9999999;
|
|
52616
|
+
}
|
|
52617
|
+
.skip:focus {
|
|
52618
|
+
background: white;
|
|
52619
|
+
left: unset;
|
|
52620
|
+
position: unset;
|
|
52621
|
+
}
|
|
52622
|
+
`,
|
|
52623
|
+
"KOL-ABBR": css`
|
|
52624
|
+
abbr {
|
|
52625
|
+
border-bottom: dashed var(--color-text) 1px;
|
|
52626
|
+
text-decoration: none !important;
|
|
52627
|
+
}
|
|
52628
|
+
`,
|
|
52629
|
+
"KOL-BREADCRUMB": css`
|
|
52630
|
+
li:has(:is(kol-icon + kol-link, kol-icon + span)) kol-icon {
|
|
52631
|
+
font-size: 0.75rem;
|
|
52632
|
+
color: var(--color-subtle);
|
|
52633
|
+
}
|
|
52634
|
+
kol-link::part(icon) {
|
|
52635
|
+
font-size: 1.25rem;
|
|
52636
|
+
}
|
|
52637
|
+
ul li > :is(span, kol-link) {
|
|
52638
|
+
line-height: 1.25rem;
|
|
52639
|
+
height: 20px;
|
|
52640
|
+
}
|
|
52641
|
+
ul li:last-child > span {
|
|
52642
|
+
color: var(--color-subtle);
|
|
52643
|
+
}
|
|
52644
|
+
`,
|
|
52645
|
+
"KOL-MODAL": css`
|
|
52646
|
+
:host .overlay .modal {
|
|
52647
|
+
max-height: calc(100% - 32px);
|
|
52648
|
+
}
|
|
52649
|
+
`,
|
|
52650
|
+
"KOL-ICON": css`
|
|
52651
|
+
:host {
|
|
52652
|
+
width: 1em;
|
|
52653
|
+
height: 1em;
|
|
52654
|
+
}
|
|
52655
|
+
:host > i {
|
|
52656
|
+
width: 1em;
|
|
52657
|
+
height: 1em;
|
|
52658
|
+
}
|
|
52659
|
+
`,
|
|
52660
|
+
"KOL-SKIP-NAV": css`
|
|
52661
|
+
kol-link-wc > a > kol-span-wc {
|
|
52662
|
+
border-radius: var(--a11y-min-size);
|
|
52663
|
+
border-style: solid;
|
|
52664
|
+
border-width: var(--border-width);
|
|
52665
|
+
gap: calc(var(--spacing) * 2);
|
|
52666
|
+
line-height: 1rem;
|
|
52667
|
+
padding: 8px 14px;
|
|
52668
|
+
background-color: var(--color-primary-variant);
|
|
52669
|
+
border-color: var(--color-primary-variant);
|
|
52670
|
+
color: var(--color-light);
|
|
52671
|
+
cursor: pointer;
|
|
52672
|
+
}
|
|
52673
|
+
`
|
|
52674
|
+
});
|
|
52675
|
+
|
|
52676
|
+
const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
52677
|
+
GLOBAL: `:host {
|
|
52678
|
+
--border-color: var(--color-neutral);
|
|
52679
|
+
--border-radius: 0.25rem;
|
|
52680
|
+
--box-shadow: rgba(0, 0, 0, 0.12) 0 12px 12px -4px,
|
|
52681
|
+
rgba(0, 0, 0, 0.04) 0 4px 4px -4px;
|
|
52682
|
+
--color-blau: #264f8e;
|
|
52683
|
+
--color-blau-dark: #08335e;
|
|
52684
|
+
--color-blau-light: #326cae;
|
|
52685
|
+
--color-akzent: #ef9e48;
|
|
52686
|
+
--color-akzent-dark: #da793c;
|
|
52687
|
+
--color-akzent-light: #f5ba6c;
|
|
52688
|
+
--color-neutral: #e3e3e3;
|
|
52689
|
+
--color-neutral-dark: #646464;
|
|
52690
|
+
--color-neutral-light: #f7f7f7;
|
|
52691
|
+
--color-rot: #ce3033;
|
|
52692
|
+
--color-gelb: #f6cd35;
|
|
52693
|
+
--color-gruen: #008549;
|
|
52694
|
+
--color-grau-100: hsl(0 0% 0%);
|
|
52695
|
+
--color-grau-90: hsl(0 0% 10%);
|
|
52696
|
+
--color-grau-80: hsl(0 0% 20%);
|
|
52697
|
+
--color-grau-70: hsl(0 0% 30%);
|
|
52698
|
+
--color-grau-60: hsl(0 0% 40%);
|
|
52699
|
+
--color-grau-50: hsl(0 0% 50%);
|
|
52700
|
+
--color-grau-40: hsl(0 0% 60%);
|
|
52701
|
+
--color-grau-30: hsl(0 0% 70%);
|
|
52702
|
+
--color-grau-20: hsl(0 0% 80%);
|
|
52703
|
+
--color-grau-10: hsl(0 0% 90%);
|
|
52704
|
+
--color-grau-0: hsl(0 0% 100%);
|
|
52705
|
+
--gap: 0.25rem;
|
|
52706
|
+
--spacing: 0.25rem;
|
|
52707
|
+
--font-family: Roboto, Kreon, Georgia, Times New Roman, sans-serif;
|
|
52708
|
+
--font-size: 16px;
|
|
52709
|
+
--font-weight-bold: 700;
|
|
52710
|
+
--line-height-bold: 1.2em; /* em! */
|
|
52711
|
+
--line-height-regular: 1.5em; /* em! */
|
|
52712
|
+
}
|
|
52713
|
+
*[tabindex]:focus,
|
|
52714
|
+
a:focus,
|
|
52715
|
+
button:focus,
|
|
52716
|
+
summary:focus,
|
|
52717
|
+
kol-input:not(.checkbox, .radio) .input:focus-within,
|
|
52718
|
+
kol-input:is(.checkbox, .radio) input:focus {
|
|
52719
|
+
outline-color: var(--color-blau-dark);
|
|
52720
|
+
outline-offset: 0.125rem;
|
|
52721
|
+
outline-style: solid;
|
|
52722
|
+
outline-width: 0.125rem;
|
|
52723
|
+
transition: outline-offset 0.25s linear;
|
|
52724
|
+
}
|
|
52725
|
+
*:not(i) {
|
|
52726
|
+
font-family: var(--font-family);
|
|
52727
|
+
}
|
|
52728
|
+
a,
|
|
52729
|
+
button {
|
|
52730
|
+
font-size: var(--font-size);
|
|
52731
|
+
outline: none;
|
|
52732
|
+
}
|
|
52733
|
+
h1,
|
|
52734
|
+
h2,
|
|
52735
|
+
h3,
|
|
52736
|
+
h4,
|
|
52737
|
+
h5,
|
|
52738
|
+
h6 {
|
|
52739
|
+
font-weight: var(--font-weight-bold);
|
|
52740
|
+
line-height: var(--line-height-heading);
|
|
52741
|
+
margin: 0;
|
|
52742
|
+
padding: 0;
|
|
52743
|
+
}
|
|
52744
|
+
p {
|
|
52745
|
+
font-weight: var(--font-weight);
|
|
52746
|
+
}
|
|
52747
|
+
kol-span-wc,
|
|
52748
|
+
kol-span-wc > span {
|
|
52749
|
+
gap: 0.5em;
|
|
52750
|
+
}
|
|
52751
|
+
.required label span::after,
|
|
52752
|
+
.required legend span::after {
|
|
52753
|
+
color: var(--color-red);
|
|
52754
|
+
padding-left: 0.25em;
|
|
52755
|
+
}
|
|
52756
|
+
kol-tooltip .tooltip-area {
|
|
52757
|
+
background-color: #f2f2f2;
|
|
52758
|
+
}
|
|
52759
|
+
kol-tooltip .tooltip-arrow {
|
|
52760
|
+
background-color: #626262;
|
|
52761
|
+
}
|
|
52762
|
+
kol-tooltip .tooltip-content {
|
|
52763
|
+
padding: 0.25rem 0.5rem;
|
|
52764
|
+
font-size: 0.875rem;
|
|
52765
|
+
line-height: 1.25rem;
|
|
52766
|
+
border-radius: 2px;
|
|
52767
|
+
border: 1px solid #626262;
|
|
52768
|
+
}`,
|
|
52769
|
+
"KOL-BADGE": `:host {
|
|
52770
|
+
display: inline-block;
|
|
52771
|
+
}
|
|
52772
|
+
:host > span {
|
|
52773
|
+
border-radius: 0.3125rem;
|
|
52774
|
+
display: inline-flex;
|
|
52775
|
+
line-height: 1.25rem;
|
|
52776
|
+
}
|
|
52777
|
+
:host > span kol-span-wc {
|
|
52778
|
+
padding: 0.25rem 0.5rem;
|
|
52779
|
+
}
|
|
52780
|
+
:host > span > kol-span-wc {
|
|
52781
|
+
align-items: center;
|
|
52782
|
+
font-style: normal;
|
|
52783
|
+
gap: 0.5rem;
|
|
52784
|
+
}
|
|
52785
|
+
:host > span > kol-span-wc > span {
|
|
52786
|
+
display: flex;
|
|
52787
|
+
gap: 0.25rem;
|
|
52788
|
+
}
|
|
52789
|
+
:host button {
|
|
52790
|
+
border-radius: 0 var(--spacing) var(--spacing) 0;
|
|
52791
|
+
}`,
|
|
52792
|
+
"KOL-HEADING": `h1,
|
|
52793
|
+
h2,
|
|
52794
|
+
h3,
|
|
52795
|
+
h4,
|
|
52796
|
+
h5,
|
|
52797
|
+
h6 {
|
|
52798
|
+
font-weight: var(--font-weight-bold);
|
|
52799
|
+
margin: 0;
|
|
52800
|
+
padding: 1rem 0;
|
|
52801
|
+
text-align: left;
|
|
52802
|
+
}
|
|
52803
|
+
h1 {
|
|
52804
|
+
font-size: 2.5rem;
|
|
52805
|
+
line-height: 1.2;
|
|
52806
|
+
padding: 0 0 1rem 0;
|
|
52807
|
+
}
|
|
52808
|
+
h2 {
|
|
52809
|
+
font-size: 2rem;
|
|
52810
|
+
line-height: 1.25;
|
|
52811
|
+
}
|
|
52812
|
+
h3 {
|
|
52813
|
+
font-size: 1.75rem;
|
|
52814
|
+
line-height: 1.29;
|
|
52815
|
+
}
|
|
52816
|
+
h4 {
|
|
52817
|
+
font-size: 1.5rem;
|
|
52818
|
+
line-height: 1.33;
|
|
52819
|
+
}
|
|
52820
|
+
h5 {
|
|
52821
|
+
font-size: 1.25rem;
|
|
52822
|
+
line-height: 1.4;
|
|
52823
|
+
}
|
|
52824
|
+
h6 {
|
|
52825
|
+
font-size: 1rem;
|
|
52826
|
+
line-height: 1.5;
|
|
52827
|
+
}`,
|
|
52828
|
+
"KOL-LINK": `:is(a, button) {
|
|
52829
|
+
align-items: baseline;
|
|
52830
|
+
color: var(--color-blau);
|
|
52831
|
+
gap: 0.25em;
|
|
52832
|
+
text-decoration-line: none;
|
|
52833
|
+
}
|
|
52834
|
+
a:active,
|
|
52835
|
+
a:focus,
|
|
52836
|
+
a:hover,
|
|
52837
|
+
button:active,
|
|
52838
|
+
button:focus,
|
|
52839
|
+
button:hover {
|
|
52840
|
+
outline-width: 0;
|
|
52841
|
+
text-decoration-line: underline;
|
|
52842
|
+
text-decoration-thickness: 0.1rem !important;
|
|
52843
|
+
}
|
|
52844
|
+
:is(a, button) > kol-span-wc {
|
|
52845
|
+
order: 1;
|
|
52846
|
+
gap: 0.25em;
|
|
52847
|
+
}
|
|
52848
|
+
:is(a, button) > kol-span-wc > span {
|
|
52849
|
+
align-items: baseline;
|
|
52850
|
+
gap: 0.25em;
|
|
52851
|
+
}
|
|
52852
|
+
.hidden {
|
|
52853
|
+
display: none;
|
|
52854
|
+
visibility: hidden;
|
|
52855
|
+
}
|
|
52856
|
+
.skip {
|
|
52857
|
+
left: -99999px;
|
|
52858
|
+
overflow: hidden;
|
|
52859
|
+
position: absolute;
|
|
52860
|
+
z-index: 9999999;
|
|
52861
|
+
line-height: 1em;
|
|
52862
|
+
}
|
|
52863
|
+
.skip:focus {
|
|
52864
|
+
background: white;
|
|
52865
|
+
left: unset;
|
|
52866
|
+
position: unset;
|
|
52867
|
+
}`,
|
|
52868
|
+
"KOL-BUTTON-LINK": `:is(a, button) {
|
|
52869
|
+
align-items: baseline;
|
|
52870
|
+
color: var(--color-blau);
|
|
52871
|
+
gap: 0.25em;
|
|
52872
|
+
text-decoration-line: none;
|
|
52873
|
+
}
|
|
52874
|
+
a:active,
|
|
52875
|
+
a:focus,
|
|
52876
|
+
a:hover,
|
|
52877
|
+
button:active,
|
|
52878
|
+
button:focus,
|
|
52879
|
+
button:hover {
|
|
52880
|
+
outline-width: 0;
|
|
52881
|
+
text-decoration-line: underline;
|
|
52882
|
+
text-decoration-thickness: 0.1rem !important;
|
|
52883
|
+
}
|
|
52884
|
+
:is(a, button) > kol-span-wc {
|
|
52885
|
+
order: 1;
|
|
52886
|
+
gap: 0.25em;
|
|
52887
|
+
}
|
|
52888
|
+
:is(a, button) > kol-span-wc > span {
|
|
52889
|
+
align-items: baseline;
|
|
52890
|
+
gap: 0.25em;
|
|
52891
|
+
}
|
|
52892
|
+
.hidden {
|
|
52893
|
+
display: none;
|
|
52894
|
+
visibility: hidden;
|
|
52895
|
+
}
|
|
52896
|
+
.skip {
|
|
52897
|
+
left: -99999px;
|
|
52898
|
+
overflow: hidden;
|
|
52899
|
+
position: absolute;
|
|
52900
|
+
z-index: 9999999;
|
|
52901
|
+
line-height: 1em;
|
|
52902
|
+
}
|
|
52903
|
+
.skip:focus {
|
|
52904
|
+
background: white;
|
|
52905
|
+
left: unset;
|
|
52906
|
+
position: unset;
|
|
52907
|
+
}`,
|
|
52908
|
+
"KOL-SPIN": `.spin {
|
|
52909
|
+
display: inline-block;
|
|
52910
|
+
height: 1rem;
|
|
52911
|
+
position: relative;
|
|
52912
|
+
width: 3rem;
|
|
52913
|
+
}
|
|
52914
|
+
.spin span {
|
|
52915
|
+
animation-timing-function: cubic-bezier(0, 1, 1, 0);
|
|
52916
|
+
border: 0.1rem solid rgb(255, 255, 255);
|
|
52917
|
+
border-radius: 50%;
|
|
52918
|
+
height: 0.8rem;
|
|
52919
|
+
width: 0.8rem;
|
|
52920
|
+
top: 0.1rem;
|
|
52921
|
+
position: absolute;
|
|
52922
|
+
}
|
|
52923
|
+
.spin span:nth-child(1) {
|
|
52924
|
+
background-color: #fc0;
|
|
52925
|
+
z-index: 0;
|
|
52926
|
+
animation: 2s ease 0s infinite normal none running spin1;
|
|
52927
|
+
left: 0.1rem;
|
|
52928
|
+
}
|
|
52929
|
+
.spin span:nth-child(2) {
|
|
52930
|
+
background-color: #f00;
|
|
52931
|
+
z-index: 1;
|
|
52932
|
+
animation: 2s ease 0s infinite normal none running spin2;
|
|
52933
|
+
left: 0.1rem;
|
|
52934
|
+
}
|
|
52935
|
+
.spin span:nth-child(3) {
|
|
52936
|
+
background-color: #000;
|
|
52937
|
+
z-index: 1;
|
|
52938
|
+
animation: 2s ease 0s infinite normal none running spin2;
|
|
52939
|
+
left: 1.1rem;
|
|
52940
|
+
}
|
|
52941
|
+
.spin span:nth-child(4) {
|
|
52942
|
+
background-color: #666;
|
|
52943
|
+
z-index: 0;
|
|
52944
|
+
animation: 2s ease 0s infinite normal none running spin3;
|
|
52945
|
+
left: 2.1rem;
|
|
52946
|
+
}
|
|
52947
|
+
@keyframes spin1 {
|
|
52948
|
+
0% {
|
|
52949
|
+
transform: scale(0);
|
|
52950
|
+
}
|
|
52951
|
+
100% {
|
|
52952
|
+
transform: scale(1);
|
|
52953
|
+
}
|
|
52954
|
+
}
|
|
52955
|
+
@keyframes spin2 {
|
|
52956
|
+
0% {
|
|
52957
|
+
transform: translate(0px, 0px);
|
|
52958
|
+
}
|
|
52959
|
+
100% {
|
|
52960
|
+
transform: translate(1rem, 0px);
|
|
52961
|
+
}
|
|
52962
|
+
}
|
|
52963
|
+
@keyframes spin3 {
|
|
52964
|
+
0% {
|
|
52965
|
+
transform: scale(1);
|
|
52966
|
+
}
|
|
52967
|
+
100% {
|
|
52968
|
+
transform: scale(0);
|
|
52969
|
+
}
|
|
52970
|
+
}`,
|
|
52971
|
+
"KOL-TABLE": `caption {
|
|
52972
|
+
caption-side: TOP;
|
|
52973
|
+
font-size: 1.1rem; /* 1.75rem */ /* line-height: 3rem; */
|
|
52974
|
+
font-weight: var(--font-weight-bold);
|
|
52975
|
+
margin-bottom: 0.25rem;
|
|
52976
|
+
padding: 0.75rem;
|
|
52977
|
+
text-align: left;
|
|
52978
|
+
}
|
|
52979
|
+
table {
|
|
52980
|
+
border-spacing: 0;
|
|
52981
|
+
border-color: var(--color-neutral);
|
|
52982
|
+
border-style: solid;
|
|
52983
|
+
border-width: 0;
|
|
52984
|
+
border-top-width: 1px;
|
|
52985
|
+
}
|
|
52986
|
+
th {
|
|
52987
|
+
background-color: var(--color-neutral);
|
|
52988
|
+
}
|
|
52989
|
+
td,
|
|
52990
|
+
th {
|
|
52991
|
+
color: var(--color-neutral-dark);
|
|
52992
|
+
border-color: var(--color-neutral);
|
|
52993
|
+
border-style: solid;
|
|
52994
|
+
border-width: 0;
|
|
52995
|
+
border-bottom-width: 1px;
|
|
52996
|
+
padding: 0.5rem;
|
|
52997
|
+
}
|
|
52998
|
+
th[data-sort] kol-button::part(icon)::before {
|
|
52999
|
+
font-family: "FontAwesome";
|
|
53000
|
+
color: var(--color-neutral-dark);
|
|
53001
|
+
}
|
|
53002
|
+
th[data-sort="sort-NOS"] kol-button::part(icon)::before,
|
|
53003
|
+
th[data-sort="sort-undefined"] kol-button::part(icon)::before {
|
|
53004
|
+
content: "\f0dc";
|
|
53005
|
+
}
|
|
53006
|
+
th[data-sort="sort-ASC"] kol-button::part(icon)::before {
|
|
53007
|
+
content: "\f0de";
|
|
53008
|
+
}
|
|
53009
|
+
th[data-sort="sort-DESC"] kol-button::part(icon)::before {
|
|
53010
|
+
content: "\f0dd";
|
|
53011
|
+
}`,
|
|
53012
|
+
"KOL-ACCORDION": `:host > div {
|
|
53013
|
+
border-color: var(--border-color);
|
|
53014
|
+
border-radius: var(--border-radius);
|
|
53015
|
+
border-style: solid;
|
|
53016
|
+
border-width: 1px;
|
|
53017
|
+
}
|
|
53018
|
+
:host > div > kol-heading-wc > * {
|
|
53019
|
+
display: grid;
|
|
53020
|
+
margin: -1px;
|
|
53021
|
+
}
|
|
53022
|
+
:host > div > kol-heading-wc button > kol-span-wc {
|
|
53023
|
+
background-color: var(--color-neutral-light);
|
|
53024
|
+
border-color: var(--border-color);
|
|
53025
|
+
border-radius: var(--border-radius);
|
|
53026
|
+
border-style: solid;
|
|
53027
|
+
border-width: 2px;
|
|
53028
|
+
color: var(--color-blau);
|
|
53029
|
+
font-weight: var(--font-weight-bold);
|
|
53030
|
+
text-align: left;
|
|
53031
|
+
padding: 1.5rem;
|
|
53032
|
+
}
|
|
53033
|
+
:host > div > kol-heading-wc button:hover > kol-span-wc {
|
|
53034
|
+
border-color: var(--color-blau-dark);
|
|
53035
|
+
}
|
|
53036
|
+
:host > div > kol-heading-wc button > kol-span-wc > span {
|
|
53037
|
+
gap: 0.5em;
|
|
53038
|
+
}
|
|
53039
|
+
.content,
|
|
53040
|
+
[part*="content"] {
|
|
53041
|
+
padding: 1.5rem 1.5rem 2rem 1.5rem;
|
|
53042
|
+
}
|
|
53043
|
+
:host > div > kol-heading-wc button kol-icon::part(icon) {
|
|
53044
|
+
font-family: "Font Awesome 6 Free";
|
|
53045
|
+
font-weight: 900;
|
|
53046
|
+
}
|
|
53047
|
+
:host > div.open > kol-heading-wc button kol-icon::part(icon)::before {
|
|
53048
|
+
content: "\\f077";
|
|
53049
|
+
}
|
|
53050
|
+
:host > div.close > kol-heading-wc button kol-icon::part(icon)::before {
|
|
53051
|
+
content: "\\f078";
|
|
53052
|
+
}`,
|
|
53053
|
+
"KOL-ALERT": `kol-alert-wc {
|
|
53054
|
+
border-width: 2px;
|
|
53055
|
+
border-style: solid;
|
|
53056
|
+
border-radius: 0.25rem;
|
|
53057
|
+
color: var(--color-neutral-dark);
|
|
53058
|
+
}
|
|
53059
|
+
kol-alert-wc .content {
|
|
53060
|
+
font-style: italic;
|
|
53061
|
+
font-size: 0.8rem;
|
|
53062
|
+
}
|
|
53063
|
+
.card {
|
|
53064
|
+
display: grid;
|
|
53065
|
+
gap: 0.625rem;
|
|
53066
|
+
padding: 1.5rem 1.5rem 2rem 1.5rem;
|
|
53067
|
+
}
|
|
53068
|
+
.card .heading .heading-icon {
|
|
53069
|
+
align-items: center;
|
|
53070
|
+
display: inline-flex;
|
|
53071
|
+
font-size: 2rem;
|
|
53072
|
+
margin-right: 1.5rem;
|
|
53073
|
+
padding: 0;
|
|
53074
|
+
}
|
|
53075
|
+
.default {
|
|
53076
|
+
border-color: var(--color-neutral-dark);
|
|
53077
|
+
}
|
|
53078
|
+
.card.default .heading {
|
|
53079
|
+
color: var(--color-neutral-dark);
|
|
53080
|
+
}
|
|
53081
|
+
.info {
|
|
53082
|
+
border-color: var(--color-blau);
|
|
53083
|
+
}
|
|
53084
|
+
.card.info .heading {
|
|
53085
|
+
color: var(--color-blau);
|
|
53086
|
+
}
|
|
53087
|
+
.warning {
|
|
53088
|
+
background-color: var(--color-gelb);
|
|
53089
|
+
border-color: var(--color-gelb);
|
|
53090
|
+
}
|
|
53091
|
+
.card.warning .heading {
|
|
53092
|
+
color: var(--color-neutral-dark);
|
|
53093
|
+
}
|
|
53094
|
+
.error {
|
|
53095
|
+
border-color: var(--color-rot);
|
|
53096
|
+
}
|
|
53097
|
+
.card.error .heading {
|
|
53098
|
+
color: var(--color-rot);
|
|
53099
|
+
}
|
|
53100
|
+
.success {
|
|
53101
|
+
border-color: var(--color-gruen);
|
|
53102
|
+
}
|
|
53103
|
+
.card.success .heading {
|
|
53104
|
+
color: var(--color-gruen);
|
|
53105
|
+
}
|
|
53106
|
+
.card .content {
|
|
53107
|
+
line-height: 1.5rem;
|
|
53108
|
+
padding-left: 3.5rem;
|
|
53109
|
+
}
|
|
53110
|
+
.msg {
|
|
53111
|
+
border-width: 0;
|
|
53112
|
+
display: flex;
|
|
53113
|
+
gap: calc(2 * var(--gap));
|
|
53114
|
+
padding: var(--gap);
|
|
53115
|
+
}
|
|
53116
|
+
.msg .heading {
|
|
53117
|
+
display: flex;
|
|
53118
|
+
gap: var(--spacing);
|
|
53119
|
+
flex-grow: 1;
|
|
53120
|
+
align-items: flex-start;
|
|
53121
|
+
}
|
|
53122
|
+
.msg .heading > div {
|
|
53123
|
+
display: flex;
|
|
53124
|
+
flex-direction: column;
|
|
53125
|
+
flex-grow: 1;
|
|
53126
|
+
}
|
|
53127
|
+
.info .heading kol-icon.heading-icon {
|
|
53128
|
+
display: grid;
|
|
53129
|
+
place-items: center;
|
|
53130
|
+
background-color: var(--color-blau);
|
|
53131
|
+
border-radius: 100%;
|
|
53132
|
+
min-width: 2em;
|
|
53133
|
+
min-height: 2em;
|
|
53134
|
+
}
|
|
53135
|
+
.card.info .heading kol-icon.heading-icon {
|
|
53136
|
+
font-size: 1em;
|
|
53137
|
+
}
|
|
50710
53138
|
.msg.info .heading kol-icon.heading-icon {
|
|
50711
53139
|
font-size: 0.5em;
|
|
50712
53140
|
}
|
|
@@ -51035,13 +53463,19 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
51035
53463
|
border-style: solid;
|
|
51036
53464
|
}
|
|
51037
53465
|
label {
|
|
51038
|
-
cursor: pointer;
|
|
51039
53466
|
padding-left: 0.75rem;
|
|
51040
53467
|
}
|
|
51041
|
-
kol-input:hover label,
|
|
51042
|
-
kol-input:focus-within label {
|
|
53468
|
+
kol-input:not(.disabled):hover label,
|
|
53469
|
+
kol-input:not(.disabled):focus-within label {
|
|
51043
53470
|
text-decoration: underline;
|
|
51044
53471
|
}
|
|
53472
|
+
:host kol-input:not(.disabled) :is(.input, label) {
|
|
53473
|
+
cursor: pointer;
|
|
53474
|
+
}
|
|
53475
|
+
:host kol-input.disabled :is(.input, label),
|
|
53476
|
+
:host kol-input.disabled input[type="checkbox"]::before {
|
|
53477
|
+
cursor: not-allowed;
|
|
53478
|
+
}
|
|
51045
53479
|
.required label > span::after {
|
|
51046
53480
|
content: "*";
|
|
51047
53481
|
padding-left: 0.125em;
|
|
@@ -51076,15 +53510,10 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
51076
53510
|
input[type="checkbox"] {
|
|
51077
53511
|
appearance: none;
|
|
51078
53512
|
background-color: white;
|
|
51079
|
-
cursor: pointer;
|
|
51080
53513
|
transition: 0.5s;
|
|
51081
53514
|
}
|
|
51082
|
-
input[type="checkbox"].kol-disabled:before {
|
|
51083
|
-
cursor: not-allowed;
|
|
51084
|
-
}
|
|
51085
53515
|
input[type="checkbox"]:before {
|
|
51086
53516
|
content: "";
|
|
51087
|
-
cursor: pointer;
|
|
51088
53517
|
}
|
|
51089
53518
|
input[type="checkbox"]:checked,
|
|
51090
53519
|
input[type="checkbox"]:indeterminate {
|
|
@@ -51274,8 +53703,8 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
51274
53703
|
gap: var(--gap);
|
|
51275
53704
|
overflow: hidden;
|
|
51276
53705
|
}
|
|
51277
|
-
kol-input .input:focus-within,
|
|
51278
|
-
kol-input .input:hover {
|
|
53706
|
+
kol-input:not(.disabled) .input:focus-within,
|
|
53707
|
+
kol-input:not(.disabled) .input:hover {
|
|
51279
53708
|
border-color: var(--color-grau-60);
|
|
51280
53709
|
}
|
|
51281
53710
|
kol-input:not(.select, .textarea) .input {
|
|
@@ -51320,8 +53749,8 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
51320
53749
|
gap: var(--gap);
|
|
51321
53750
|
overflow: hidden;
|
|
51322
53751
|
}
|
|
51323
|
-
kol-input .input:focus-within,
|
|
51324
|
-
kol-input .input:hover {
|
|
53752
|
+
kol-input:not(.disabled) .input:focus-within,
|
|
53753
|
+
kol-input:not(.disabled) .input:hover {
|
|
51325
53754
|
border-color: var(--color-grau-60);
|
|
51326
53755
|
}
|
|
51327
53756
|
kol-input:not(.select, .textarea) .input {
|
|
@@ -51366,8 +53795,8 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
51366
53795
|
gap: var(--gap);
|
|
51367
53796
|
overflow: hidden;
|
|
51368
53797
|
}
|
|
51369
|
-
kol-input .input:focus-within,
|
|
51370
|
-
kol-input .input:hover {
|
|
53798
|
+
kol-input:not(.disabled) .input:focus-within,
|
|
53799
|
+
kol-input:not(.disabled) .input:hover {
|
|
51371
53800
|
border-color: var(--color-grau-60);
|
|
51372
53801
|
}
|
|
51373
53802
|
kol-input:not(.select, .textarea) .input {
|
|
@@ -51412,8 +53841,8 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
51412
53841
|
gap: var(--gap);
|
|
51413
53842
|
overflow: hidden;
|
|
51414
53843
|
}
|
|
51415
|
-
kol-input .input:focus-within,
|
|
51416
|
-
kol-input .input:hover {
|
|
53844
|
+
kol-input:not(.disabled) .input:focus-within,
|
|
53845
|
+
kol-input:not(.disabled) .input:hover {
|
|
51417
53846
|
border-color: var(--color-grau-60);
|
|
51418
53847
|
}
|
|
51419
53848
|
kol-input:not(.select, .textarea) .input {
|
|
@@ -51458,8 +53887,8 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
51458
53887
|
gap: var(--gap);
|
|
51459
53888
|
overflow: hidden;
|
|
51460
53889
|
}
|
|
51461
|
-
kol-input .input:focus-within,
|
|
51462
|
-
kol-input .input:hover {
|
|
53890
|
+
kol-input:not(.disabled) .input:focus-within,
|
|
53891
|
+
kol-input:not(.disabled) .input:hover {
|
|
51463
53892
|
border-color: var(--color-grau-60);
|
|
51464
53893
|
}
|
|
51465
53894
|
kol-input:not(.select, .textarea) .input {
|
|
@@ -51504,8 +53933,8 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
51504
53933
|
gap: var(--gap);
|
|
51505
53934
|
overflow: hidden;
|
|
51506
53935
|
}
|
|
51507
|
-
kol-input .input:focus-within,
|
|
51508
|
-
kol-input .input:hover {
|
|
53936
|
+
kol-input:not(.disabled) .input:focus-within,
|
|
53937
|
+
kol-input:not(.disabled) .input:hover {
|
|
51509
53938
|
border-color: var(--color-grau-60);
|
|
51510
53939
|
}
|
|
51511
53940
|
kol-input:not(.select, .textarea) .input {
|
|
@@ -51550,8 +53979,8 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
51550
53979
|
gap: var(--gap);
|
|
51551
53980
|
overflow: hidden;
|
|
51552
53981
|
}
|
|
51553
|
-
kol-input .input:focus-within,
|
|
51554
|
-
kol-input .input:hover {
|
|
53982
|
+
kol-input:not(.disabled) .input:focus-within,
|
|
53983
|
+
kol-input:not(.disabled) .input:hover {
|
|
51555
53984
|
border-color: var(--color-grau-60);
|
|
51556
53985
|
}
|
|
51557
53986
|
kol-input:not(.select, .textarea) .input {
|
|
@@ -51596,8 +54025,8 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
51596
54025
|
gap: var(--gap);
|
|
51597
54026
|
overflow: hidden;
|
|
51598
54027
|
}
|
|
51599
|
-
kol-input .input:focus-within,
|
|
51600
|
-
kol-input .input:hover {
|
|
54028
|
+
kol-input:not(.disabled) .input:focus-within,
|
|
54029
|
+
kol-input:not(.disabled) .input:hover {
|
|
51601
54030
|
border-color: var(--color-grau-60);
|
|
51602
54031
|
}
|
|
51603
54032
|
kol-input:not(.select, .textarea) .input {
|
|
@@ -51893,8 +54322,8 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
51893
54322
|
gap: var(--gap);
|
|
51894
54323
|
overflow: hidden;
|
|
51895
54324
|
}
|
|
51896
|
-
kol-input .input:focus-within,
|
|
51897
|
-
kol-input .input:hover {
|
|
54325
|
+
kol-input:not(.disabled) .input:focus-within,
|
|
54326
|
+
kol-input:not(.disabled) .input:hover {
|
|
51898
54327
|
border-color: var(--color-grau-60);
|
|
51899
54328
|
}
|
|
51900
54329
|
kol-input:not(.select, .textarea) .input {
|
|
@@ -51939,8 +54368,8 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
51939
54368
|
gap: var(--gap);
|
|
51940
54369
|
overflow: hidden;
|
|
51941
54370
|
}
|
|
51942
|
-
kol-input .input:focus-within,
|
|
51943
|
-
kol-input .input:hover {
|
|
54371
|
+
kol-input:not(.disabled) .input:focus-within,
|
|
54372
|
+
kol-input:not(.disabled) .input:hover {
|
|
51944
54373
|
border-color: var(--color-grau-60);
|
|
51945
54374
|
}
|
|
51946
54375
|
kol-input:not(.select, .textarea) .input {
|
|
@@ -51973,6 +54402,9 @@ const ZOLLv2 = KoliBri.createTheme("zoll-v2", {
|
|
|
51973
54402
|
}
|
|
51974
54403
|
kol-input > kol-alert.error {
|
|
51975
54404
|
order: 3;
|
|
54405
|
+
}
|
|
54406
|
+
.inputs-wrapper {
|
|
54407
|
+
gap: 1em;
|
|
51976
54408
|
}`,
|
|
51977
54409
|
"KOL-ICON": `/*! * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) * Copyright 2022 Fonticons, Inc. */
|
|
51978
54410
|
.fa {
|
|
@@ -58879,4 +61311,5 @@ exports.EN = EN;
|
|
|
58879
61311
|
exports.ITZBund = ITZBund;
|
|
58880
61312
|
exports.MAPZ = MAPZ;
|
|
58881
61313
|
exports.MFM = MFM;
|
|
61314
|
+
exports.TOKEN_BASED = TOKEN_BASED;
|
|
58882
61315
|
exports.ZOLLv2 = ZOLLv2;
|