@fremtind/jokul 0.37.0 → 0.37.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/link/Link.cjs +1 -1
- package/build/cjs/components/link/Link.cjs.map +1 -1
- package/build/es/components/link/Link.js +1 -1
- package/build/es/components/link/Link.js.map +1 -1
- package/package.json +2 -2
- package/styles/components/accordion/accordion.css +29 -22
- package/styles/components/accordion/accordion.min.css +4 -4
- package/styles/components/accordion/accordion.scss +36 -36
- package/styles/components/button/button.css +50 -58
- package/styles/components/button/button.min.css +1 -1
- package/styles/components/button/button.scss +40 -30
- package/styles/components/checkbox/checkbox.css +4 -4
- package/styles/components/checkbox/checkbox.min.css +1 -1
- package/styles/components/chip/chip.css +5 -13
- package/styles/components/chip/chip.min.css +1 -1
- package/styles/components/chip/chip.scss +2 -2
- package/styles/components/combobox/combobox.css +8 -20
- package/styles/components/combobox/combobox.min.css +1 -1
- package/styles/components/combobox/combobox.scss +2 -2
- package/styles/components/datepicker/_calendar.scss +18 -18
- package/styles/components/datepicker/datepicker.css +15 -8
- package/styles/components/datepicker/datepicker.min.css +1 -1
- package/styles/components/feedback/feedback.css +2 -2
- package/styles/components/feedback/feedback.min.css +1 -1
- package/styles/components/file-input/_file.scss +16 -16
- package/styles/components/file-input/file-input.css +19 -14
- package/styles/components/file-input/file-input.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/input-panel/checkbox-panel.css +2 -2
- package/styles/components/input-panel/checkbox-panel.min.css +1 -1
- package/styles/components/input-panel/radio-panel.css +2 -2
- package/styles/components/input-panel/radio-panel.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 +2 -2
- 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/system-message/system-message.css +2 -2
- package/styles/components/system-message/system-message.min.css +1 -1
- package/styles/components/tag/tag.css +5 -13
- package/styles/components/tag/tag.min.css +1 -1
- package/styles/components/tag/tag.scss +2 -2
- package/styles/components/toast/toast.css +4 -4
- package/styles/components/toast/toast.min.css +1 -1
- package/styles/components/tooltip/tooltip.css +8 -20
- package/styles/components/tooltip/tooltip.min.css +1 -1
- package/styles/components/tooltip/tooltip.scss +2 -2
- package/styles/core/jkl/_theme.scss +0 -52
- package/styles/styles.css +157 -191
- package/styles/styles.min.css +4 -4
package/styles/styles.css
CHANGED
|
@@ -3,16 +3,15 @@
|
|
|
3
3
|
* Do not edit directly
|
|
4
4
|
* Generated on Mon, 28 Oct 2024 14:22:00 GMT
|
|
5
5
|
*/
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
--title-padding: var(--jkl-spacing-16) 3rem var(
|
|
6
|
+
:root,
|
|
7
|
+
[data-layout-density=comfortable],
|
|
8
|
+
[data-density=comfortable] {
|
|
9
|
+
--jkl-accordion-title-padding: var(--jkl-spacing-16) 3rem var(
|
|
11
10
|
--jkl-spacing-16
|
|
12
11
|
) var(--jkl-spacing-16);
|
|
13
|
-
--arrow-top: 1.25rem;
|
|
14
|
-
--arrow-right: var(--jkl-spacing-12);
|
|
15
|
-
--content-padding: var(--jkl-spacing-8) var(--jkl-spacing-16)
|
|
12
|
+
--jkl-accordion-arrow-top: 1.25rem;
|
|
13
|
+
--jkl-accordion-arrow-right: var(--jkl-spacing-12);
|
|
14
|
+
--jkl-accordion-content-padding: var(--jkl-spacing-8) var(--jkl-spacing-16)
|
|
16
15
|
var(--jkl-spacing-16);
|
|
17
16
|
--title-font-size: var(--jkl-body-font-size);
|
|
18
17
|
--title-line-height: var(--jkl-body-line-height);
|
|
@@ -22,22 +21,26 @@
|
|
|
22
21
|
--content-font-weight: var(--jkl-body-font-weight);
|
|
23
22
|
}
|
|
24
23
|
@media (width >= 0) and (max-width: 679px) {
|
|
25
|
-
|
|
26
|
-
|
|
24
|
+
:root,
|
|
25
|
+
[data-layout-density=comfortable],
|
|
26
|
+
[data-density=comfortable] {
|
|
27
|
+
--jkl-accordion-title-padding: var(--jkl-spacing-12) 2.75rem var(
|
|
27
28
|
--jkl-spacing-12
|
|
28
29
|
) var(--jkl-spacing-12);
|
|
29
|
-
--content-padding: var(--jkl-spacing-8)
|
|
30
|
-
var(--jkl-spacing-16) var(--jkl-spacing-12);
|
|
31
|
-
--arrow-top: 1.4375rem;
|
|
30
|
+
--jkl-accordion-content-padding: var(--jkl-spacing-8)
|
|
31
|
+
var(--jkl-spacing-12) var(--jkl-spacing-16) var(--jkl-spacing-12);
|
|
32
|
+
--jkl-accordion-arrow-top: 1.4375rem;
|
|
32
33
|
}
|
|
33
34
|
}
|
|
34
|
-
|
|
35
|
-
|
|
35
|
+
|
|
36
|
+
[data-layout-density=compact],
|
|
37
|
+
[data-density=compact] {
|
|
38
|
+
--jkl-accordion-title-padding: var(--jkl-spacing-8) 2rem var(
|
|
36
39
|
--jkl-spacing-8
|
|
37
40
|
) var(--jkl-spacing-8);
|
|
38
|
-
--arrow-top: var(--jkl-spacing-8);
|
|
39
|
-
--arrow-right: var(--jkl-spacing-4);
|
|
40
|
-
--content-padding: var(--jkl-spacing-8);
|
|
41
|
+
--jkl-accordion-arrow-top: var(--jkl-spacing-8);
|
|
42
|
+
--jkl-accordion-arrow-right: var(--jkl-spacing-4);
|
|
43
|
+
--jkl-accordion-content-padding: var(--jkl-spacing-8);
|
|
41
44
|
--title-font-size: var(--jkl-small-font-size);
|
|
42
45
|
--title-line-height: var(--jkl-small-line-height);
|
|
43
46
|
--title-font-weight: var(--jkl-small-font-weight);
|
|
@@ -46,6 +49,10 @@
|
|
|
46
49
|
--content-font-weight: var(--jkl-small-font-weight);
|
|
47
50
|
}
|
|
48
51
|
|
|
52
|
+
.jkl-accordion {
|
|
53
|
+
width: 100%;
|
|
54
|
+
}
|
|
55
|
+
|
|
49
56
|
.jkl-accordion-item {
|
|
50
57
|
--background: transparent;
|
|
51
58
|
--text-color: var(--jkl-color-text-default);
|
|
@@ -85,7 +92,7 @@
|
|
|
85
92
|
list-style: none;
|
|
86
93
|
background-color: transparent;
|
|
87
94
|
position: relative;
|
|
88
|
-
padding: var(--title-padding);
|
|
95
|
+
padding: var(--jkl-accordion-title-padding);
|
|
89
96
|
text-align: left;
|
|
90
97
|
width: 100%;
|
|
91
98
|
box-sizing: border-box;
|
|
@@ -126,8 +133,8 @@
|
|
|
126
133
|
.jkl-accordion-item__arrow {
|
|
127
134
|
pointer-events: none;
|
|
128
135
|
position: absolute;
|
|
129
|
-
right: var(--arrow-right);
|
|
130
|
-
top: var(--arrow-top);
|
|
136
|
+
right: var(--jkl-accordion-arrow-right);
|
|
137
|
+
top: var(--jkl-accordion-arrow-top);
|
|
131
138
|
transition-timing-function: ease;
|
|
132
139
|
transition-duration: 100ms;
|
|
133
140
|
transition-property: translate;
|
|
@@ -152,7 +159,7 @@
|
|
|
152
159
|
line-height: var(--content-line-height);
|
|
153
160
|
font-weight: var(--content-font-weight);
|
|
154
161
|
height: auto;
|
|
155
|
-
padding: var(--content-padding);
|
|
162
|
+
padding: var(--jkl-accordion-content-padding);
|
|
156
163
|
}
|
|
157
164
|
@media screen and (forced-colors: active) {
|
|
158
165
|
.jkl-accordion-item:nth-child(n) {
|
|
@@ -1142,7 +1149,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-text-area__tex
|
|
|
1142
1149
|
--color: var(--jkl-color-text-default);
|
|
1143
1150
|
}
|
|
1144
1151
|
.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 {
|
|
1145
|
-
animation: 400ms cubic-bezier(0, 0, 0.3, 1) 250ms jkl-support-icon-entrance-
|
|
1152
|
+
animation: 400ms cubic-bezier(0, 0, 0.3, 1) 250ms jkl-support-icon-entrance-u18uksc forwards;
|
|
1146
1153
|
}
|
|
1147
1154
|
.jkl-form-support-label--sr-only {
|
|
1148
1155
|
border: 0 !important;
|
|
@@ -1217,7 +1224,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-text-area__tex
|
|
|
1217
1224
|
white-space: nowrap !important; /* 3 */
|
|
1218
1225
|
}
|
|
1219
1226
|
|
|
1220
|
-
@keyframes jkl-support-icon-entrance-
|
|
1227
|
+
@keyframes jkl-support-icon-entrance-u18uksc {
|
|
1221
1228
|
0% {
|
|
1222
1229
|
margin-right: 0;
|
|
1223
1230
|
opacity: 0;
|
|
@@ -1252,33 +1259,21 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-text-area__tex
|
|
|
1252
1259
|
}
|
|
1253
1260
|
}
|
|
1254
1261
|
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
.jkl [data-layout-density=comfortable] .jkl-tooltip-content,
|
|
1259
|
-
.jkl [data-density=comfortable] .jkl-tooltip-content,
|
|
1260
|
-
.jkl[data-layout-density=comfortable] .jkl-tooltip-content,
|
|
1261
|
-
.jkl[data-density=comfortable] .jkl-tooltip-content {
|
|
1262
|
+
:root,
|
|
1263
|
+
[data-layout-density=comfortable],
|
|
1264
|
+
[data-density=comfortable] {
|
|
1262
1265
|
--content-padding: 1rem;
|
|
1263
1266
|
}
|
|
1264
1267
|
@media (width >= 0) and (max-width: 679px) {
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
.jkl [data-layout-density=comfortable] .jkl-tooltip-content,
|
|
1269
|
-
.jkl [data-density=comfortable] .jkl-tooltip-content,
|
|
1270
|
-
.jkl[data-layout-density=comfortable] .jkl-tooltip-content,
|
|
1271
|
-
.jkl[data-density=comfortable] .jkl-tooltip-content {
|
|
1268
|
+
:root,
|
|
1269
|
+
[data-layout-density=comfortable],
|
|
1270
|
+
[data-density=comfortable] {
|
|
1272
1271
|
--content-padding: 0.75rem;
|
|
1273
1272
|
}
|
|
1274
1273
|
}
|
|
1275
1274
|
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
.jkl [data-layout-density=compact] .jkl-tooltip-content,
|
|
1279
|
-
.jkl [data-density=compact] .jkl-tooltip-content,
|
|
1280
|
-
.jkl[data-layout-density=compact] .jkl-tooltip-content,
|
|
1281
|
-
.jkl[data-density=compact] .jkl-tooltip-content {
|
|
1275
|
+
[data-layout-density=compact],
|
|
1276
|
+
[data-density=compact] {
|
|
1282
1277
|
--content-padding: 0.5rem;
|
|
1283
1278
|
}
|
|
1284
1279
|
|
|
@@ -1542,49 +1537,57 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
1542
1537
|
transform: translateX(-33%);
|
|
1543
1538
|
}
|
|
1544
1539
|
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
--padding-
|
|
1553
|
-
--padding-
|
|
1554
|
-
--
|
|
1555
|
-
--
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
--padding-
|
|
1569
|
-
--padding-
|
|
1570
|
-
--padding-
|
|
1571
|
-
--padding-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
font-
|
|
1575
|
-
--jkl-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1540
|
+
:root,
|
|
1541
|
+
[data-layout-density=comfortable],
|
|
1542
|
+
[data-density=comfortable] {
|
|
1543
|
+
--jkl-button-padding-block: 0.5rem;
|
|
1544
|
+
--jkl-button-padding-text: 1.5rem;
|
|
1545
|
+
--jkl-button-padding-icon: 1rem;
|
|
1546
|
+
--jkl-button-padding-icon-button: 0.5rem;
|
|
1547
|
+
--jkl-button-padding-tertiary-inline: 0.25rem;
|
|
1548
|
+
--jkl-button-padding-ghost-inline: 0.5rem;
|
|
1549
|
+
--jkl-button-font-size: 1.125rem;
|
|
1550
|
+
--jkl-button-line-height: 1.75rem;
|
|
1551
|
+
}
|
|
1552
|
+
@media (min-width: 680px) {
|
|
1553
|
+
:root,
|
|
1554
|
+
[data-layout-density=comfortable],
|
|
1555
|
+
[data-density=comfortable] {
|
|
1556
|
+
--jkl-button-font-size: 1.25rem;
|
|
1557
|
+
--jkl-button-line-height: 2rem;
|
|
1558
|
+
}
|
|
1559
|
+
}
|
|
1560
|
+
|
|
1561
|
+
[data-layout-density=compact],
|
|
1562
|
+
[data-density=compact] {
|
|
1563
|
+
--jkl-button-padding-block: 0.25rem;
|
|
1564
|
+
--jkl-button-padding-text: 0.75rem;
|
|
1565
|
+
--jkl-button-padding-icon: 0.5rem;
|
|
1566
|
+
--jkl-button-padding-icon-button: 0.25rem;
|
|
1567
|
+
--jkl-button-padding-tertiary-inline: 0.125rem;
|
|
1568
|
+
--jkl-button-padding-ghost-inline: 0.25rem;
|
|
1569
|
+
--jkl-button-font-size: 1rem;
|
|
1570
|
+
--jkl-button-line-height: 1.5rem;
|
|
1571
|
+
}
|
|
1572
|
+
@media (min-width: 680px) {
|
|
1573
|
+
[data-layout-density=compact],
|
|
1574
|
+
[data-density=compact] {
|
|
1575
|
+
--jkl-button-font-size: 1rem;
|
|
1576
|
+
--jkl-button-line-height: 1.5rem;
|
|
1577
|
+
--jkl-button-icon-weight: 500;
|
|
1578
|
+
}
|
|
1580
1579
|
}
|
|
1581
1580
|
|
|
1582
1581
|
.jkl-button {
|
|
1582
|
+
--jkl-icon-weight: var(--jkl-button-icon-weight, initial);
|
|
1583
1583
|
--text-color: var(--jkl-color-text-default);
|
|
1584
1584
|
--background-color: transparent;
|
|
1585
1585
|
--border-radius: 0;
|
|
1586
1586
|
--border-width: 0.0625rem;
|
|
1587
1587
|
display: inline-block;
|
|
1588
|
+
font-weight: 700;
|
|
1589
|
+
font-size: var(--jkl-button-font-size);
|
|
1590
|
+
line-height: var(--jkl-button-line-height);
|
|
1588
1591
|
cursor: pointer;
|
|
1589
1592
|
user-select: none;
|
|
1590
1593
|
background-color: var(--background-color);
|
|
@@ -1593,39 +1596,23 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
1593
1596
|
text-decoration: none;
|
|
1594
1597
|
-webkit-tap-highlight-color: transparent;
|
|
1595
1598
|
border-radius: var(--border-radius);
|
|
1596
|
-
padding-inline: var(--padding-text);
|
|
1597
|
-
padding-block: var(--padding-block);
|
|
1599
|
+
padding-inline: var(--jkl-button-padding-text);
|
|
1600
|
+
padding-block: var(--jkl-button-padding-block);
|
|
1598
1601
|
position: relative;
|
|
1599
1602
|
overflow: hidden;
|
|
1600
1603
|
max-width: 100%;
|
|
1601
1604
|
transition-timing-function: ease;
|
|
1602
1605
|
transition-duration: 150ms;
|
|
1603
1606
|
transition-property: scale;
|
|
1604
|
-
font-size: 1.125rem;
|
|
1605
|
-
line-height: 1.75rem;
|
|
1606
|
-
font-weight: 400;
|
|
1607
|
-
--jkl-icon-weight: 300;
|
|
1608
|
-
--jkl-icon-weight: 500;
|
|
1609
|
-
font-weight: 700;
|
|
1610
|
-
}
|
|
1611
|
-
@media (min-width: 680px) {
|
|
1612
|
-
.jkl-button {
|
|
1613
|
-
font-size: 1.25rem;
|
|
1614
|
-
line-height: 2rem;
|
|
1615
|
-
font-weight: 400;
|
|
1616
|
-
--jkl-icon-weight: 300;
|
|
1617
|
-
--jkl-icon-weight: 500;
|
|
1618
|
-
font-weight: 700;
|
|
1619
|
-
}
|
|
1620
1607
|
}
|
|
1621
1608
|
.jkl-button:has(.jkl-icon:first-child) {
|
|
1622
|
-
padding-inline-start: var(--padding-icon);
|
|
1609
|
+
padding-inline-start: var(--jkl-button-padding-icon);
|
|
1623
1610
|
}
|
|
1624
1611
|
.jkl-button:has(.jkl-icon:last-child) {
|
|
1625
|
-
padding-inline-end: var(--padding-icon);
|
|
1612
|
+
padding-inline-end: var(--jkl-button-padding-icon);
|
|
1626
1613
|
}
|
|
1627
1614
|
.jkl-button:has(.jkl-icon:first-child):has(.jkl-icon:last-child) {
|
|
1628
|
-
padding-inline: var(--padding-icon-button);
|
|
1615
|
+
padding-inline: var(--jkl-button-padding-icon-button);
|
|
1629
1616
|
}
|
|
1630
1617
|
.jkl-button__label {
|
|
1631
1618
|
transition-timing-function: ease;
|
|
@@ -1683,7 +1670,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
1683
1670
|
height: 1rem;
|
|
1684
1671
|
}
|
|
1685
1672
|
html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
1686
|
-
animation: cubic-bezier(0.6, 0.2, 0.35, 1) 250ms jkl-tertiary-flash-
|
|
1673
|
+
animation: cubic-bezier(0.6, 0.2, 0.35, 1) 250ms jkl-tertiary-flash-u18uktc;
|
|
1687
1674
|
}
|
|
1688
1675
|
:not([data-touchnavigation]) .jkl-button--primary:hover, :not([data-touchnavigation]) .jkl-button--secondary:hover, :not([data-touchnavigation]) .jkl-button--tertiary:hover {
|
|
1689
1676
|
scale: 1.05;
|
|
@@ -1704,7 +1691,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1704
1691
|
border: var(--border-width) solid var(--text-color);
|
|
1705
1692
|
}
|
|
1706
1693
|
.jkl-button--tertiary, .jkl-button--tertiary:has(.jkl-icon:first-child), .jkl-button--tertiary:has(.jkl-icon:last-child) {
|
|
1707
|
-
padding-inline: var(--padding-tertiary-inline);
|
|
1694
|
+
padding-inline: var(--jkl-button-padding-tertiary-inline);
|
|
1708
1695
|
}
|
|
1709
1696
|
.jkl-button--tertiary::after, .jkl-button--tertiary:has(.jkl-icon:first-child)::after, .jkl-button--tertiary:has(.jkl-icon:last-child)::after {
|
|
1710
1697
|
content: "";
|
|
@@ -1717,7 +1704,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1717
1704
|
--border-width: 0.125rem;
|
|
1718
1705
|
}
|
|
1719
1706
|
.jkl-button--ghost, .jkl-button--ghost:has(.jkl-icon:first-child), .jkl-button--ghost:has(.jkl-icon:last-child) {
|
|
1720
|
-
padding-inline: var(--padding-ghost-inline);
|
|
1707
|
+
padding-inline: var(--jkl-button-padding-ghost-inline);
|
|
1721
1708
|
border-radius: 0.25rem;
|
|
1722
1709
|
transition-timing-function: ease;
|
|
1723
1710
|
transition-duration: 150ms;
|
|
@@ -1727,7 +1714,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1727
1714
|
--background-color: var(--jkl-color-background-interactive-hover);
|
|
1728
1715
|
}
|
|
1729
1716
|
|
|
1730
|
-
@keyframes jkl-tertiary-flash-
|
|
1717
|
+
@keyframes jkl-tertiary-flash-u18uktc {
|
|
1731
1718
|
0% {
|
|
1732
1719
|
opacity: 0.5;
|
|
1733
1720
|
scale: 1;
|
|
@@ -1752,15 +1739,15 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1752
1739
|
animation: 2500ms linear infinite;
|
|
1753
1740
|
}
|
|
1754
1741
|
.jkl-loader__dot--left {
|
|
1755
|
-
animation-name: jkl-loader-left-spin-
|
|
1742
|
+
animation-name: jkl-loader-left-spin-u18uku1;
|
|
1756
1743
|
margin-right: 1.71em;
|
|
1757
1744
|
}
|
|
1758
1745
|
.jkl-loader__dot--middle {
|
|
1759
|
-
animation-name: jkl-loader-middle-spin-
|
|
1746
|
+
animation-name: jkl-loader-middle-spin-u18ukux;
|
|
1760
1747
|
margin-right: 1.9em;
|
|
1761
1748
|
}
|
|
1762
1749
|
.jkl-loader__dot--right {
|
|
1763
|
-
animation-name: jkl-loader-right-spin-
|
|
1750
|
+
animation-name: jkl-loader-right-spin-u18ukvv;
|
|
1764
1751
|
}
|
|
1765
1752
|
@media screen and (forced-colors: active) {
|
|
1766
1753
|
.jkl-loader__dot {
|
|
@@ -1788,7 +1775,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1788
1775
|
margin-right: 0.3em;
|
|
1789
1776
|
}
|
|
1790
1777
|
|
|
1791
|
-
@keyframes jkl-loader-left-spin-
|
|
1778
|
+
@keyframes jkl-loader-left-spin-u18uku1 {
|
|
1792
1779
|
0% {
|
|
1793
1780
|
transform: rotate(0) scale(0);
|
|
1794
1781
|
}
|
|
@@ -1802,7 +1789,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1802
1789
|
transform: rotate(180deg) scale(0);
|
|
1803
1790
|
}
|
|
1804
1791
|
}
|
|
1805
|
-
@keyframes jkl-loader-middle-spin-
|
|
1792
|
+
@keyframes jkl-loader-middle-spin-u18ukux {
|
|
1806
1793
|
0% {
|
|
1807
1794
|
transform: rotate(20deg) scale(0);
|
|
1808
1795
|
}
|
|
@@ -1819,7 +1806,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1819
1806
|
transform: rotate(200deg) scale(0);
|
|
1820
1807
|
}
|
|
1821
1808
|
}
|
|
1822
|
-
@keyframes jkl-loader-right-spin-
|
|
1809
|
+
@keyframes jkl-loader-right-spin-u18ukvv {
|
|
1823
1810
|
0% {
|
|
1824
1811
|
transform: rotate(40deg) scale(0);
|
|
1825
1812
|
}
|
|
@@ -1867,7 +1854,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1867
1854
|
bottom: 0;
|
|
1868
1855
|
width: 12.5rem;
|
|
1869
1856
|
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%);
|
|
1870
|
-
animation: var(--jkl-skeleton-sweep-duration) ease infinite jkl-sweep-
|
|
1857
|
+
animation: var(--jkl-skeleton-sweep-duration) ease infinite jkl-sweep-u18ukwb;
|
|
1871
1858
|
}
|
|
1872
1859
|
@media (width >= 0) and (max-width: 679px) {
|
|
1873
1860
|
.jkl-skeleton-animation {
|
|
@@ -1898,7 +1885,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1898
1885
|
@media screen and (forced-colors: active) {
|
|
1899
1886
|
.jkl-skeleton-element {
|
|
1900
1887
|
border: 1px solid CanvasText;
|
|
1901
|
-
animation: 2s ease infinite jkl-blink-
|
|
1888
|
+
animation: 2s ease infinite jkl-blink-u18ukwr;
|
|
1902
1889
|
}
|
|
1903
1890
|
}
|
|
1904
1891
|
|
|
@@ -1954,11 +1941,11 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1954
1941
|
}
|
|
1955
1942
|
@media screen and (forced-colors: active) {
|
|
1956
1943
|
.jkl-skeleton-table {
|
|
1957
|
-
animation: 2s ease-in-out infinite jkl-blink-
|
|
1944
|
+
animation: 2s ease-in-out infinite jkl-blink-u18ukwr;
|
|
1958
1945
|
}
|
|
1959
1946
|
}
|
|
1960
1947
|
|
|
1961
|
-
@keyframes jkl-sweep-
|
|
1948
|
+
@keyframes jkl-sweep-u18ukwb {
|
|
1962
1949
|
0% {
|
|
1963
1950
|
transform: translateX(calc(0vw - 200px));
|
|
1964
1951
|
}
|
|
@@ -1966,7 +1953,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1966
1953
|
transform: translateX(calc(100vw + 400px));
|
|
1967
1954
|
}
|
|
1968
1955
|
}
|
|
1969
|
-
@keyframes jkl-blink-
|
|
1956
|
+
@keyframes jkl-blink-u18ukwr {
|
|
1970
1957
|
0% {
|
|
1971
1958
|
opacity: 1;
|
|
1972
1959
|
}
|
|
@@ -2336,23 +2323,15 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2336
2323
|
opacity: 0;
|
|
2337
2324
|
}
|
|
2338
2325
|
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
.jkl [data-layout-density=comfortable] .jkl-tag,
|
|
2343
|
-
.jkl [data-density=comfortable] .jkl-tag,
|
|
2344
|
-
.jkl[data-layout-density=comfortable] .jkl-tag,
|
|
2345
|
-
.jkl[data-density=comfortable] .jkl-tag {
|
|
2326
|
+
:root,
|
|
2327
|
+
[data-layout-density=comfortable],
|
|
2328
|
+
[data-density=comfortable] {
|
|
2346
2329
|
--jkl-tag-padding: var(--jkl-spacing-4) var(--jkl-spacing-8);
|
|
2347
2330
|
--jkl-tag-gap: var(--jkl-spacing-4);
|
|
2348
2331
|
}
|
|
2349
2332
|
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
.jkl [data-layout-density=compact] .jkl-tag,
|
|
2353
|
-
.jkl [data-density=compact] .jkl-tag,
|
|
2354
|
-
.jkl[data-layout-density=compact] .jkl-tag,
|
|
2355
|
-
.jkl[data-density=compact] .jkl-tag {
|
|
2333
|
+
[data-layout-density=compact],
|
|
2334
|
+
[data-density=compact] {
|
|
2356
2335
|
--jkl-tag-padding: 0 var(--jkl-spacing-4);
|
|
2357
2336
|
--jkl-tag-gap: var(--jkl-spacing-2);
|
|
2358
2337
|
}
|
|
@@ -2437,7 +2416,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2437
2416
|
--jkl-checkbox-line-height: 1.5rem;
|
|
2438
2417
|
}
|
|
2439
2418
|
|
|
2440
|
-
@keyframes jkl-checkbox-checked-
|
|
2419
|
+
@keyframes jkl-checkbox-checked-u18ukxd {
|
|
2441
2420
|
0% {
|
|
2442
2421
|
width: 0;
|
|
2443
2422
|
height: 0;
|
|
@@ -2451,7 +2430,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2451
2430
|
height: 58%;
|
|
2452
2431
|
}
|
|
2453
2432
|
}
|
|
2454
|
-
@keyframes jkl-checkbox-indeterminate-
|
|
2433
|
+
@keyframes jkl-checkbox-indeterminate-u18uky1 {
|
|
2455
2434
|
0% {
|
|
2456
2435
|
width: 0;
|
|
2457
2436
|
}
|
|
@@ -2479,11 +2458,11 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2479
2458
|
top: -6px;
|
|
2480
2459
|
}
|
|
2481
2460
|
.jkl-checkbox__input:checked + .jkl-checkbox__label .jkl-checkbox__check-mark::after {
|
|
2482
|
-
animation: jkl-checkbox-checked-
|
|
2461
|
+
animation: jkl-checkbox-checked-u18ukxd 150ms ease-in-out forwards;
|
|
2483
2462
|
opacity: 1;
|
|
2484
2463
|
}
|
|
2485
2464
|
.jkl-checkbox__input:indeterminate:not(:checked) + .jkl-checkbox__label .jkl-checkbox__indeterminate-mark::after {
|
|
2486
|
-
animation: jkl-checkbox-indeterminate-
|
|
2465
|
+
animation: jkl-checkbox-indeterminate-u18uky1 150ms ease-in-out forwards;
|
|
2487
2466
|
opacity: 1;
|
|
2488
2467
|
}
|
|
2489
2468
|
.jkl-checkbox__input:focus-visible + .jkl-checkbox__label {
|
|
@@ -2595,12 +2574,8 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2595
2574
|
--check-color: var(--jkl-color-text-on-alert);
|
|
2596
2575
|
}
|
|
2597
2576
|
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
.jkl [data-layout-density=compact] .jkl-chip,
|
|
2601
|
-
.jkl [data-density=compact] .jkl-chip,
|
|
2602
|
-
.jkl[data-layout-density=compact] .jkl-chip,
|
|
2603
|
-
.jkl[data-density=compact] .jkl-chip {
|
|
2577
|
+
[data-layout-density=compact],
|
|
2578
|
+
[data-density=compact] {
|
|
2604
2579
|
--padding-inline-s: 0.5rem;
|
|
2605
2580
|
--padding-inline-l: 0.75rem;
|
|
2606
2581
|
--padding-icon-s: 0.25rem;
|
|
@@ -2611,13 +2586,9 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2611
2586
|
--gap-l: 0.25rem;
|
|
2612
2587
|
}
|
|
2613
2588
|
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
.jkl [data-layout-density=comfortable] .jkl-chip,
|
|
2618
|
-
.jkl [data-density=comfortable] .jkl-chip,
|
|
2619
|
-
.jkl[data-layout-density=comfortable] .jkl-chip,
|
|
2620
|
-
.jkl[data-density=comfortable] .jkl-chip {
|
|
2589
|
+
:root,
|
|
2590
|
+
[data-layout-density=comfortable],
|
|
2591
|
+
[data-density=comfortable] {
|
|
2621
2592
|
--padding-inline-s: 0.75rem;
|
|
2622
2593
|
--padding-inline-l: 1rem;
|
|
2623
2594
|
--padding-icon-s: 0.5rem;
|
|
@@ -2771,13 +2742,9 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2771
2742
|
--jkl-combobox-marked-value-shadow: #1b1917;
|
|
2772
2743
|
}
|
|
2773
2744
|
|
|
2774
|
-
|
|
2775
|
-
|
|
2776
|
-
|
|
2777
|
-
.jkl [data-layout-density=comfortable] .jkl-combobox,
|
|
2778
|
-
.jkl [data-density=comfortable] .jkl-combobox,
|
|
2779
|
-
.jkl[data-layout-density=comfortable] .jkl-combobox,
|
|
2780
|
-
.jkl[data-density=comfortable] .jkl-combobox {
|
|
2745
|
+
:root,
|
|
2746
|
+
[data-layout-density=comfortable],
|
|
2747
|
+
[data-density=comfortable] {
|
|
2781
2748
|
--jkl-combobox-font-size: var(--jkl-body-font-size);
|
|
2782
2749
|
--jkl-combobox-line-height: var(--jkl-body-line-height);
|
|
2783
2750
|
--jkl-combobox-font-weight: var(--jkl-body-font-weight);
|
|
@@ -2795,23 +2762,15 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2795
2762
|
--jkl-combobox-search-input-height: 1.75rem;
|
|
2796
2763
|
}
|
|
2797
2764
|
@media (width >= 0) and (max-width: 679px) {
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
.jkl [data-layout-density=comfortable] .jkl-combobox,
|
|
2802
|
-
.jkl [data-density=comfortable] .jkl-combobox,
|
|
2803
|
-
.jkl[data-layout-density=comfortable] .jkl-combobox,
|
|
2804
|
-
.jkl[data-density=comfortable] .jkl-combobox {
|
|
2765
|
+
:root,
|
|
2766
|
+
[data-layout-density=comfortable],
|
|
2767
|
+
[data-density=comfortable] {
|
|
2805
2768
|
--jkl-combobox-input-height: 2.75rem;
|
|
2806
2769
|
}
|
|
2807
2770
|
}
|
|
2808
2771
|
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
.jkl [data-layout-density=compact] .jkl-combobox,
|
|
2812
|
-
.jkl [data-density=compact] .jkl-combobox,
|
|
2813
|
-
.jkl[data-layout-density=compact] .jkl-combobox,
|
|
2814
|
-
.jkl[data-density=compact] .jkl-combobox {
|
|
2772
|
+
[data-layout-density=compact],
|
|
2773
|
+
[data-density=compact] {
|
|
2815
2774
|
--jkl-combobox-font-size: var(--jkl-small-font-size);
|
|
2816
2775
|
--jkl-combobox-line-height: var(--jkl-small-line-height);
|
|
2817
2776
|
--jkl-combobox-font-weight: var(--jkl-small-font-weight);
|
|
@@ -3292,27 +3251,34 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
3292
3251
|
--jkl-calendar-focus-color: #f9f9f9;
|
|
3293
3252
|
}
|
|
3294
3253
|
|
|
3295
|
-
|
|
3296
|
-
|
|
3297
|
-
|
|
3298
|
-
color: var(--jkl-calendar-text-color);
|
|
3299
|
-
}
|
|
3300
|
-
.jkl .jkl-calendar, .jkl .jkl-calendar[data-layout-density=comfortable], .jkl .jkl-calendar[data-density=comfortable], .jkl [data-layout-density=comfortable] .jkl-calendar, .jkl [data-density=comfortable] .jkl-calendar, .jkl[data-layout-density=comfortable] .jkl-calendar, .jkl[data-density=comfortable] .jkl-calendar {
|
|
3254
|
+
:root,
|
|
3255
|
+
[data-layout-density=comfortable],
|
|
3256
|
+
[data-density=comfortable] {
|
|
3301
3257
|
--jkl-calendar-padding: var(--jkl-spacing-12) var(--jkl-spacing-16)
|
|
3302
3258
|
var(--jkl-spacing-16);
|
|
3303
3259
|
--jkl-calendar-gap: var(--jkl-spacing-12);
|
|
3304
3260
|
}
|
|
3305
3261
|
@media (width >= 0) and (max-width: 374px) {
|
|
3306
|
-
|
|
3262
|
+
:root,
|
|
3263
|
+
[data-layout-density=comfortable],
|
|
3264
|
+
[data-density=comfortable] {
|
|
3307
3265
|
--jkl-calendar-padding: var(--jkl-spacing-4) var(--jkl-spacing-8)
|
|
3308
3266
|
var(--jkl-spacing-16);
|
|
3309
3267
|
}
|
|
3310
3268
|
}
|
|
3311
|
-
|
|
3269
|
+
|
|
3270
|
+
[data-layout-density=compact],
|
|
3271
|
+
[data-density=compact] {
|
|
3312
3272
|
--jkl-calendar-padding: var(--jkl-spacing-4) var(--jkl-spacing-8)
|
|
3313
3273
|
var(--jkl-spacing-16);
|
|
3314
3274
|
--jkl-calendar-gap: 0;
|
|
3315
3275
|
}
|
|
3276
|
+
|
|
3277
|
+
.jkl-calendar {
|
|
3278
|
+
display: block;
|
|
3279
|
+
background-color: var(--jkl-calendar-background-color);
|
|
3280
|
+
color: var(--jkl-calendar-text-color);
|
|
3281
|
+
}
|
|
3316
3282
|
.jkl-calendar__padding {
|
|
3317
3283
|
display: flex;
|
|
3318
3284
|
flex-direction: column;
|
|
@@ -3907,7 +3873,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-calendar-date-
|
|
|
3907
3873
|
padding: 1rem 0 2.5rem 0;
|
|
3908
3874
|
}
|
|
3909
3875
|
|
|
3910
|
-
@keyframes jkl-show-
|
|
3876
|
+
@keyframes jkl-show-u18ukyy {
|
|
3911
3877
|
from {
|
|
3912
3878
|
transform: translate3d(0, 0.5rem, 0);
|
|
3913
3879
|
opacity: 0;
|
|
@@ -3942,7 +3908,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-calendar-date-
|
|
|
3942
3908
|
}
|
|
3943
3909
|
}
|
|
3944
3910
|
.jkl-feedback__fade-in {
|
|
3945
|
-
animation: jkl-show-
|
|
3911
|
+
animation: jkl-show-u18ukyy 0.25s ease-out;
|
|
3946
3912
|
}
|
|
3947
3913
|
.jkl-feedback__buttons {
|
|
3948
3914
|
display: flex;
|
|
@@ -4182,7 +4148,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4182
4148
|
--background-color: var(--jkl-color-background-alert-success);
|
|
4183
4149
|
}
|
|
4184
4150
|
.jkl-message--dismissed {
|
|
4185
|
-
animation: jkl-dismiss-
|
|
4151
|
+
animation: jkl-dismiss-u18ukzt 400ms ease-in-out forwards;
|
|
4186
4152
|
transition: visibility 0ms 400ms;
|
|
4187
4153
|
visibility: hidden;
|
|
4188
4154
|
}
|
|
@@ -4202,7 +4168,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4202
4168
|
}
|
|
4203
4169
|
}
|
|
4204
4170
|
|
|
4205
|
-
@keyframes jkl-dismiss-
|
|
4171
|
+
@keyframes jkl-dismiss-u18ukzt {
|
|
4206
4172
|
from {
|
|
4207
4173
|
opacity: 1;
|
|
4208
4174
|
transform: translate3d(0, 0, 0);
|
|
@@ -4258,7 +4224,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4258
4224
|
--jkl-radio-button-label-font-weight: var(--jkl-small-font-weight);
|
|
4259
4225
|
}
|
|
4260
4226
|
|
|
4261
|
-
@keyframes jkl-dot-in-
|
|
4227
|
+
@keyframes jkl-dot-in-u18ul0l {
|
|
4262
4228
|
0% {
|
|
4263
4229
|
transform: scale(0.8);
|
|
4264
4230
|
}
|
|
@@ -4303,7 +4269,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4303
4269
|
}
|
|
4304
4270
|
.jkl-radio-button__input:checked + .jkl-radio-button__label > .jkl-radio-button__dot::after {
|
|
4305
4271
|
--dot-color: var(--jkl-color-border-action);
|
|
4306
|
-
animation: jkl-dot-in-
|
|
4272
|
+
animation: jkl-dot-in-u18ul0l 150ms ease;
|
|
4307
4273
|
}
|
|
4308
4274
|
@media screen and (forced-colors: active) {
|
|
4309
4275
|
.jkl-radio-button__input:checked + .jkl-radio-button__label > .jkl-radio-button__dot::after {
|
|
@@ -4453,7 +4419,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4453
4419
|
--background-color: var(--jkl-color-background-container-high);
|
|
4454
4420
|
}
|
|
4455
4421
|
|
|
4456
|
-
@keyframes jkl-dot-in-
|
|
4422
|
+
@keyframes jkl-dot-in-u18ul1l {
|
|
4457
4423
|
0% {
|
|
4458
4424
|
transform: scale(0.8);
|
|
4459
4425
|
}
|
|
@@ -4501,7 +4467,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4501
4467
|
}
|
|
4502
4468
|
}
|
|
4503
4469
|
.jkl-radio-panel__input:checked + .jkl-radio-panel__decorator::after {
|
|
4504
|
-
animation: jkl-dot-in-
|
|
4470
|
+
animation: jkl-dot-in-u18ul1l 150ms ease;
|
|
4505
4471
|
}
|
|
4506
4472
|
.jkl-radio-panel:has(:checked) {
|
|
4507
4473
|
--radio-dot-color: var(--jkl-color-border-action);
|
|
@@ -4513,7 +4479,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4513
4479
|
--radio-dot-color: var(--jkl-color-text-on-alert);
|
|
4514
4480
|
}
|
|
4515
4481
|
|
|
4516
|
-
@keyframes jkl-checkbox-checked-
|
|
4482
|
+
@keyframes jkl-checkbox-checked-u18ul2c {
|
|
4517
4483
|
0% {
|
|
4518
4484
|
width: 0;
|
|
4519
4485
|
height: 0;
|
|
@@ -4576,7 +4542,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4576
4542
|
}
|
|
4577
4543
|
}
|
|
4578
4544
|
.jkl-checkbox-panel:has(:checked) .jkl-checkbox-panel__decorator::after {
|
|
4579
|
-
animation: jkl-checkbox-checked-
|
|
4545
|
+
animation: jkl-checkbox-checked-u18ul2c 150ms ease-in-out forwards;
|
|
4580
4546
|
opacity: 1;
|
|
4581
4547
|
}
|
|
4582
4548
|
.jkl-checkbox-panel:has([aria-invalid=true]) {
|
|
@@ -5351,11 +5317,11 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
5351
5317
|
}
|
|
5352
5318
|
|
|
5353
5319
|
.jkl-countdown__tracker {
|
|
5354
|
-
animation: jkl-downcount-
|
|
5320
|
+
animation: jkl-downcount-u18ul30 var(--duration) linear forwards;
|
|
5355
5321
|
animation-play-state: var(--play-state, running);
|
|
5356
5322
|
}
|
|
5357
5323
|
|
|
5358
|
-
@keyframes jkl-downcount-
|
|
5324
|
+
@keyframes jkl-downcount-u18ul30 {
|
|
5359
5325
|
from {
|
|
5360
5326
|
width: 100%;
|
|
5361
5327
|
}
|
|
@@ -5556,7 +5522,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-system-message
|
|
|
5556
5522
|
margin-bottom: 0;
|
|
5557
5523
|
}
|
|
5558
5524
|
.jkl-system-message--dismissed {
|
|
5559
|
-
animation: jkl-dismiss-
|
|
5525
|
+
animation: jkl-dismiss-u18ul3y 400ms ease-in forwards;
|
|
5560
5526
|
transition: visibility 0ms 400ms;
|
|
5561
5527
|
visibility: hidden;
|
|
5562
5528
|
}
|
|
@@ -5588,7 +5554,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-system-message
|
|
|
5588
5554
|
}
|
|
5589
5555
|
}
|
|
5590
5556
|
|
|
5591
|
-
@keyframes jkl-dismiss-
|
|
5557
|
+
@keyframes jkl-dismiss-u18ul3y {
|
|
5592
5558
|
from {
|
|
5593
5559
|
opacity: 1;
|
|
5594
5560
|
transform: translate3d(0, 0, 0);
|
|
@@ -6469,14 +6435,14 @@ html:not([data-mousenavigation]) .jkl-table-pagination__previous:focus, html:not
|
|
|
6469
6435
|
|
|
6470
6436
|
.jkl-toast[data-animation=entering],
|
|
6471
6437
|
.jkl-toast[data-animation=queued] {
|
|
6472
|
-
animation: jkl-entering-
|
|
6438
|
+
animation: jkl-entering-u18ul4f 200ms ease-out forwards;
|
|
6473
6439
|
}
|
|
6474
6440
|
|
|
6475
6441
|
.jkl-toast[data-animation=exiting] {
|
|
6476
|
-
animation: jkl-exiting-
|
|
6442
|
+
animation: jkl-exiting-u18ul5e 150ms ease-in forwards;
|
|
6477
6443
|
}
|
|
6478
6444
|
|
|
6479
|
-
@keyframes jkl-entering-
|
|
6445
|
+
@keyframes jkl-entering-u18ul4f {
|
|
6480
6446
|
from {
|
|
6481
6447
|
opacity: 0;
|
|
6482
6448
|
transform: translate3d(0, 50%, 0);
|
|
@@ -6486,7 +6452,7 @@ html:not([data-mousenavigation]) .jkl-table-pagination__previous:focus, html:not
|
|
|
6486
6452
|
transform: translate3d(0, 0, 0);
|
|
6487
6453
|
}
|
|
6488
6454
|
}
|
|
6489
|
-
@keyframes jkl-exiting-
|
|
6455
|
+
@keyframes jkl-exiting-u18ul5e {
|
|
6490
6456
|
from {
|
|
6491
6457
|
opacity: 1;
|
|
6492
6458
|
transform: translate3d(0, 0, 0);
|