@oslokommune/punkt-css 17.1.3 → 18.3.0
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/CHANGELOG.md +18 -0
- package/dist/css/components/calendar.css +2 -2
- package/dist/css/components/calendar.min.css +1 -1
- package/dist/css/components/card.css +3 -3
- package/dist/css/components/card.min.css +1 -1
- package/dist/css/components/fileupload.css +7 -7
- package/dist/css/components/fileupload.min.css +1 -1
- package/dist/css/components/footer.css +1 -1
- package/dist/css/components/footer.min.css +1 -1
- package/dist/css/components/header.css +1 -1
- package/dist/css/components/header.min.css +1 -1
- package/dist/css/components/inputwrapper.css +1 -1
- package/dist/css/components/inputwrapper.min.css +1 -1
- package/dist/css/components/listbox.css +2 -2
- package/dist/css/components/listbox.min.css +1 -1
- package/dist/css/components/loader.css +4 -4
- package/dist/css/components/loader.min.css +1 -1
- package/dist/css/components/modal.css +1 -1
- package/dist/css/components/modal.min.css +1 -1
- package/dist/css/components/progressbar.css +1 -1
- package/dist/css/components/progressbar.min.css +1 -1
- package/dist/css/components/stepper.css +5 -5
- package/dist/css/components/stepper.min.css +1 -1
- package/dist/css/components/tag.css +4 -18
- package/dist/css/components/tag.min.css +1 -1
- package/dist/css/elements/button.css +70 -48
- package/dist/css/elements/button.min.css +1 -1
- package/dist/css/elements/checkbox-radio.css +3 -3
- package/dist/css/elements/checkbox-radio.min.css +1 -1
- package/dist/css/elements/form.css +4 -4
- package/dist/css/elements/form.min.css +1 -1
- package/dist/css/elements/hr.css +1 -1
- package/dist/css/elements/hr.min.css +1 -1
- package/dist/css/elements/input.css +1 -1
- package/dist/css/elements/input.min.css +1 -1
- package/dist/css/elements/list.css +1 -1
- package/dist/css/elements/list.min.css +1 -1
- package/dist/css/elements/section.css +11 -108
- package/dist/css/elements/section.min.css +1 -1
- package/dist/css/pkt-base.css +708 -75
- package/dist/css/pkt-base.min.css +1 -1
- package/dist/css/pkt-components.css +32 -88
- package/dist/css/pkt-components.min.css +1 -1
- package/dist/css/pkt-docs.css +832 -330
- package/dist/css/pkt-docs.min.css +1 -1
- package/dist/css/pkt-elements.css +91 -166
- package/dist/css/pkt-elements.min.css +1 -1
- package/dist/css/pkt-tokens.css +113 -68
- package/dist/css/pkt-tokens.min.css +1 -1
- package/dist/css/pkt-utilities.css +594 -6
- package/dist/css/pkt-utilities.min.css +1 -1
- package/dist/css/pkt.css +831 -329
- package/dist/css/pkt.layer.css +684 -322
- package/dist/css/pkt.layer.min.css +1 -1
- package/dist/css/pkt.min.css +1 -1
- package/dist/scss/abstracts/functions/_index.scss +25 -0
- package/dist/scss/abstracts/variables/_colors.scss +155 -68
- package/dist/scss/abstracts/variables/_index.scss +1 -1
- package/dist/scss/base/_colors-tokens.scss +9 -75
- package/dist/scss/components/_calendar.scss +2 -2
- package/dist/scss/components/_card.scss +3 -3
- package/dist/scss/components/_fileupload.scss +8 -7
- package/dist/scss/components/_footer.scss +6 -5
- package/dist/scss/components/_header-service-mobile.scss +3 -2
- package/dist/scss/components/_header-shared.scss +3 -2
- package/dist/scss/components/_header.scss +1 -1
- package/dist/scss/components/_index.scss +0 -1
- package/dist/scss/components/_inputwrapper.scss +1 -1
- package/dist/scss/components/_listbox.scss +4 -2
- package/dist/scss/components/_loader.scss +5 -4
- package/dist/scss/components/_modal.scss +2 -1
- package/dist/scss/components/_progressbar.scss +1 -1
- package/dist/scss/components/_stepper.scss +5 -5
- package/dist/scss/components/_tag.scss +5 -17
- package/dist/scss/elements/_button.scss +71 -67
- package/dist/scss/elements/_form.scss +4 -4
- package/dist/scss/elements/_hr.scss +1 -1
- package/dist/scss/elements/_list.scss +3 -3
- package/dist/scss/elements/_section.scss +12 -40
- package/dist/scss/pkt-docs.scss +3 -1
- package/package.json +3 -3
- package/dist/css/components/badge.css +0 -41
- package/dist/css/components/badge.min.css +0 -1
- package/dist/scss/components/_badge.scss +0 -60
|
@@ -262,30 +262,126 @@
|
|
|
262
262
|
border-color: #ffffff !important;
|
|
263
263
|
}
|
|
264
264
|
|
|
265
|
-
.pkt-color-bg-brand-neutrals-
|
|
265
|
+
.pkt-color-bg-brand-neutrals-50 {
|
|
266
266
|
background-color: #f9f9f9 !important;
|
|
267
267
|
}
|
|
268
268
|
|
|
269
|
-
.pkt-color-txt-brand-neutrals-
|
|
269
|
+
.pkt-color-txt-brand-neutrals-50 {
|
|
270
270
|
color: #f9f9f9 !important;
|
|
271
271
|
}
|
|
272
272
|
|
|
273
|
-
.pkt-color-border-brand-neutrals-
|
|
273
|
+
.pkt-color-border-brand-neutrals-50 {
|
|
274
274
|
border-color: #f9f9f9 !important;
|
|
275
275
|
}
|
|
276
276
|
|
|
277
|
-
.pkt-color-bg-brand-neutrals-
|
|
277
|
+
.pkt-color-bg-brand-neutrals-100 {
|
|
278
278
|
background-color: #f2f2f2 !important;
|
|
279
279
|
}
|
|
280
280
|
|
|
281
|
-
.pkt-color-txt-brand-neutrals-
|
|
281
|
+
.pkt-color-txt-brand-neutrals-100 {
|
|
282
282
|
color: #f2f2f2 !important;
|
|
283
283
|
}
|
|
284
284
|
|
|
285
|
-
.pkt-color-border-brand-neutrals-
|
|
285
|
+
.pkt-color-border-brand-neutrals-100 {
|
|
286
286
|
border-color: #f2f2f2 !important;
|
|
287
287
|
}
|
|
288
288
|
|
|
289
|
+
.pkt-color-bg-brand-neutrals-200 {
|
|
290
|
+
background-color: #e6e6e6 !important;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.pkt-color-txt-brand-neutrals-200 {
|
|
294
|
+
color: #e6e6e6 !important;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.pkt-color-border-brand-neutrals-200 {
|
|
298
|
+
border-color: #e6e6e6 !important;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.pkt-color-bg-brand-neutrals-300 {
|
|
302
|
+
background-color: #cccccc !important;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.pkt-color-txt-brand-neutrals-300 {
|
|
306
|
+
color: #cccccc !important;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.pkt-color-border-brand-neutrals-300 {
|
|
310
|
+
border-color: #cccccc !important;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.pkt-color-bg-brand-neutrals-400 {
|
|
314
|
+
background-color: #b3b3b3 !important;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.pkt-color-txt-brand-neutrals-400 {
|
|
318
|
+
color: #b3b3b3 !important;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.pkt-color-border-brand-neutrals-400 {
|
|
322
|
+
border-color: #b3b3b3 !important;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.pkt-color-bg-brand-neutrals-500 {
|
|
326
|
+
background-color: #9a9a9a !important;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.pkt-color-txt-brand-neutrals-500 {
|
|
330
|
+
color: #9a9a9a !important;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.pkt-color-border-brand-neutrals-500 {
|
|
334
|
+
border-color: #9a9a9a !important;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.pkt-color-bg-brand-neutrals-600 {
|
|
338
|
+
background-color: #808080 !important;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.pkt-color-txt-brand-neutrals-600 {
|
|
342
|
+
color: #808080 !important;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.pkt-color-border-brand-neutrals-600 {
|
|
346
|
+
border-color: #808080 !important;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.pkt-color-bg-brand-neutrals-700 {
|
|
350
|
+
background-color: #666666 !important;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.pkt-color-txt-brand-neutrals-700 {
|
|
354
|
+
color: #666666 !important;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.pkt-color-border-brand-neutrals-700 {
|
|
358
|
+
border-color: #666666 !important;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.pkt-color-bg-brand-neutrals-800 {
|
|
362
|
+
background-color: #4d4d4d !important;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.pkt-color-txt-brand-neutrals-800 {
|
|
366
|
+
color: #4d4d4d !important;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.pkt-color-border-brand-neutrals-800 {
|
|
370
|
+
border-color: #4d4d4d !important;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.pkt-color-bg-brand-neutrals-900 {
|
|
374
|
+
background-color: #333333 !important;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.pkt-color-txt-brand-neutrals-900 {
|
|
378
|
+
color: #333333 !important;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.pkt-color-border-brand-neutrals-900 {
|
|
382
|
+
border-color: #333333 !important;
|
|
383
|
+
}
|
|
384
|
+
|
|
289
385
|
.pkt-color-bg-brand-neutrals-1000 {
|
|
290
386
|
background-color: #2c2c2c !important;
|
|
291
387
|
}
|
|
@@ -730,6 +826,18 @@
|
|
|
730
826
|
border-color: var(--pkt-color-surface-default-light-green) !important;
|
|
731
827
|
}
|
|
732
828
|
|
|
829
|
+
.pkt-color-bg-surface-default-pale-blue {
|
|
830
|
+
background-color: var(--pkt-color-surface-default-pale-blue) !important;
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
.pkt-color-txt-surface-default-pale-blue {
|
|
834
|
+
color: var(--pkt-color-surface-default-pale-blue) !important;
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
.pkt-color-border-surface-default-pale-blue {
|
|
838
|
+
border-color: var(--pkt-color-surface-default-pale-blue) !important;
|
|
839
|
+
}
|
|
840
|
+
|
|
733
841
|
.pkt-color-bg-surface-default-red {
|
|
734
842
|
background-color: var(--pkt-color-surface-default-red) !important;
|
|
735
843
|
}
|
|
@@ -886,6 +994,18 @@
|
|
|
886
994
|
border-color: var(--pkt-color-surface-subtle-light-red) !important;
|
|
887
995
|
}
|
|
888
996
|
|
|
997
|
+
.pkt-color-bg-surface-subtle-gray {
|
|
998
|
+
background-color: var(--pkt-color-surface-subtle-gray) !important;
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
.pkt-color-txt-surface-subtle-gray {
|
|
1002
|
+
color: var(--pkt-color-surface-subtle-gray) !important;
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
.pkt-color-border-surface-subtle-gray {
|
|
1006
|
+
border-color: var(--pkt-color-surface-subtle-gray) !important;
|
|
1007
|
+
}
|
|
1008
|
+
|
|
889
1009
|
.pkt-color-bg-surface-subtle-pale-blue {
|
|
890
1010
|
background-color: var(--pkt-color-surface-subtle-pale-blue) !important;
|
|
891
1011
|
}
|
|
@@ -1030,6 +1150,18 @@
|
|
|
1030
1150
|
border-color: var(--pkt-color-input-background-disabled) !important;
|
|
1031
1151
|
}
|
|
1032
1152
|
|
|
1153
|
+
.pkt-color-bg-input-background-open {
|
|
1154
|
+
background-color: var(--pkt-color-input-background-open) !important;
|
|
1155
|
+
}
|
|
1156
|
+
|
|
1157
|
+
.pkt-color-txt-input-background-open {
|
|
1158
|
+
color: var(--pkt-color-input-background-open) !important;
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
.pkt-color-border-input-background-open {
|
|
1162
|
+
border-color: var(--pkt-color-input-background-open) !important;
|
|
1163
|
+
}
|
|
1164
|
+
|
|
1033
1165
|
.pkt-color-bg-input-border-active {
|
|
1034
1166
|
background-color: var(--pkt-color-input-border-active) !important;
|
|
1035
1167
|
}
|
|
@@ -1162,6 +1294,54 @@
|
|
|
1162
1294
|
border-color: var(--pkt-color-input-text-open) !important;
|
|
1163
1295
|
}
|
|
1164
1296
|
|
|
1297
|
+
.pkt-color-bg-tag-text-normal {
|
|
1298
|
+
background-color: var(--pkt-color-tag-text-normal) !important;
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
.pkt-color-txt-tag-text-normal {
|
|
1302
|
+
color: var(--pkt-color-tag-text-normal) !important;
|
|
1303
|
+
}
|
|
1304
|
+
|
|
1305
|
+
.pkt-color-border-tag-text-normal {
|
|
1306
|
+
border-color: var(--pkt-color-tag-text-normal) !important;
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
.pkt-color-bg-tag-text-hover {
|
|
1310
|
+
background-color: var(--pkt-color-tag-text-hover) !important;
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
|
+
.pkt-color-txt-tag-text-hover {
|
|
1314
|
+
color: var(--pkt-color-tag-text-hover) !important;
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1317
|
+
.pkt-color-border-tag-text-hover {
|
|
1318
|
+
border-color: var(--pkt-color-tag-text-hover) !important;
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
.pkt-color-bg-tag-text-active {
|
|
1322
|
+
background-color: var(--pkt-color-tag-text-active) !important;
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1325
|
+
.pkt-color-txt-tag-text-active {
|
|
1326
|
+
color: var(--pkt-color-tag-text-active) !important;
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1329
|
+
.pkt-color-border-tag-text-active {
|
|
1330
|
+
border-color: var(--pkt-color-tag-text-active) !important;
|
|
1331
|
+
}
|
|
1332
|
+
|
|
1333
|
+
.pkt-color-bg-tag-text-focus {
|
|
1334
|
+
background-color: var(--pkt-color-tag-text-focus) !important;
|
|
1335
|
+
}
|
|
1336
|
+
|
|
1337
|
+
.pkt-color-txt-tag-text-focus {
|
|
1338
|
+
color: var(--pkt-color-tag-text-focus) !important;
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
.pkt-color-border-tag-text-focus {
|
|
1342
|
+
border-color: var(--pkt-color-tag-text-focus) !important;
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1165
1345
|
.pkt-color-bg-input-check-background {
|
|
1166
1346
|
background-color: var(--pkt-color-input-check-background) !important;
|
|
1167
1347
|
}
|
|
@@ -1210,6 +1390,414 @@
|
|
|
1210
1390
|
border-color: var(--pkt-color-input-check-text-hover) !important;
|
|
1211
1391
|
}
|
|
1212
1392
|
|
|
1393
|
+
.pkt-color-bg-button-primary-background-normal {
|
|
1394
|
+
background-color: var(--pkt-color-button-primary-background-normal) !important;
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
.pkt-color-txt-button-primary-background-normal {
|
|
1398
|
+
color: var(--pkt-color-button-primary-background-normal) !important;
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
.pkt-color-border-button-primary-background-normal {
|
|
1402
|
+
border-color: var(--pkt-color-button-primary-background-normal) !important;
|
|
1403
|
+
}
|
|
1404
|
+
|
|
1405
|
+
.pkt-color-bg-button-primary-background-hover {
|
|
1406
|
+
background-color: var(--pkt-color-button-primary-background-hover) !important;
|
|
1407
|
+
}
|
|
1408
|
+
|
|
1409
|
+
.pkt-color-txt-button-primary-background-hover {
|
|
1410
|
+
color: var(--pkt-color-button-primary-background-hover) !important;
|
|
1411
|
+
}
|
|
1412
|
+
|
|
1413
|
+
.pkt-color-border-button-primary-background-hover {
|
|
1414
|
+
border-color: var(--pkt-color-button-primary-background-hover) !important;
|
|
1415
|
+
}
|
|
1416
|
+
|
|
1417
|
+
.pkt-color-bg-button-primary-background-focus {
|
|
1418
|
+
background-color: var(--pkt-color-button-primary-background-focus) !important;
|
|
1419
|
+
}
|
|
1420
|
+
|
|
1421
|
+
.pkt-color-txt-button-primary-background-focus {
|
|
1422
|
+
color: var(--pkt-color-button-primary-background-focus) !important;
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
.pkt-color-border-button-primary-background-focus {
|
|
1426
|
+
border-color: var(--pkt-color-button-primary-background-focus) !important;
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1429
|
+
.pkt-color-bg-button-primary-background-active {
|
|
1430
|
+
background-color: var(--pkt-color-button-primary-background-active) !important;
|
|
1431
|
+
}
|
|
1432
|
+
|
|
1433
|
+
.pkt-color-txt-button-primary-background-active {
|
|
1434
|
+
color: var(--pkt-color-button-primary-background-active) !important;
|
|
1435
|
+
}
|
|
1436
|
+
|
|
1437
|
+
.pkt-color-border-button-primary-background-active {
|
|
1438
|
+
border-color: var(--pkt-color-button-primary-background-active) !important;
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
.pkt-color-bg-button-primary-background-disabled {
|
|
1442
|
+
background-color: var(--pkt-color-button-primary-background-disabled) !important;
|
|
1443
|
+
}
|
|
1444
|
+
|
|
1445
|
+
.pkt-color-txt-button-primary-background-disabled {
|
|
1446
|
+
color: var(--pkt-color-button-primary-background-disabled) !important;
|
|
1447
|
+
}
|
|
1448
|
+
|
|
1449
|
+
.pkt-color-border-button-primary-background-disabled {
|
|
1450
|
+
border-color: var(--pkt-color-button-primary-background-disabled) !important;
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1453
|
+
.pkt-color-bg-button-primary-background-success {
|
|
1454
|
+
background-color: var(--pkt-color-button-primary-background-success) !important;
|
|
1455
|
+
}
|
|
1456
|
+
|
|
1457
|
+
.pkt-color-txt-button-primary-background-success {
|
|
1458
|
+
color: var(--pkt-color-button-primary-background-success) !important;
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1461
|
+
.pkt-color-border-button-primary-background-success {
|
|
1462
|
+
border-color: var(--pkt-color-button-primary-background-success) !important;
|
|
1463
|
+
}
|
|
1464
|
+
|
|
1465
|
+
.pkt-color-bg-button-primary-background-danger {
|
|
1466
|
+
background-color: var(--pkt-color-button-primary-background-danger) !important;
|
|
1467
|
+
}
|
|
1468
|
+
|
|
1469
|
+
.pkt-color-txt-button-primary-background-danger {
|
|
1470
|
+
color: var(--pkt-color-button-primary-background-danger) !important;
|
|
1471
|
+
}
|
|
1472
|
+
|
|
1473
|
+
.pkt-color-border-button-primary-background-danger {
|
|
1474
|
+
border-color: var(--pkt-color-button-primary-background-danger) !important;
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1477
|
+
.pkt-color-bg-button-primary-border-focus {
|
|
1478
|
+
background-color: var(--pkt-color-button-primary-border-focus) !important;
|
|
1479
|
+
}
|
|
1480
|
+
|
|
1481
|
+
.pkt-color-txt-button-primary-border-focus {
|
|
1482
|
+
color: var(--pkt-color-button-primary-border-focus) !important;
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1485
|
+
.pkt-color-border-button-primary-border-focus {
|
|
1486
|
+
border-color: var(--pkt-color-button-primary-border-focus) !important;
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
.pkt-color-bg-button-primary-text-normal {
|
|
1490
|
+
background-color: var(--pkt-color-button-primary-text-normal) !important;
|
|
1491
|
+
}
|
|
1492
|
+
|
|
1493
|
+
.pkt-color-txt-button-primary-text-normal {
|
|
1494
|
+
color: var(--pkt-color-button-primary-text-normal) !important;
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
|
+
.pkt-color-border-button-primary-text-normal {
|
|
1498
|
+
border-color: var(--pkt-color-button-primary-text-normal) !important;
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
.pkt-color-bg-button-primary-text-hover {
|
|
1502
|
+
background-color: var(--pkt-color-button-primary-text-hover) !important;
|
|
1503
|
+
}
|
|
1504
|
+
|
|
1505
|
+
.pkt-color-txt-button-primary-text-hover {
|
|
1506
|
+
color: var(--pkt-color-button-primary-text-hover) !important;
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
.pkt-color-border-button-primary-text-hover {
|
|
1510
|
+
border-color: var(--pkt-color-button-primary-text-hover) !important;
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
.pkt-color-bg-button-primary-text-focus {
|
|
1514
|
+
background-color: var(--pkt-color-button-primary-text-focus) !important;
|
|
1515
|
+
}
|
|
1516
|
+
|
|
1517
|
+
.pkt-color-txt-button-primary-text-focus {
|
|
1518
|
+
color: var(--pkt-color-button-primary-text-focus) !important;
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
.pkt-color-border-button-primary-text-focus {
|
|
1522
|
+
border-color: var(--pkt-color-button-primary-text-focus) !important;
|
|
1523
|
+
}
|
|
1524
|
+
|
|
1525
|
+
.pkt-color-bg-button-primary-text-active {
|
|
1526
|
+
background-color: var(--pkt-color-button-primary-text-active) !important;
|
|
1527
|
+
}
|
|
1528
|
+
|
|
1529
|
+
.pkt-color-txt-button-primary-text-active {
|
|
1530
|
+
color: var(--pkt-color-button-primary-text-active) !important;
|
|
1531
|
+
}
|
|
1532
|
+
|
|
1533
|
+
.pkt-color-border-button-primary-text-active {
|
|
1534
|
+
border-color: var(--pkt-color-button-primary-text-active) !important;
|
|
1535
|
+
}
|
|
1536
|
+
|
|
1537
|
+
.pkt-color-bg-button-primary-text-disabled {
|
|
1538
|
+
background-color: var(--pkt-color-button-primary-text-disabled) !important;
|
|
1539
|
+
}
|
|
1540
|
+
|
|
1541
|
+
.pkt-color-txt-button-primary-text-disabled {
|
|
1542
|
+
color: var(--pkt-color-button-primary-text-disabled) !important;
|
|
1543
|
+
}
|
|
1544
|
+
|
|
1545
|
+
.pkt-color-border-button-primary-text-disabled {
|
|
1546
|
+
border-color: var(--pkt-color-button-primary-text-disabled) !important;
|
|
1547
|
+
}
|
|
1548
|
+
|
|
1549
|
+
.pkt-color-bg-button-secondary-background-hover {
|
|
1550
|
+
background-color: var(--pkt-color-button-secondary-background-hover) !important;
|
|
1551
|
+
}
|
|
1552
|
+
|
|
1553
|
+
.pkt-color-txt-button-secondary-background-hover {
|
|
1554
|
+
color: var(--pkt-color-button-secondary-background-hover) !important;
|
|
1555
|
+
}
|
|
1556
|
+
|
|
1557
|
+
.pkt-color-border-button-secondary-background-hover {
|
|
1558
|
+
border-color: var(--pkt-color-button-secondary-background-hover) !important;
|
|
1559
|
+
}
|
|
1560
|
+
|
|
1561
|
+
.pkt-color-bg-button-secondary-background-active {
|
|
1562
|
+
background-color: var(--pkt-color-button-secondary-background-active) !important;
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
.pkt-color-txt-button-secondary-background-active {
|
|
1566
|
+
color: var(--pkt-color-button-secondary-background-active) !important;
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
.pkt-color-border-button-secondary-background-active {
|
|
1570
|
+
border-color: var(--pkt-color-button-secondary-background-active) !important;
|
|
1571
|
+
}
|
|
1572
|
+
|
|
1573
|
+
.pkt-color-bg-button-secondary-background-disabled {
|
|
1574
|
+
background-color: var(--pkt-color-button-secondary-background-disabled) !important;
|
|
1575
|
+
}
|
|
1576
|
+
|
|
1577
|
+
.pkt-color-txt-button-secondary-background-disabled {
|
|
1578
|
+
color: var(--pkt-color-button-secondary-background-disabled) !important;
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1581
|
+
.pkt-color-border-button-secondary-background-disabled {
|
|
1582
|
+
border-color: var(--pkt-color-button-secondary-background-disabled) !important;
|
|
1583
|
+
}
|
|
1584
|
+
|
|
1585
|
+
.pkt-color-bg-button-secondary-border-normal {
|
|
1586
|
+
background-color: var(--pkt-color-button-secondary-border-normal) !important;
|
|
1587
|
+
}
|
|
1588
|
+
|
|
1589
|
+
.pkt-color-txt-button-secondary-border-normal {
|
|
1590
|
+
color: var(--pkt-color-button-secondary-border-normal) !important;
|
|
1591
|
+
}
|
|
1592
|
+
|
|
1593
|
+
.pkt-color-border-button-secondary-border-normal {
|
|
1594
|
+
border-color: var(--pkt-color-button-secondary-border-normal) !important;
|
|
1595
|
+
}
|
|
1596
|
+
|
|
1597
|
+
.pkt-color-bg-button-secondary-border-yellow {
|
|
1598
|
+
background-color: var(--pkt-color-button-secondary-border-yellow) !important;
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
.pkt-color-txt-button-secondary-border-yellow {
|
|
1602
|
+
color: var(--pkt-color-button-secondary-border-yellow) !important;
|
|
1603
|
+
}
|
|
1604
|
+
|
|
1605
|
+
.pkt-color-border-button-secondary-border-yellow {
|
|
1606
|
+
border-color: var(--pkt-color-button-secondary-border-yellow) !important;
|
|
1607
|
+
}
|
|
1608
|
+
|
|
1609
|
+
.pkt-color-bg-button-secondary-border-focus {
|
|
1610
|
+
background-color: var(--pkt-color-button-secondary-border-focus) !important;
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1613
|
+
.pkt-color-txt-button-secondary-border-focus {
|
|
1614
|
+
color: var(--pkt-color-button-secondary-border-focus) !important;
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1617
|
+
.pkt-color-border-button-secondary-border-focus {
|
|
1618
|
+
border-color: var(--pkt-color-button-secondary-border-focus) !important;
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
.pkt-color-bg-button-secondary-text-normal {
|
|
1622
|
+
background-color: var(--pkt-color-button-secondary-text-normal) !important;
|
|
1623
|
+
}
|
|
1624
|
+
|
|
1625
|
+
.pkt-color-txt-button-secondary-text-normal {
|
|
1626
|
+
color: var(--pkt-color-button-secondary-text-normal) !important;
|
|
1627
|
+
}
|
|
1628
|
+
|
|
1629
|
+
.pkt-color-border-button-secondary-text-normal {
|
|
1630
|
+
border-color: var(--pkt-color-button-secondary-text-normal) !important;
|
|
1631
|
+
}
|
|
1632
|
+
|
|
1633
|
+
.pkt-color-bg-button-secondary-text-hover {
|
|
1634
|
+
background-color: var(--pkt-color-button-secondary-text-hover) !important;
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
.pkt-color-txt-button-secondary-text-hover {
|
|
1638
|
+
color: var(--pkt-color-button-secondary-text-hover) !important;
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
.pkt-color-border-button-secondary-text-hover {
|
|
1642
|
+
border-color: var(--pkt-color-button-secondary-text-hover) !important;
|
|
1643
|
+
}
|
|
1644
|
+
|
|
1645
|
+
.pkt-color-bg-button-secondary-text-focus {
|
|
1646
|
+
background-color: var(--pkt-color-button-secondary-text-focus) !important;
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1649
|
+
.pkt-color-txt-button-secondary-text-focus {
|
|
1650
|
+
color: var(--pkt-color-button-secondary-text-focus) !important;
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
.pkt-color-border-button-secondary-text-focus {
|
|
1654
|
+
border-color: var(--pkt-color-button-secondary-text-focus) !important;
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1657
|
+
.pkt-color-bg-button-secondary-text-active {
|
|
1658
|
+
background-color: var(--pkt-color-button-secondary-text-active) !important;
|
|
1659
|
+
}
|
|
1660
|
+
|
|
1661
|
+
.pkt-color-txt-button-secondary-text-active {
|
|
1662
|
+
color: var(--pkt-color-button-secondary-text-active) !important;
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1665
|
+
.pkt-color-border-button-secondary-text-active {
|
|
1666
|
+
border-color: var(--pkt-color-button-secondary-text-active) !important;
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1669
|
+
.pkt-color-bg-button-secondary-text-disabled {
|
|
1670
|
+
background-color: var(--pkt-color-button-secondary-text-disabled) !important;
|
|
1671
|
+
}
|
|
1672
|
+
|
|
1673
|
+
.pkt-color-txt-button-secondary-text-disabled {
|
|
1674
|
+
color: var(--pkt-color-button-secondary-text-disabled) !important;
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
.pkt-color-border-button-secondary-text-disabled {
|
|
1678
|
+
border-color: var(--pkt-color-button-secondary-text-disabled) !important;
|
|
1679
|
+
}
|
|
1680
|
+
|
|
1681
|
+
.pkt-color-bg-button-tertiary-background-hover {
|
|
1682
|
+
background-color: var(--pkt-color-button-tertiary-background-hover) !important;
|
|
1683
|
+
}
|
|
1684
|
+
|
|
1685
|
+
.pkt-color-txt-button-tertiary-background-hover {
|
|
1686
|
+
color: var(--pkt-color-button-tertiary-background-hover) !important;
|
|
1687
|
+
}
|
|
1688
|
+
|
|
1689
|
+
.pkt-color-border-button-tertiary-background-hover {
|
|
1690
|
+
border-color: var(--pkt-color-button-tertiary-background-hover) !important;
|
|
1691
|
+
}
|
|
1692
|
+
|
|
1693
|
+
.pkt-color-bg-button-tertiary-background-focus {
|
|
1694
|
+
background-color: var(--pkt-color-button-tertiary-background-focus) !important;
|
|
1695
|
+
}
|
|
1696
|
+
|
|
1697
|
+
.pkt-color-txt-button-tertiary-background-focus {
|
|
1698
|
+
color: var(--pkt-color-button-tertiary-background-focus) !important;
|
|
1699
|
+
}
|
|
1700
|
+
|
|
1701
|
+
.pkt-color-border-button-tertiary-background-focus {
|
|
1702
|
+
border-color: var(--pkt-color-button-tertiary-background-focus) !important;
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1705
|
+
.pkt-color-bg-button-tertiary-background-active {
|
|
1706
|
+
background-color: var(--pkt-color-button-tertiary-background-active) !important;
|
|
1707
|
+
}
|
|
1708
|
+
|
|
1709
|
+
.pkt-color-txt-button-tertiary-background-active {
|
|
1710
|
+
color: var(--pkt-color-button-tertiary-background-active) !important;
|
|
1711
|
+
}
|
|
1712
|
+
|
|
1713
|
+
.pkt-color-border-button-tertiary-background-active {
|
|
1714
|
+
border-color: var(--pkt-color-button-tertiary-background-active) !important;
|
|
1715
|
+
}
|
|
1716
|
+
|
|
1717
|
+
.pkt-color-bg-button-tertiary-background-disabled {
|
|
1718
|
+
background-color: var(--pkt-color-button-tertiary-background-disabled) !important;
|
|
1719
|
+
}
|
|
1720
|
+
|
|
1721
|
+
.pkt-color-txt-button-tertiary-background-disabled {
|
|
1722
|
+
color: var(--pkt-color-button-tertiary-background-disabled) !important;
|
|
1723
|
+
}
|
|
1724
|
+
|
|
1725
|
+
.pkt-color-border-button-tertiary-background-disabled {
|
|
1726
|
+
border-color: var(--pkt-color-button-tertiary-background-disabled) !important;
|
|
1727
|
+
}
|
|
1728
|
+
|
|
1729
|
+
.pkt-color-bg-button-tertiary-border-focus {
|
|
1730
|
+
background-color: var(--pkt-color-button-tertiary-border-focus) !important;
|
|
1731
|
+
}
|
|
1732
|
+
|
|
1733
|
+
.pkt-color-txt-button-tertiary-border-focus {
|
|
1734
|
+
color: var(--pkt-color-button-tertiary-border-focus) !important;
|
|
1735
|
+
}
|
|
1736
|
+
|
|
1737
|
+
.pkt-color-border-button-tertiary-border-focus {
|
|
1738
|
+
border-color: var(--pkt-color-button-tertiary-border-focus) !important;
|
|
1739
|
+
}
|
|
1740
|
+
|
|
1741
|
+
.pkt-color-bg-button-tertiary-text-normal {
|
|
1742
|
+
background-color: var(--pkt-color-button-tertiary-text-normal) !important;
|
|
1743
|
+
}
|
|
1744
|
+
|
|
1745
|
+
.pkt-color-txt-button-tertiary-text-normal {
|
|
1746
|
+
color: var(--pkt-color-button-tertiary-text-normal) !important;
|
|
1747
|
+
}
|
|
1748
|
+
|
|
1749
|
+
.pkt-color-border-button-tertiary-text-normal {
|
|
1750
|
+
border-color: var(--pkt-color-button-tertiary-text-normal) !important;
|
|
1751
|
+
}
|
|
1752
|
+
|
|
1753
|
+
.pkt-color-bg-button-tertiary-text-hover {
|
|
1754
|
+
background-color: var(--pkt-color-button-tertiary-text-hover) !important;
|
|
1755
|
+
}
|
|
1756
|
+
|
|
1757
|
+
.pkt-color-txt-button-tertiary-text-hover {
|
|
1758
|
+
color: var(--pkt-color-button-tertiary-text-hover) !important;
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1761
|
+
.pkt-color-border-button-tertiary-text-hover {
|
|
1762
|
+
border-color: var(--pkt-color-button-tertiary-text-hover) !important;
|
|
1763
|
+
}
|
|
1764
|
+
|
|
1765
|
+
.pkt-color-bg-button-tertiary-text-focus {
|
|
1766
|
+
background-color: var(--pkt-color-button-tertiary-text-focus) !important;
|
|
1767
|
+
}
|
|
1768
|
+
|
|
1769
|
+
.pkt-color-txt-button-tertiary-text-focus {
|
|
1770
|
+
color: var(--pkt-color-button-tertiary-text-focus) !important;
|
|
1771
|
+
}
|
|
1772
|
+
|
|
1773
|
+
.pkt-color-border-button-tertiary-text-focus {
|
|
1774
|
+
border-color: var(--pkt-color-button-tertiary-text-focus) !important;
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1777
|
+
.pkt-color-bg-button-tertiary-text-active {
|
|
1778
|
+
background-color: var(--pkt-color-button-tertiary-text-active) !important;
|
|
1779
|
+
}
|
|
1780
|
+
|
|
1781
|
+
.pkt-color-txt-button-tertiary-text-active {
|
|
1782
|
+
color: var(--pkt-color-button-tertiary-text-active) !important;
|
|
1783
|
+
}
|
|
1784
|
+
|
|
1785
|
+
.pkt-color-border-button-tertiary-text-active {
|
|
1786
|
+
border-color: var(--pkt-color-button-tertiary-text-active) !important;
|
|
1787
|
+
}
|
|
1788
|
+
|
|
1789
|
+
.pkt-color-bg-button-tertiary-text-disabled {
|
|
1790
|
+
background-color: var(--pkt-color-button-tertiary-text-disabled) !important;
|
|
1791
|
+
}
|
|
1792
|
+
|
|
1793
|
+
.pkt-color-txt-button-tertiary-text-disabled {
|
|
1794
|
+
color: var(--pkt-color-button-tertiary-text-disabled) !important;
|
|
1795
|
+
}
|
|
1796
|
+
|
|
1797
|
+
.pkt-color-border-button-tertiary-text-disabled {
|
|
1798
|
+
border-color: var(--pkt-color-button-tertiary-text-disabled) !important;
|
|
1799
|
+
}
|
|
1800
|
+
|
|
1213
1801
|
.bg-color-blue {
|
|
1214
1802
|
background-color: #6fe9ff !important;
|
|
1215
1803
|
}
|