@fremtind/jokul 0.57.1 → 0.57.2
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/build/build-stats.html +1 -1
- package/build/cjs/components/button/Button.cjs +1 -1
- package/build/cjs/components/button/Button.cjs.map +1 -1
- package/build/es/components/button/Button.js +1 -1
- package/build/es/components/button/Button.js.map +1 -1
- package/build/style.css +1 -1
- package/package.json +2 -2
- package/styles/components/button/button.css +32 -62
- package/styles/components/button/button.min.css +1 -1
- package/styles/components/button/button.scss +64 -78
- package/styles/components/checkbox/checkbox.css +4 -4
- package/styles/components/checkbox/checkbox.min.css +1 -1
- package/styles/components/checkbox-panel/checkbox-panel.css +2 -2
- package/styles/components/checkbox-panel/checkbox-panel.min.css +1 -1
- package/styles/components/countdown/countdown.css +2 -2
- package/styles/components/countdown/countdown.min.css +1 -1
- package/styles/components/feedback/feedback.css +2 -2
- package/styles/components/feedback/feedback.min.css +1 -1
- package/styles/components/input-group/input-group.css +2 -2
- package/styles/components/input-group/input-group.min.css +1 -1
- package/styles/components/loader/loader.css +6 -6
- package/styles/components/loader/loader.min.css +1 -1
- package/styles/components/loader/skeleton-loader.css +5 -5
- package/styles/components/loader/skeleton-loader.min.css +1 -1
- package/styles/components/message/message.css +2 -2
- package/styles/components/message/message.min.css +1 -1
- package/styles/components/progress-bar/progress-bar.css +1 -1
- package/styles/components/progress-bar/progress-bar.min.css +1 -1
- package/styles/components/radio-button/radio-button.css +2 -2
- package/styles/components/radio-button/radio-button.min.css +1 -1
- package/styles/components/radio-panel/radio-panel.css +2 -2
- package/styles/components/radio-panel/radio-panel.min.css +1 -1
- package/styles/components/system-message/system-message.css +2 -2
- package/styles/components/system-message/system-message.min.css +1 -1
- package/styles/components/toast/toast.css +4 -4
- package/styles/components/toast/toast.min.css +1 -1
- package/styles/styles.css +68 -97
- package/styles/styles.min.css +1 -1
package/styles/styles.css
CHANGED
|
@@ -870,7 +870,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-text-input__in
|
|
|
870
870
|
--color: var(--jkl-color-text-default);
|
|
871
871
|
}
|
|
872
872
|
.jkl-form-support-label--error .jkl-form-support-label__icon, .jkl-form-support-label--warning .jkl-form-support-label__icon, .jkl-form-support-label--success .jkl-form-support-label__icon {
|
|
873
|
-
animation: 400ms cubic-bezier(0, 0, 0.3, 1) 250ms jkl-support-icon-entrance-
|
|
873
|
+
animation: 400ms cubic-bezier(0, 0, 0.3, 1) 250ms jkl-support-icon-entrance-uvz3fhi forwards;
|
|
874
874
|
}
|
|
875
875
|
.jkl-form-support-label--sr-only {
|
|
876
876
|
border: 0 !important;
|
|
@@ -945,7 +945,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-text-input__in
|
|
|
945
945
|
white-space: nowrap !important; /* 3 */
|
|
946
946
|
}
|
|
947
947
|
|
|
948
|
-
@keyframes jkl-support-icon-entrance-
|
|
948
|
+
@keyframes jkl-support-icon-entrance-uvz3fhi {
|
|
949
949
|
0% {
|
|
950
950
|
margin-right: 0;
|
|
951
951
|
opacity: 0;
|
|
@@ -1189,6 +1189,31 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
1189
1189
|
}
|
|
1190
1190
|
}
|
|
1191
1191
|
|
|
1192
|
+
@property --hover-opacity {
|
|
1193
|
+
syntax: "<number>";
|
|
1194
|
+
initial-value: 0;
|
|
1195
|
+
inherits: false;
|
|
1196
|
+
}
|
|
1197
|
+
@property --jkl-button-flash-radius {
|
|
1198
|
+
syntax: "<length-percentage>";
|
|
1199
|
+
initial-value: 0%;
|
|
1200
|
+
inherits: false;
|
|
1201
|
+
}
|
|
1202
|
+
@property --jkl-button-flash-opacity {
|
|
1203
|
+
syntax: "<number>";
|
|
1204
|
+
initial-value: 0;
|
|
1205
|
+
inherits: false;
|
|
1206
|
+
}
|
|
1207
|
+
@keyframes button-fade-uvz3fjb {
|
|
1208
|
+
from {
|
|
1209
|
+
--jkl-button-flash-opacity: 0.5;
|
|
1210
|
+
}
|
|
1211
|
+
}
|
|
1212
|
+
@keyframes button-grow-uvz3fih {
|
|
1213
|
+
to {
|
|
1214
|
+
--jkl-button-flash-radius: 150%;
|
|
1215
|
+
}
|
|
1216
|
+
}
|
|
1192
1217
|
.jkl-button {
|
|
1193
1218
|
--jkl-icon-weight: var(--jkl-button-icon-weight, initial);
|
|
1194
1219
|
--text-color: var(--jkl-color-text-default);
|
|
@@ -1201,7 +1226,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
1201
1226
|
line-height: var(--jkl-button-line-height);
|
|
1202
1227
|
cursor: pointer;
|
|
1203
1228
|
user-select: none;
|
|
1204
|
-
background-color
|
|
1229
|
+
background: linear-gradient(color(from var(--text-color) sRGB r g b/var(--hover-opacity)) 100%, transparent 100%), radial-gradient(circle at var(--jkl-touch-xcoord, 50%) var(--jkl-touch-ycoord, 50%), color(from var(--text-color) sRGB r g b/var(--jkl-button-flash-opacity)) calc(var(--jkl-button-flash-radius) - 1px), transparent var(--jkl-button-flash-radius, 0%)), var(--background-color);
|
|
1205
1230
|
color: var(--text-color);
|
|
1206
1231
|
border: unset;
|
|
1207
1232
|
text-decoration: none;
|
|
@@ -1212,9 +1237,10 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
1212
1237
|
position: relative;
|
|
1213
1238
|
overflow: hidden;
|
|
1214
1239
|
max-width: 100%;
|
|
1240
|
+
animation: a 0.3s linear;
|
|
1215
1241
|
transition-timing-function: ease;
|
|
1216
1242
|
transition-duration: 150ms;
|
|
1217
|
-
transition-property:
|
|
1243
|
+
transition-property: --hover-opacity;
|
|
1218
1244
|
}
|
|
1219
1245
|
.jkl-button:has(.jkl-icon:first-child) {
|
|
1220
1246
|
padding-inline-start: var(--jkl-button-padding-icon);
|
|
@@ -1265,37 +1291,11 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
1265
1291
|
outline: 3px solid var(--jkl-color-border-action);
|
|
1266
1292
|
outline-offset: 3px;
|
|
1267
1293
|
}
|
|
1268
|
-
.jkl-button
|
|
1269
|
-
|
|
1270
|
-
pointer-events: none;
|
|
1271
|
-
display: block;
|
|
1272
|
-
position: absolute;
|
|
1273
|
-
left: var(--jkl-touch-xcoord, 50%);
|
|
1274
|
-
top: var(--jkl-touch-ycoord, 50%);
|
|
1275
|
-
translate: -100%, -100%;
|
|
1276
|
-
transform-origin: center;
|
|
1277
|
-
border-radius: 9999px;
|
|
1278
|
-
background-color: var(--text-color);
|
|
1279
|
-
opacity: 0;
|
|
1280
|
-
width: 1rem;
|
|
1281
|
-
height: 1rem;
|
|
1294
|
+
.jkl-button:hover {
|
|
1295
|
+
--hover-opacity: 0.15;
|
|
1282
1296
|
}
|
|
1283
|
-
.jkl-button
|
|
1284
|
-
|
|
1285
|
-
opacity: 0;
|
|
1286
|
-
position: absolute;
|
|
1287
|
-
inset: 0;
|
|
1288
|
-
border-radius: inherit;
|
|
1289
|
-
background-color: var(--text-color);
|
|
1290
|
-
transition-timing-function: ease;
|
|
1291
|
-
transition-duration: 150ms;
|
|
1292
|
-
transition-property: opacity;
|
|
1293
|
-
}
|
|
1294
|
-
.jkl-button:hover::after {
|
|
1295
|
-
opacity: 0.15;
|
|
1296
|
-
}
|
|
1297
|
-
html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
1298
|
-
animation: cubic-bezier(0.6, 0.2, 0.35, 1) 250ms jkl-tertiary-flash-uv623v0;
|
|
1297
|
+
.jkl-button.jkl-button--pressed {
|
|
1298
|
+
animation-name: button-fade-uvz3fjb, button-grow-uvz3fih;
|
|
1299
1299
|
}
|
|
1300
1300
|
.jkl-button--primary, .jkl-button--secondary, .jkl-button--ghost {
|
|
1301
1301
|
--border-radius: 999px;
|
|
@@ -1307,46 +1307,17 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1307
1307
|
.jkl-button--secondary {
|
|
1308
1308
|
border: var(--border-width) solid var(--text-color);
|
|
1309
1309
|
}
|
|
1310
|
-
.jkl-button--secondary::after {
|
|
1311
|
-
content: "";
|
|
1312
|
-
position: absolute;
|
|
1313
|
-
inset: 0;
|
|
1314
|
-
}
|
|
1315
1310
|
.jkl-button--tertiary {
|
|
1316
1311
|
border-bottom: var(--border-width) solid var(--text-color);
|
|
1317
1312
|
padding-inline: var(--jkl-button-teritary-padding-icon);
|
|
1318
1313
|
}
|
|
1319
|
-
.jkl-button--tertiary::after {
|
|
1320
|
-
content: "";
|
|
1321
|
-
position: absolute;
|
|
1322
|
-
inset: 0;
|
|
1323
|
-
border-radius: var(--border-radius);
|
|
1324
|
-
}
|
|
1325
1314
|
.jkl-button--tertiary:has(.jkl-icon:first-child) {
|
|
1326
1315
|
padding-inline: var(--jkl-button-teritary-padding-icon) calc(var(--jkl-button-teritary-padding-icon) * 2);
|
|
1327
1316
|
}
|
|
1328
1317
|
.jkl-button--tertiary:has(.jkl-icon:last-child) {
|
|
1329
1318
|
padding-inline: calc(var(--jkl-button-teritary-padding-icon) * 2) var(--jkl-button-teritary-padding-icon);
|
|
1330
1319
|
}
|
|
1331
|
-
.jkl-button--ghost, .jkl-button--ghost:has(.jkl-icon:first-child), .jkl-button--ghost:has(.jkl-icon:last-child) {
|
|
1332
|
-
transition-timing-function: ease;
|
|
1333
|
-
transition-duration: 150ms;
|
|
1334
|
-
transition-property: background-color;
|
|
1335
|
-
}
|
|
1336
|
-
.jkl-button--ghost:hover, .jkl-button--ghost:has(.jkl-icon:first-child):hover, .jkl-button--ghost:has(.jkl-icon:last-child):hover {
|
|
1337
|
-
--background-color: var(--jkl-color-background-interactive-hover);
|
|
1338
|
-
}
|
|
1339
1320
|
|
|
1340
|
-
@keyframes jkl-tertiary-flash-uv623v0 {
|
|
1341
|
-
0% {
|
|
1342
|
-
opacity: 0.5;
|
|
1343
|
-
scale: 1;
|
|
1344
|
-
}
|
|
1345
|
-
100% {
|
|
1346
|
-
opacity: 0;
|
|
1347
|
-
scale: 8;
|
|
1348
|
-
}
|
|
1349
|
-
}
|
|
1350
1321
|
.jkl-loader {
|
|
1351
1322
|
display: flex;
|
|
1352
1323
|
}
|
|
@@ -1362,15 +1333,15 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1362
1333
|
animation: 2500ms linear infinite;
|
|
1363
1334
|
}
|
|
1364
1335
|
.jkl-loader__dot--left {
|
|
1365
|
-
animation-name: jkl-loader-left-spin-
|
|
1336
|
+
animation-name: jkl-loader-left-spin-uvz3fjm;
|
|
1366
1337
|
margin-right: 1.71em;
|
|
1367
1338
|
}
|
|
1368
1339
|
.jkl-loader__dot--middle {
|
|
1369
|
-
animation-name: jkl-loader-middle-spin-
|
|
1340
|
+
animation-name: jkl-loader-middle-spin-uvz3fkc;
|
|
1370
1341
|
margin-right: 1.9em;
|
|
1371
1342
|
}
|
|
1372
1343
|
.jkl-loader__dot--right {
|
|
1373
|
-
animation-name: jkl-loader-right-spin-
|
|
1344
|
+
animation-name: jkl-loader-right-spin-uvz3fkq;
|
|
1374
1345
|
}
|
|
1375
1346
|
@media screen and (forced-colors: active) {
|
|
1376
1347
|
.jkl-loader__dot {
|
|
@@ -1398,7 +1369,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1398
1369
|
margin-right: 0.3em;
|
|
1399
1370
|
}
|
|
1400
1371
|
|
|
1401
|
-
@keyframes jkl-loader-left-spin-
|
|
1372
|
+
@keyframes jkl-loader-left-spin-uvz3fjm {
|
|
1402
1373
|
0% {
|
|
1403
1374
|
transform: rotate(0) scale(0);
|
|
1404
1375
|
}
|
|
@@ -1412,7 +1383,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1412
1383
|
transform: rotate(180deg) scale(0);
|
|
1413
1384
|
}
|
|
1414
1385
|
}
|
|
1415
|
-
@keyframes jkl-loader-middle-spin-
|
|
1386
|
+
@keyframes jkl-loader-middle-spin-uvz3fkc {
|
|
1416
1387
|
0% {
|
|
1417
1388
|
transform: rotate(20deg) scale(0);
|
|
1418
1389
|
}
|
|
@@ -1429,7 +1400,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1429
1400
|
transform: rotate(200deg) scale(0);
|
|
1430
1401
|
}
|
|
1431
1402
|
}
|
|
1432
|
-
@keyframes jkl-loader-right-spin-
|
|
1403
|
+
@keyframes jkl-loader-right-spin-uvz3fkq {
|
|
1433
1404
|
0% {
|
|
1434
1405
|
transform: rotate(40deg) scale(0);
|
|
1435
1406
|
}
|
|
@@ -1477,7 +1448,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1477
1448
|
bottom: 0;
|
|
1478
1449
|
width: 12.5rem;
|
|
1479
1450
|
background: linear-gradient(89.17deg, rgba(249, 249, 249, 0) 0.8%, var(--jkl-skeleton-sweeper-color) 50.09%, rgba(249, 249, 249, 0) 96.31%);
|
|
1480
|
-
animation: var(--jkl-skeleton-sweep-duration) ease infinite jkl-sweep-
|
|
1451
|
+
animation: var(--jkl-skeleton-sweep-duration) ease infinite jkl-sweep-uvz3flp;
|
|
1481
1452
|
}
|
|
1482
1453
|
@media (width >= 0) and (max-width: 679px) {
|
|
1483
1454
|
.jkl-skeleton-animation {
|
|
@@ -1508,7 +1479,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1508
1479
|
@media screen and (forced-colors: active) {
|
|
1509
1480
|
.jkl-skeleton-element {
|
|
1510
1481
|
border: 1px solid CanvasText;
|
|
1511
|
-
animation: 2s ease infinite jkl-blink-
|
|
1482
|
+
animation: 2s ease infinite jkl-blink-uvz3fmc;
|
|
1512
1483
|
}
|
|
1513
1484
|
}
|
|
1514
1485
|
|
|
@@ -1564,11 +1535,11 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1564
1535
|
}
|
|
1565
1536
|
@media screen and (forced-colors: active) {
|
|
1566
1537
|
.jkl-skeleton-table {
|
|
1567
|
-
animation: 2s ease-in-out infinite jkl-blink-
|
|
1538
|
+
animation: 2s ease-in-out infinite jkl-blink-uvz3fmc;
|
|
1568
1539
|
}
|
|
1569
1540
|
}
|
|
1570
1541
|
|
|
1571
|
-
@keyframes jkl-sweep-
|
|
1542
|
+
@keyframes jkl-sweep-uvz3flp {
|
|
1572
1543
|
0% {
|
|
1573
1544
|
transform: translateX(calc(0vw - 200px));
|
|
1574
1545
|
}
|
|
@@ -1576,7 +1547,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1576
1547
|
transform: translateX(calc(100vw + 400px));
|
|
1577
1548
|
}
|
|
1578
1549
|
}
|
|
1579
|
-
@keyframes jkl-blink-
|
|
1550
|
+
@keyframes jkl-blink-uvz3fmc {
|
|
1580
1551
|
0% {
|
|
1581
1552
|
opacity: 1;
|
|
1582
1553
|
}
|
|
@@ -2040,7 +2011,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2040
2011
|
--jkl-checkbox-line-height: 1.5rem;
|
|
2041
2012
|
}
|
|
2042
2013
|
|
|
2043
|
-
@keyframes jkl-checkbox-checked-
|
|
2014
|
+
@keyframes jkl-checkbox-checked-uvz3fn0 {
|
|
2044
2015
|
0% {
|
|
2045
2016
|
width: 0;
|
|
2046
2017
|
height: 0;
|
|
@@ -2054,7 +2025,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2054
2025
|
height: 58%;
|
|
2055
2026
|
}
|
|
2056
2027
|
}
|
|
2057
|
-
@keyframes jkl-checkbox-indeterminate-
|
|
2028
|
+
@keyframes jkl-checkbox-indeterminate-uvz3fn8 {
|
|
2058
2029
|
0% {
|
|
2059
2030
|
width: 0;
|
|
2060
2031
|
}
|
|
@@ -2083,11 +2054,11 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2083
2054
|
left: calc(-0.5 * var(--jkl-checkbox-box-size));
|
|
2084
2055
|
}
|
|
2085
2056
|
.jkl-checkbox__input:checked + .jkl-checkbox__label .jkl-checkbox__check-mark::after {
|
|
2086
|
-
animation: jkl-checkbox-checked-
|
|
2057
|
+
animation: jkl-checkbox-checked-uvz3fn0 150ms ease-in-out forwards;
|
|
2087
2058
|
opacity: 1;
|
|
2088
2059
|
}
|
|
2089
2060
|
.jkl-checkbox__input:indeterminate:not(:checked) + .jkl-checkbox__label .jkl-checkbox__indeterminate-mark::after {
|
|
2090
|
-
animation: jkl-checkbox-indeterminate-
|
|
2061
|
+
animation: jkl-checkbox-indeterminate-uvz3fn8 150ms ease-in-out forwards;
|
|
2091
2062
|
opacity: 1;
|
|
2092
2063
|
}
|
|
2093
2064
|
.jkl-checkbox__input:focus-visible + .jkl-checkbox__label {
|
|
@@ -2258,7 +2229,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2258
2229
|
--outer-border-thickness: 0.125rem;
|
|
2259
2230
|
}
|
|
2260
2231
|
|
|
2261
|
-
@keyframes jkl-checkbox-checked-
|
|
2232
|
+
@keyframes jkl-checkbox-checked-uvz3fnt {
|
|
2262
2233
|
0% {
|
|
2263
2234
|
width: 0;
|
|
2264
2235
|
height: 0;
|
|
@@ -2321,7 +2292,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2321
2292
|
}
|
|
2322
2293
|
}
|
|
2323
2294
|
.jkl-checkbox-panel:has(:checked) .jkl-checkbox-panel__decorator::after {
|
|
2324
|
-
animation: jkl-checkbox-checked-
|
|
2295
|
+
animation: jkl-checkbox-checked-uvz3fnt 150ms ease-in-out forwards;
|
|
2325
2296
|
opacity: 1;
|
|
2326
2297
|
}
|
|
2327
2298
|
.jkl-checkbox-panel:has([aria-invalid=true]) {
|
|
@@ -3017,11 +2988,11 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-combobox__wrap
|
|
|
3017
2988
|
}
|
|
3018
2989
|
}
|
|
3019
2990
|
.jkl-countdown__tracker {
|
|
3020
|
-
animation: jkl-downcount-
|
|
2991
|
+
animation: jkl-downcount-uvz3foh var(--duration) linear forwards;
|
|
3021
2992
|
animation-play-state: var(--play-state, running);
|
|
3022
2993
|
}
|
|
3023
2994
|
|
|
3024
|
-
@keyframes jkl-downcount-
|
|
2995
|
+
@keyframes jkl-downcount-uvz3foh {
|
|
3025
2996
|
from {
|
|
3026
2997
|
width: 100%;
|
|
3027
2998
|
}
|
|
@@ -3697,7 +3668,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-combobox__wrap
|
|
|
3697
3668
|
padding: 1rem 0 2.5rem 0;
|
|
3698
3669
|
}
|
|
3699
3670
|
|
|
3700
|
-
@keyframes jkl-show-
|
|
3671
|
+
@keyframes jkl-show-uvz3fp8 {
|
|
3701
3672
|
from {
|
|
3702
3673
|
transform: translate3d(0, 0.5rem, 0);
|
|
3703
3674
|
opacity: 0;
|
|
@@ -3732,7 +3703,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-combobox__wrap
|
|
|
3732
3703
|
}
|
|
3733
3704
|
}
|
|
3734
3705
|
.jkl-feedback__fade-in {
|
|
3735
|
-
animation: jkl-show-
|
|
3706
|
+
animation: jkl-show-uvz3fp8 0.25s ease-out;
|
|
3736
3707
|
}
|
|
3737
3708
|
.jkl-feedback__buttons {
|
|
3738
3709
|
display: flex;
|
|
@@ -3974,7 +3945,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
3974
3945
|
--background-color: var(--jkl-color-background-alert-success);
|
|
3975
3946
|
}
|
|
3976
3947
|
.jkl-message--dismissed {
|
|
3977
|
-
animation: jkl-dismiss-
|
|
3948
|
+
animation: jkl-dismiss-uvz3fpx 400ms ease-in-out forwards;
|
|
3978
3949
|
transition: visibility 0ms 400ms;
|
|
3979
3950
|
visibility: hidden;
|
|
3980
3951
|
}
|
|
@@ -3994,7 +3965,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
3994
3965
|
}
|
|
3995
3966
|
}
|
|
3996
3967
|
|
|
3997
|
-
@keyframes jkl-dismiss-
|
|
3968
|
+
@keyframes jkl-dismiss-uvz3fpx {
|
|
3998
3969
|
from {
|
|
3999
3970
|
opacity: 1;
|
|
4000
3971
|
transform: translate3d(0, 0, 0);
|
|
@@ -4050,7 +4021,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4050
4021
|
--jkl-radio-button-label-font-weight: var(--jkl-small-font-weight);
|
|
4051
4022
|
}
|
|
4052
4023
|
|
|
4053
|
-
@keyframes jkl-dot-in-
|
|
4024
|
+
@keyframes jkl-dot-in-uvz3fq2 {
|
|
4054
4025
|
0% {
|
|
4055
4026
|
transform: scale(0.8);
|
|
4056
4027
|
}
|
|
@@ -4096,7 +4067,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4096
4067
|
}
|
|
4097
4068
|
.jkl-radio-button__input:checked + .jkl-radio-button__label > .jkl-radio-button__dot::after {
|
|
4098
4069
|
--dot-color: var(--jkl-color-border-action);
|
|
4099
|
-
animation: jkl-dot-in-
|
|
4070
|
+
animation: jkl-dot-in-uvz3fq2 150ms ease;
|
|
4100
4071
|
}
|
|
4101
4072
|
@media screen and (forced-colors: active) {
|
|
4102
4073
|
.jkl-radio-button__input:checked + .jkl-radio-button__label > .jkl-radio-button__dot::after {
|
|
@@ -5216,7 +5187,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-select:has(:fo
|
|
|
5216
5187
|
transition-duration: 150ms;
|
|
5217
5188
|
}
|
|
5218
5189
|
|
|
5219
|
-
@keyframes jkl-downcount-
|
|
5190
|
+
@keyframes jkl-downcount-uvz3fq7 {
|
|
5220
5191
|
from {
|
|
5221
5192
|
width: 100%;
|
|
5222
5193
|
}
|
|
@@ -5224,7 +5195,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-select:has(:fo
|
|
|
5224
5195
|
width: 0%;
|
|
5225
5196
|
}
|
|
5226
5197
|
}
|
|
5227
|
-
@keyframes jkl-dot-in-
|
|
5198
|
+
@keyframes jkl-dot-in-uvz3fqo {
|
|
5228
5199
|
0% {
|
|
5229
5200
|
transform: scale(0.8);
|
|
5230
5201
|
}
|
|
@@ -5272,7 +5243,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-select:has(:fo
|
|
|
5272
5243
|
}
|
|
5273
5244
|
}
|
|
5274
5245
|
.jkl-radio-panel__input:checked + .jkl-radio-panel__decorator::after {
|
|
5275
|
-
animation: jkl-dot-in-
|
|
5246
|
+
animation: jkl-dot-in-uvz3fqo 150ms ease;
|
|
5276
5247
|
}
|
|
5277
5248
|
.jkl-radio-panel:has(:checked) {
|
|
5278
5249
|
--radio-dot-color: var(--jkl-color-border-action);
|
|
@@ -5484,7 +5455,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-select:has(:fo
|
|
|
5484
5455
|
margin-bottom: 0;
|
|
5485
5456
|
}
|
|
5486
5457
|
.jkl-system-message--dismissed {
|
|
5487
|
-
animation: jkl-dismiss-
|
|
5458
|
+
animation: jkl-dismiss-uvz3fre 400ms ease-in forwards;
|
|
5488
5459
|
transition: visibility 0ms 400ms;
|
|
5489
5460
|
visibility: hidden;
|
|
5490
5461
|
}
|
|
@@ -5516,7 +5487,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-select:has(:fo
|
|
|
5516
5487
|
}
|
|
5517
5488
|
}
|
|
5518
5489
|
|
|
5519
|
-
@keyframes jkl-dismiss-
|
|
5490
|
+
@keyframes jkl-dismiss-uvz3fre {
|
|
5520
5491
|
from {
|
|
5521
5492
|
opacity: 1;
|
|
5522
5493
|
transform: translate3d(0, 0, 0);
|
|
@@ -6386,14 +6357,14 @@ html:not([data-mousenavigation]) .jkl-table-pagination__previous:focus, html:not
|
|
|
6386
6357
|
|
|
6387
6358
|
.jkl-toast[data-animation=entering],
|
|
6388
6359
|
.jkl-toast[data-animation=queued] {
|
|
6389
|
-
animation: jkl-entering-
|
|
6360
|
+
animation: jkl-entering-uvz3frf 200ms ease-out forwards;
|
|
6390
6361
|
}
|
|
6391
6362
|
|
|
6392
6363
|
.jkl-toast[data-animation=exiting] {
|
|
6393
|
-
animation: jkl-exiting-
|
|
6364
|
+
animation: jkl-exiting-uvz3fs2 150ms ease-in forwards;
|
|
6394
6365
|
}
|
|
6395
6366
|
|
|
6396
|
-
@keyframes jkl-entering-
|
|
6367
|
+
@keyframes jkl-entering-uvz3frf {
|
|
6397
6368
|
from {
|
|
6398
6369
|
opacity: 0;
|
|
6399
6370
|
transform: translate3d(0, 50%, 0);
|
|
@@ -6403,7 +6374,7 @@ html:not([data-mousenavigation]) .jkl-table-pagination__previous:focus, html:not
|
|
|
6403
6374
|
transform: translate3d(0, 0, 0);
|
|
6404
6375
|
}
|
|
6405
6376
|
}
|
|
6406
|
-
@keyframes jkl-exiting-
|
|
6377
|
+
@keyframes jkl-exiting-uvz3fs2 {
|
|
6407
6378
|
from {
|
|
6408
6379
|
opacity: 1;
|
|
6409
6380
|
transform: translate3d(0, 0, 0);
|