@fremtind/jokul 0.64.0 → 0.64.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/tabs/TabList.cjs +1 -1
- package/build/cjs/components/tabs/TabList.cjs.map +1 -1
- package/build/es/components/tabs/TabList.js +1 -1
- package/build/es/components/tabs/TabList.js.map +1 -1
- package/build/style.css +1 -1
- package/package.json +2 -2
- package/styles/components/button/button.css +3 -3
- package/styles/components/button/button.min.css +1 -1
- 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/tabs/tabs.css +34 -14
- package/styles/components/tabs/tabs.min.css +1 -1
- package/styles/components/tabs/tabs.scss +35 -13
- package/styles/components/toast/toast.css +4 -4
- package/styles/components/toast/toast.min.css +1 -1
- package/styles/styles.css +73 -53
- package/styles/styles.min.css +1 -1
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
[data-density=comfortable] {
|
|
8
8
|
--jkl-tab-padding: var(--jkl-unit-10) var(--jkl-unit-50) var(--jkl-unit-15)
|
|
9
9
|
var(--jkl-unit-02);
|
|
10
|
+
--jkl-tab-padding-inline-end: var(--jkl-unit-50);
|
|
10
11
|
--jkl-tab-font-size: var(--jkl-body-font-size);
|
|
11
12
|
--jkl-tab-line-height: var(--jkl-body-line-height);
|
|
12
13
|
--jkl-tab-font-weight: var(--jkl-body-font-weight);
|
|
@@ -17,6 +18,7 @@
|
|
|
17
18
|
[data-density=comfortable] {
|
|
18
19
|
--jkl-tab-padding: var(--jkl-unit-10) var(--jkl-unit-30)
|
|
19
20
|
var(--jkl-unit-15) var(--jkl-unit-02);
|
|
21
|
+
--jkl-tab-padding-inline-end: var(--jkl-unit-30);
|
|
20
22
|
}
|
|
21
23
|
}
|
|
22
24
|
|
|
@@ -27,6 +29,7 @@
|
|
|
27
29
|
--jkl-tab-font-weight: var(--jkl-small-font-weight);
|
|
28
30
|
--jkl-tab-padding: var(--jkl-unit-02) var(--jkl-unit-40) var(--jkl-unit-05)
|
|
29
31
|
0;
|
|
32
|
+
--jkl-tab-padding-inline-end: var(--jkl-unit-40);
|
|
30
33
|
}
|
|
31
34
|
|
|
32
35
|
.jkl-tabs {
|
|
@@ -49,20 +52,6 @@
|
|
|
49
52
|
width: fit-content;
|
|
50
53
|
max-width: 100%;
|
|
51
54
|
}
|
|
52
|
-
.jkl-tablist__indicator {
|
|
53
|
-
position: absolute;
|
|
54
|
-
height: 2px;
|
|
55
|
-
background-color: var(--indicator-color);
|
|
56
|
-
transition-timing-function: ease;
|
|
57
|
-
transition-duration: 400ms;
|
|
58
|
-
transition-property: left, width;
|
|
59
|
-
will-change: left, width;
|
|
60
|
-
}
|
|
61
|
-
@media screen and (forced-colors: active) {
|
|
62
|
-
.jkl-tablist__indicator {
|
|
63
|
-
background-color: Highlight;
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
55
|
@media screen and (forced-colors: active) {
|
|
67
56
|
.jkl-tablist {
|
|
68
57
|
border-color: GrayText;
|
|
@@ -71,6 +60,20 @@
|
|
|
71
60
|
.jkl-tablist::-webkit-scrollbar {
|
|
72
61
|
display: none;
|
|
73
62
|
}
|
|
63
|
+
@supports (position-anchor: --active-tab) {
|
|
64
|
+
.jkl-tablist::after {
|
|
65
|
+
content: "";
|
|
66
|
+
position: absolute;
|
|
67
|
+
position-anchor: --active-tab;
|
|
68
|
+
height: 2px;
|
|
69
|
+
width: calc(anchor-size(inline) - var(--jkl-tab-padding-inline-end));
|
|
70
|
+
inset-block-start: calc(anchor(end) - 2px);
|
|
71
|
+
inset-inline-start: calc(anchor(--active-tab start));
|
|
72
|
+
background-color: var(--indicator-color);
|
|
73
|
+
transition-timing-function: ease;
|
|
74
|
+
transition-duration: 400ms;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
74
77
|
|
|
75
78
|
.jkl-tab {
|
|
76
79
|
font-size: var(--jkl-tab-font-size);
|
|
@@ -115,7 +118,24 @@
|
|
|
115
118
|
outline-offset: -2px;
|
|
116
119
|
}
|
|
117
120
|
.jkl-tab[aria-selected=true] {
|
|
121
|
+
anchor-name: --active-tab;
|
|
118
122
|
--jkl-icon-weight: 500;
|
|
119
123
|
font-weight: 700;
|
|
120
124
|
letter-spacing: -0.014em;
|
|
125
|
+
}
|
|
126
|
+
@supports not (position-anchor: --active-tab) {
|
|
127
|
+
.jkl-tab[aria-selected=true] {
|
|
128
|
+
position: relative;
|
|
129
|
+
}
|
|
130
|
+
.jkl-tab[aria-selected=true]::after {
|
|
131
|
+
content: "";
|
|
132
|
+
position: absolute;
|
|
133
|
+
height: 2px;
|
|
134
|
+
width: calc(100% - var(--jkl-tab-padding-inline-end));
|
|
135
|
+
inset-block-end: 0;
|
|
136
|
+
inset-inline-start: 0;
|
|
137
|
+
background-color: var(--indicator-color);
|
|
138
|
+
transition-timing-function: ease;
|
|
139
|
+
transition-duration: 400ms;
|
|
140
|
+
}
|
|
121
141
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-tab-padding:var(--jkl-unit-10) var(--jkl-unit-50) var(--jkl-unit-15) var(--jkl-unit-02);--jkl-tab-font-size:var(--jkl-body-font-size);--jkl-tab-line-height:var(--jkl-body-line-height);--jkl-tab-font-weight:var(--jkl-body-font-weight)}@media (width >= 0) and (max-width:679px){:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-tab-padding:var(--jkl-unit-10) var(--jkl-unit-30) var(--jkl-unit-15) var(--jkl-unit-02)}}[data-density=compact],[data-layout-density=compact]{--jkl-tab-font-size:var(--jkl-small-font-size);--jkl-tab-line-height:var(--jkl-small-line-height);--jkl-tab-font-weight:var(--jkl-small-font-weight);--jkl-tab-padding:var(--jkl-unit-02) var(--jkl-unit-40) var(--jkl-unit-05) 0}.jkl-tabs{width:100%}.jkl-tablist{--text-color:var(--jkl-color-text-interactive);--line-color:var(--jkl-color-border-separator);--indicator-color:var(--jkl-color-border-separator-hover);border-bottom:1px solid var(--line-color);display:inline-flex;flex-direction:row;margin:0;max-width:100%;overflow:scroll hidden;padding:0;position:relative;scroll-snap-type:x proximity;scrollbar-width:none;width:-webkit-fit-content;width:fit-content}.jkl-
|
|
1
|
+
:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-tab-padding:var(--jkl-unit-10) var(--jkl-unit-50) var(--jkl-unit-15) var(--jkl-unit-02);--jkl-tab-padding-inline-end:var(--jkl-unit-50);--jkl-tab-font-size:var(--jkl-body-font-size);--jkl-tab-line-height:var(--jkl-body-line-height);--jkl-tab-font-weight:var(--jkl-body-font-weight)}@media (width >= 0) and (max-width:679px){:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-tab-padding:var(--jkl-unit-10) var(--jkl-unit-30) var(--jkl-unit-15) var(--jkl-unit-02);--jkl-tab-padding-inline-end:var(--jkl-unit-30)}}[data-density=compact],[data-layout-density=compact]{--jkl-tab-font-size:var(--jkl-small-font-size);--jkl-tab-line-height:var(--jkl-small-line-height);--jkl-tab-font-weight:var(--jkl-small-font-weight);--jkl-tab-padding:var(--jkl-unit-02) var(--jkl-unit-40) var(--jkl-unit-05) 0;--jkl-tab-padding-inline-end:var(--jkl-unit-40)}.jkl-tabs{width:100%}.jkl-tablist{--text-color:var(--jkl-color-text-interactive);--line-color:var(--jkl-color-border-separator);--indicator-color:var(--jkl-color-border-separator-hover);border-bottom:1px solid var(--line-color);display:inline-flex;flex-direction:row;margin:0;max-width:100%;overflow:scroll hidden;padding:0;position:relative;scroll-snap-type:x proximity;scrollbar-width:none;width:-webkit-fit-content;width:fit-content}@media screen and (forced-colors:active){.jkl-tablist{border-color:GrayText}}.jkl-tablist::-webkit-scrollbar{display:none}@supports (position-anchor:--active-tab){.jkl-tablist:after{content:"";position:absolute;position-anchor:--active-tab;background-color:var(--indicator-color);height:2px;inset-block-start:calc(anchor(end) - 2px);inset-inline-start:calc(anchor(--active-tab start));transition-duration:.4s;transition-timing-function:ease;width:calc(anchor-size(inline) - var(--jkl-tab-padding-inline-end))}}.jkl-tab{background-color:transparent;border:none;border-style:none;color:var(--text-color);cursor:pointer;font-size:var(--jkl-tab-font-size);font-weight:var(--jkl-tab-font-weight);line-height:var(--jkl-tab-line-height);outline:0;outline-style:none;padding:var(--jkl-tab-padding);position:relative;scroll-margin-inline-start:var(--jkl-unit-20);scroll-snap-align:start;text-decoration:none;white-space:nowrap}.jkl-tab:active,.jkl-tab:focus,.jkl-tab:hover{outline:0;outline-style:none}@media screen and (forced-colors:active){.jkl-tab{border-style:revert;outline:revert;outline-style:revert}.jkl-tab:active,.jkl-tab:focus,.jkl-tab:hover{outline:revert;outline-style:revert}}.jkl-tab:hover{--text-color:var(--jkl-color-text-interactive-hover)}.jkl-tab:focus-visible{outline:3px solid var(--jkl-color-border-action);outline-offset:-2px}.jkl-tab[aria-selected=true]{anchor-name:--active-tab;--jkl-icon-weight:500;font-weight:700;letter-spacing:-.014em}@supports not (position-anchor:--active-tab){.jkl-tab[aria-selected=true]{position:relative}.jkl-tab[aria-selected=true]:after{background-color:var(--indicator-color);content:"";height:2px;inset-block-end:0;inset-inline-start:0;position:absolute;transition-duration:.4s;transition-timing-function:ease;width:calc(100% - var(--jkl-tab-padding-inline-end))}}
|
|
@@ -4,11 +4,13 @@
|
|
|
4
4
|
@include jkl.comfortable-density-variables {
|
|
5
5
|
--jkl-tab-padding: var(--jkl-unit-10) var(--jkl-unit-50) var(--jkl-unit-15)
|
|
6
6
|
var(--jkl-unit-02);
|
|
7
|
+
--jkl-tab-padding-inline-end: var(--jkl-unit-50);
|
|
7
8
|
|
|
8
9
|
@include jkl.declare-font-variables("jkl-tab", "body");
|
|
9
10
|
@include jkl.small-device {
|
|
10
11
|
--jkl-tab-padding: var(--jkl-unit-10) var(--jkl-unit-30)
|
|
11
12
|
var(--jkl-unit-15) var(--jkl-unit-02);
|
|
13
|
+
--jkl-tab-padding-inline-end: var(--jkl-unit-30);
|
|
12
14
|
}
|
|
13
15
|
}
|
|
14
16
|
|
|
@@ -17,6 +19,7 @@
|
|
|
17
19
|
|
|
18
20
|
--jkl-tab-padding: var(--jkl-unit-02) var(--jkl-unit-40) var(--jkl-unit-05)
|
|
19
21
|
0;
|
|
22
|
+
--jkl-tab-padding-inline-end: var(--jkl-unit-40);
|
|
20
23
|
}
|
|
21
24
|
|
|
22
25
|
.jkl-tabs {
|
|
@@ -40,19 +43,6 @@
|
|
|
40
43
|
width: fit-content;
|
|
41
44
|
max-width: 100%;
|
|
42
45
|
|
|
43
|
-
&__indicator {
|
|
44
|
-
position: absolute;
|
|
45
|
-
height: 2px;
|
|
46
|
-
background-color: var(--indicator-color);
|
|
47
|
-
@include jkl.motion("standard", "lazy");
|
|
48
|
-
transition-property: left, width;
|
|
49
|
-
will-change: left, width;
|
|
50
|
-
|
|
51
|
-
@include jkl.forced-colors-mode {
|
|
52
|
-
background-color: Highlight;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
|
|
56
46
|
@include jkl.forced-colors-mode {
|
|
57
47
|
border-color: GrayText;
|
|
58
48
|
}
|
|
@@ -60,6 +50,22 @@
|
|
|
60
50
|
&::-webkit-scrollbar {
|
|
61
51
|
display: none;
|
|
62
52
|
}
|
|
53
|
+
|
|
54
|
+
@supports (position-anchor: --active-tab) {
|
|
55
|
+
&::after {
|
|
56
|
+
content: "";
|
|
57
|
+
position: absolute;
|
|
58
|
+
position-anchor: --active-tab;
|
|
59
|
+
height: 2px;
|
|
60
|
+
width: calc(
|
|
61
|
+
anchor-size(inline) - var(--jkl-tab-padding-inline-end)
|
|
62
|
+
);
|
|
63
|
+
inset-block-start: calc(anchor(end) - 2px);
|
|
64
|
+
inset-inline-start: calc(anchor(--active-tab start));
|
|
65
|
+
background-color: var(--indicator-color);
|
|
66
|
+
@include jkl.motion("standard", "lazy");
|
|
67
|
+
}
|
|
68
|
+
}
|
|
63
69
|
}
|
|
64
70
|
|
|
65
71
|
.jkl-tab {
|
|
@@ -86,6 +92,22 @@
|
|
|
86
92
|
}
|
|
87
93
|
|
|
88
94
|
&[aria-selected="true"] {
|
|
95
|
+
anchor-name: --active-tab;
|
|
89
96
|
@include jkl.no-grow-bold;
|
|
97
|
+
|
|
98
|
+
@supports not (position-anchor: --active-tab) {
|
|
99
|
+
position: relative;
|
|
100
|
+
|
|
101
|
+
&::after {
|
|
102
|
+
content: "";
|
|
103
|
+
position: absolute;
|
|
104
|
+
height: 2px;
|
|
105
|
+
width: calc(100% - var(--jkl-tab-padding-inline-end));
|
|
106
|
+
inset-block-end: 0;
|
|
107
|
+
inset-inline-start: 0;
|
|
108
|
+
background-color: var(--indicator-color);
|
|
109
|
+
@include jkl.motion("standard", "lazy");
|
|
110
|
+
}
|
|
111
|
+
}
|
|
90
112
|
}
|
|
91
113
|
}
|
|
@@ -185,14 +185,14 @@
|
|
|
185
185
|
|
|
186
186
|
.jkl-toast[data-animation=entering],
|
|
187
187
|
.jkl-toast[data-animation=queued] {
|
|
188
|
-
animation: jkl-entering-
|
|
188
|
+
animation: jkl-entering-u9jzeih 200ms ease-out forwards;
|
|
189
189
|
}
|
|
190
190
|
|
|
191
191
|
.jkl-toast[data-animation=exiting] {
|
|
192
|
-
animation: jkl-exiting-
|
|
192
|
+
animation: jkl-exiting-u9jzejf 150ms ease-in forwards;
|
|
193
193
|
}
|
|
194
194
|
|
|
195
|
-
@keyframes jkl-entering-
|
|
195
|
+
@keyframes jkl-entering-u9jzeih {
|
|
196
196
|
from {
|
|
197
197
|
opacity: 0;
|
|
198
198
|
transform: translate3d(0, 50%, 0);
|
|
@@ -202,7 +202,7 @@
|
|
|
202
202
|
transform: translate3d(0, 0, 0);
|
|
203
203
|
}
|
|
204
204
|
}
|
|
205
|
-
@keyframes jkl-exiting-
|
|
205
|
+
@keyframes jkl-exiting-u9jzejf {
|
|
206
206
|
from {
|
|
207
207
|
opacity: 1;
|
|
208
208
|
transform: translate3d(0, 0, 0);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-toast-padding:calc(var(--jkl-unit-10)*2)}@media (width >= 0) and (max-width:679px){:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-toast-padding:calc(var(--jkl-unit-10)*1.5)}}[data-density=compact],[data-layout-density=compact]{--jkl-toast-padding:0.5rem}.jkl-toast-region{background:transparent;bottom:calc(var(--jkl-unit-10)*3);display:flex;justify-content:center;left:0;pointer-events:none;position:fixed;right:0;width:100%;z-index:10000}.jkl-toast-region__toasts{align-items:center;display:flex;flex-direction:column;gap:calc(var(--jkl-unit-10)*2);min-width:18rem;pointer-events:auto}.jkl-toast-region--left{justify-content:flex-start;left:calc(var(--jkl-unit-10)*3)}.jkl-toast{--background-color:var(--jkl-color-background-container-high);--text-color:var(--jkl-color-text-default);align-items:start;background-color:var(--background-color);border-radius:4px;box-sizing:border-box;color:var(--text-color);display:grid;font-size:1.125rem;font-weight:400;grid-template-areas:"progress progress progress" "icon content dismiss";grid-template-columns:auto 1fr auto;line-height:1.75rem;max-width:min(30rem,85vw);overflow:hidden;padding:var(--jkl-toast-padding);padding-top:0;width:100%;--jkl-icon-weight:300}@media (min-width:680px){.jkl-toast{font-size:1.25rem;font-weight:400;line-height:2rem;--jkl-icon-weight:300}}.jkl-toast__progress{grid-area:progress;margin-bottom:calc(var(--jkl-unit-10)*2);margin-inline:calc(var(--jkl-toast-padding)*-1)}.jkl-toast__progress .jkl-countdown{--bar-color:var(--text-color);--track-color:transparent;border-radius:0}.jkl-toast__icon{grid-area:icon;margin-right:calc(var(--jkl-unit-10)*1.5)}@media screen and (forced-colors:active){.jkl-toast__icon,.jkl-toast__icon path,.jkl-toast__icon svg{stroke:CanvasText}}.jkl-toast__content{grid-area:content}.jkl-toast__message{margin-top:-.125rem}.jkl-toast__title{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:0 0 calc(var(--jkl-unit-10)*.5) 0;--jkl-icon-weight:500}@media (min-width:680px){.jkl-toast__title{font-size:1.3125rem;font-weight:700;line-height:1.75rem;--jkl-icon-weight:500}}.jkl-toast__title~.jkl-toast__message{margin-top:0}.jkl-toast__dismiss-button{background-color:transparent;color:inherit;cursor:pointer;grid-area:dismiss;justify-self:end;margin-left:var(--jkl-toast-gap);padding:0;position:relative}@media screen and (forced-colors:active){.jkl-toast__dismiss-button,.jkl-toast__dismiss-button path,.jkl-toast__dismiss-button svg{stroke:ButtonText}.jkl-toast__dismiss-button{background-color:ButtonFace}}.jkl-toast__dismiss-button:after{--tap-increment:-0.75rem;border-radius:.1875rem;content:"";inset:var(--tap-increment) var(--tap-increment) var(--tap-increment) var(--tap-increment);position:absolute}.jkl-toast--error,.jkl-toast--info,.jkl-toast--success,.jkl-toast--warning{--text-color:var(--jkl-color-text-on-alert)}.jkl-toast--info{--background-color:var(--jkl-color-background-alert-info)}.jkl-toast--warning{--background-color:var(--jkl-color-background-alert-warning)}.jkl-toast--error{--background-color:var(--jkl-color-background-alert-error)}.jkl-toast--success{--background-color:var(--jkl-color-background-alert-success)}@media screen and (forced-colors:active){.jkl-toast{border:2px solid CanvasText}.jkl-toast--info{border-style:dotted}.jkl-toast--warning{border-style:dashed}.jkl-toast--error{border-style:double;border-width:4px}}.jkl-toast[data-animation=entering],.jkl-toast[data-animation=queued]{animation:jkl-entering-
|
|
1
|
+
:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-toast-padding:calc(var(--jkl-unit-10)*2)}@media (width >= 0) and (max-width:679px){:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-toast-padding:calc(var(--jkl-unit-10)*1.5)}}[data-density=compact],[data-layout-density=compact]{--jkl-toast-padding:0.5rem}.jkl-toast-region{background:transparent;bottom:calc(var(--jkl-unit-10)*3);display:flex;justify-content:center;left:0;pointer-events:none;position:fixed;right:0;width:100%;z-index:10000}.jkl-toast-region__toasts{align-items:center;display:flex;flex-direction:column;gap:calc(var(--jkl-unit-10)*2);min-width:18rem;pointer-events:auto}.jkl-toast-region--left{justify-content:flex-start;left:calc(var(--jkl-unit-10)*3)}.jkl-toast{--background-color:var(--jkl-color-background-container-high);--text-color:var(--jkl-color-text-default);align-items:start;background-color:var(--background-color);border-radius:4px;box-sizing:border-box;color:var(--text-color);display:grid;font-size:1.125rem;font-weight:400;grid-template-areas:"progress progress progress" "icon content dismiss";grid-template-columns:auto 1fr auto;line-height:1.75rem;max-width:min(30rem,85vw);overflow:hidden;padding:var(--jkl-toast-padding);padding-top:0;width:100%;--jkl-icon-weight:300}@media (min-width:680px){.jkl-toast{font-size:1.25rem;font-weight:400;line-height:2rem;--jkl-icon-weight:300}}.jkl-toast__progress{grid-area:progress;margin-bottom:calc(var(--jkl-unit-10)*2);margin-inline:calc(var(--jkl-toast-padding)*-1)}.jkl-toast__progress .jkl-countdown{--bar-color:var(--text-color);--track-color:transparent;border-radius:0}.jkl-toast__icon{grid-area:icon;margin-right:calc(var(--jkl-unit-10)*1.5)}@media screen and (forced-colors:active){.jkl-toast__icon,.jkl-toast__icon path,.jkl-toast__icon svg{stroke:CanvasText}}.jkl-toast__content{grid-area:content}.jkl-toast__message{margin-top:-.125rem}.jkl-toast__title{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:0 0 calc(var(--jkl-unit-10)*.5) 0;--jkl-icon-weight:500}@media (min-width:680px){.jkl-toast__title{font-size:1.3125rem;font-weight:700;line-height:1.75rem;--jkl-icon-weight:500}}.jkl-toast__title~.jkl-toast__message{margin-top:0}.jkl-toast__dismiss-button{background-color:transparent;color:inherit;cursor:pointer;grid-area:dismiss;justify-self:end;margin-left:var(--jkl-toast-gap);padding:0;position:relative}@media screen and (forced-colors:active){.jkl-toast__dismiss-button,.jkl-toast__dismiss-button path,.jkl-toast__dismiss-button svg{stroke:ButtonText}.jkl-toast__dismiss-button{background-color:ButtonFace}}.jkl-toast__dismiss-button:after{--tap-increment:-0.75rem;border-radius:.1875rem;content:"";inset:var(--tap-increment) var(--tap-increment) var(--tap-increment) var(--tap-increment);position:absolute}.jkl-toast--error,.jkl-toast--info,.jkl-toast--success,.jkl-toast--warning{--text-color:var(--jkl-color-text-on-alert)}.jkl-toast--info{--background-color:var(--jkl-color-background-alert-info)}.jkl-toast--warning{--background-color:var(--jkl-color-background-alert-warning)}.jkl-toast--error{--background-color:var(--jkl-color-background-alert-error)}.jkl-toast--success{--background-color:var(--jkl-color-background-alert-success)}@media screen and (forced-colors:active){.jkl-toast{border:2px solid CanvasText}.jkl-toast--info{border-style:dotted}.jkl-toast--warning{border-style:dashed}.jkl-toast--error{border-style:double;border-width:4px}}.jkl-toast[data-animation=entering],.jkl-toast[data-animation=queued]{animation:jkl-entering-u9jzeih .2s ease-out forwards}.jkl-toast[data-animation=exiting]{animation:jkl-exiting-u9jzejf .15s ease-in forwards}@keyframes jkl-entering-u9jzeih{0%{opacity:0;transform:translate3d(0,50%,0)}to{opacity:1;transform:translateZ(0)}}@keyframes jkl-exiting-u9jzejf{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(0,50%,0)}}
|
package/styles/styles.css
CHANGED
|
@@ -783,7 +783,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-text-input-wra
|
|
|
783
783
|
--color: var(--jkl-color-text-default);
|
|
784
784
|
}
|
|
785
785
|
.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 {
|
|
786
|
-
animation: 400ms cubic-bezier(0, 0, 0.3, 1) 250ms jkl-support-icon-entrance-
|
|
786
|
+
animation: 400ms cubic-bezier(0, 0, 0.3, 1) 250ms jkl-support-icon-entrance-u38vjm8 forwards;
|
|
787
787
|
}
|
|
788
788
|
.jkl-form-support-label--sr-only {
|
|
789
789
|
border: 0 !important;
|
|
@@ -858,7 +858,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-text-input-wra
|
|
|
858
858
|
white-space: nowrap !important; /* 3 */
|
|
859
859
|
}
|
|
860
860
|
|
|
861
|
-
@keyframes jkl-support-icon-entrance-
|
|
861
|
+
@keyframes jkl-support-icon-entrance-u38vjm8 {
|
|
862
862
|
0% {
|
|
863
863
|
margin-right: 0;
|
|
864
864
|
opacity: 0;
|
|
@@ -1139,12 +1139,12 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
1139
1139
|
initial-value: 0;
|
|
1140
1140
|
inherits: false;
|
|
1141
1141
|
}
|
|
1142
|
-
@keyframes button-fade-
|
|
1142
|
+
@keyframes button-fade-u38vjmh {
|
|
1143
1143
|
from {
|
|
1144
1144
|
--jkl-button-flash-opacity: 0.5;
|
|
1145
1145
|
}
|
|
1146
1146
|
}
|
|
1147
|
-
@keyframes button-grow-
|
|
1147
|
+
@keyframes button-grow-u38vjmc {
|
|
1148
1148
|
to {
|
|
1149
1149
|
--jkl-button-flash-radius: 150%;
|
|
1150
1150
|
}
|
|
@@ -1230,7 +1230,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
1230
1230
|
--hover-opacity: 0.15;
|
|
1231
1231
|
}
|
|
1232
1232
|
.jkl-button.jkl-button--pressed {
|
|
1233
|
-
animation-name: button-fade-
|
|
1233
|
+
animation-name: button-fade-u38vjmh, button-grow-u38vjmc;
|
|
1234
1234
|
}
|
|
1235
1235
|
.jkl-button--primary, .jkl-button--secondary, .jkl-button--ghost {
|
|
1236
1236
|
--border-radius: 999px;
|
|
@@ -1268,15 +1268,15 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
1268
1268
|
animation: 2500ms linear infinite;
|
|
1269
1269
|
}
|
|
1270
1270
|
.jkl-loader__dot--left {
|
|
1271
|
-
animation-name: jkl-loader-left-spin-
|
|
1271
|
+
animation-name: jkl-loader-left-spin-u38vjmo;
|
|
1272
1272
|
margin-right: 1.71em;
|
|
1273
1273
|
}
|
|
1274
1274
|
.jkl-loader__dot--middle {
|
|
1275
|
-
animation-name: jkl-loader-middle-spin-
|
|
1275
|
+
animation-name: jkl-loader-middle-spin-u38vjn1;
|
|
1276
1276
|
margin-right: 1.9em;
|
|
1277
1277
|
}
|
|
1278
1278
|
.jkl-loader__dot--right {
|
|
1279
|
-
animation-name: jkl-loader-right-spin-
|
|
1279
|
+
animation-name: jkl-loader-right-spin-u38vjnv;
|
|
1280
1280
|
}
|
|
1281
1281
|
@media screen and (forced-colors: active) {
|
|
1282
1282
|
.jkl-loader__dot {
|
|
@@ -1304,7 +1304,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
1304
1304
|
margin-right: 0.3em;
|
|
1305
1305
|
}
|
|
1306
1306
|
|
|
1307
|
-
@keyframes jkl-loader-left-spin-
|
|
1307
|
+
@keyframes jkl-loader-left-spin-u38vjmo {
|
|
1308
1308
|
0% {
|
|
1309
1309
|
transform: rotate(0) scale(0);
|
|
1310
1310
|
}
|
|
@@ -1318,7 +1318,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
1318
1318
|
transform: rotate(180deg) scale(0);
|
|
1319
1319
|
}
|
|
1320
1320
|
}
|
|
1321
|
-
@keyframes jkl-loader-middle-spin-
|
|
1321
|
+
@keyframes jkl-loader-middle-spin-u38vjn1 {
|
|
1322
1322
|
0% {
|
|
1323
1323
|
transform: rotate(20deg) scale(0);
|
|
1324
1324
|
}
|
|
@@ -1335,7 +1335,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
1335
1335
|
transform: rotate(200deg) scale(0);
|
|
1336
1336
|
}
|
|
1337
1337
|
}
|
|
1338
|
-
@keyframes jkl-loader-right-spin-
|
|
1338
|
+
@keyframes jkl-loader-right-spin-u38vjnv {
|
|
1339
1339
|
0% {
|
|
1340
1340
|
transform: rotate(40deg) scale(0);
|
|
1341
1341
|
}
|
|
@@ -1383,7 +1383,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
1383
1383
|
bottom: 0;
|
|
1384
1384
|
width: 12.5rem;
|
|
1385
1385
|
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%);
|
|
1386
|
-
animation: var(--jkl-skeleton-sweep-duration) ease infinite jkl-sweep-
|
|
1386
|
+
animation: var(--jkl-skeleton-sweep-duration) ease infinite jkl-sweep-u38vjoa;
|
|
1387
1387
|
}
|
|
1388
1388
|
@media (width >= 0) and (max-width: 679px) {
|
|
1389
1389
|
.jkl-skeleton-animation {
|
|
@@ -1414,7 +1414,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
1414
1414
|
@media screen and (forced-colors: active) {
|
|
1415
1415
|
.jkl-skeleton-element {
|
|
1416
1416
|
border: 1px solid CanvasText;
|
|
1417
|
-
animation: 2s ease infinite jkl-blink-
|
|
1417
|
+
animation: 2s ease infinite jkl-blink-u38vjp1;
|
|
1418
1418
|
}
|
|
1419
1419
|
}
|
|
1420
1420
|
|
|
@@ -1470,11 +1470,11 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
1470
1470
|
}
|
|
1471
1471
|
@media screen and (forced-colors: active) {
|
|
1472
1472
|
.jkl-skeleton-table {
|
|
1473
|
-
animation: 2s ease-in-out infinite jkl-blink-
|
|
1473
|
+
animation: 2s ease-in-out infinite jkl-blink-u38vjp1;
|
|
1474
1474
|
}
|
|
1475
1475
|
}
|
|
1476
1476
|
|
|
1477
|
-
@keyframes jkl-sweep-
|
|
1477
|
+
@keyframes jkl-sweep-u38vjoa {
|
|
1478
1478
|
0% {
|
|
1479
1479
|
transform: translateX(calc(0vw - 200px));
|
|
1480
1480
|
}
|
|
@@ -1482,7 +1482,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
1482
1482
|
transform: translateX(calc(100vw + 400px));
|
|
1483
1483
|
}
|
|
1484
1484
|
}
|
|
1485
|
-
@keyframes jkl-blink-
|
|
1485
|
+
@keyframes jkl-blink-u38vjp1 {
|
|
1486
1486
|
0% {
|
|
1487
1487
|
opacity: 1;
|
|
1488
1488
|
}
|
|
@@ -1946,7 +1946,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
1946
1946
|
--jkl-checkbox-line-height: 1.5rem;
|
|
1947
1947
|
}
|
|
1948
1948
|
|
|
1949
|
-
@keyframes jkl-checkbox-checked-
|
|
1949
|
+
@keyframes jkl-checkbox-checked-u38vjpb {
|
|
1950
1950
|
0% {
|
|
1951
1951
|
width: 0;
|
|
1952
1952
|
height: 0;
|
|
@@ -1960,7 +1960,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
1960
1960
|
height: 58%;
|
|
1961
1961
|
}
|
|
1962
1962
|
}
|
|
1963
|
-
@keyframes jkl-checkbox-indeterminate-
|
|
1963
|
+
@keyframes jkl-checkbox-indeterminate-u38vjpw {
|
|
1964
1964
|
0% {
|
|
1965
1965
|
width: 0;
|
|
1966
1966
|
}
|
|
@@ -1989,11 +1989,11 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
1989
1989
|
left: calc(-0.5 * var(--jkl-checkbox-box-size));
|
|
1990
1990
|
}
|
|
1991
1991
|
.jkl-checkbox__input:checked + .jkl-checkbox__label .jkl-checkbox__check-mark::after {
|
|
1992
|
-
animation: jkl-checkbox-checked-
|
|
1992
|
+
animation: jkl-checkbox-checked-u38vjpb 150ms ease-in-out forwards;
|
|
1993
1993
|
opacity: 1;
|
|
1994
1994
|
}
|
|
1995
1995
|
.jkl-checkbox__input:indeterminate:not(:checked) + .jkl-checkbox__label .jkl-checkbox__indeterminate-mark::after {
|
|
1996
|
-
animation: jkl-checkbox-indeterminate-
|
|
1996
|
+
animation: jkl-checkbox-indeterminate-u38vjpw 150ms ease-in-out forwards;
|
|
1997
1997
|
opacity: 1;
|
|
1998
1998
|
}
|
|
1999
1999
|
.jkl-checkbox__input:focus-visible + .jkl-checkbox__label {
|
|
@@ -2164,7 +2164,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2164
2164
|
--outer-border-thickness: 0.125rem;
|
|
2165
2165
|
}
|
|
2166
2166
|
|
|
2167
|
-
@keyframes jkl-checkbox-checked-
|
|
2167
|
+
@keyframes jkl-checkbox-checked-u38vjqt {
|
|
2168
2168
|
0% {
|
|
2169
2169
|
width: 0;
|
|
2170
2170
|
height: 0;
|
|
@@ -2227,7 +2227,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2227
2227
|
}
|
|
2228
2228
|
}
|
|
2229
2229
|
.jkl-checkbox-panel:has(:checked) .jkl-checkbox-panel__decorator::after {
|
|
2230
|
-
animation: jkl-checkbox-checked-
|
|
2230
|
+
animation: jkl-checkbox-checked-u38vjqt 150ms ease-in-out forwards;
|
|
2231
2231
|
opacity: 1;
|
|
2232
2232
|
}
|
|
2233
2233
|
.jkl-checkbox-panel:has([aria-invalid=true]) {
|
|
@@ -2920,11 +2920,11 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-combobox__wrap
|
|
|
2920
2920
|
}
|
|
2921
2921
|
}
|
|
2922
2922
|
.jkl-countdown__tracker {
|
|
2923
|
-
animation: jkl-downcount-
|
|
2923
|
+
animation: jkl-downcount-u38vjrc var(--duration) linear forwards;
|
|
2924
2924
|
animation-play-state: var(--play-state, running);
|
|
2925
2925
|
}
|
|
2926
2926
|
|
|
2927
|
-
@keyframes jkl-downcount-
|
|
2927
|
+
@keyframes jkl-downcount-u38vjrc {
|
|
2928
2928
|
from {
|
|
2929
2929
|
width: 100%;
|
|
2930
2930
|
}
|
|
@@ -3596,7 +3596,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-combobox__wrap
|
|
|
3596
3596
|
padding: 1rem 0 2.5rem 0;
|
|
3597
3597
|
}
|
|
3598
3598
|
|
|
3599
|
-
@keyframes jkl-show-
|
|
3599
|
+
@keyframes jkl-show-u38vjrh {
|
|
3600
3600
|
from {
|
|
3601
3601
|
transform: translate3d(0, 0.5rem, 0);
|
|
3602
3602
|
opacity: 0;
|
|
@@ -3631,7 +3631,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-combobox__wrap
|
|
|
3631
3631
|
}
|
|
3632
3632
|
}
|
|
3633
3633
|
.jkl-feedback__fade-in {
|
|
3634
|
-
animation: jkl-show-
|
|
3634
|
+
animation: jkl-show-u38vjrh 0.25s ease-out;
|
|
3635
3635
|
}
|
|
3636
3636
|
.jkl-feedback__buttons {
|
|
3637
3637
|
display: flex;
|
|
@@ -3873,7 +3873,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
3873
3873
|
--background-color: var(--jkl-color-background-alert-success);
|
|
3874
3874
|
}
|
|
3875
3875
|
.jkl-message--dismissed {
|
|
3876
|
-
animation: jkl-dismiss-
|
|
3876
|
+
animation: jkl-dismiss-u38vjsf 400ms ease-in-out forwards;
|
|
3877
3877
|
transition: visibility 0ms 400ms;
|
|
3878
3878
|
visibility: hidden;
|
|
3879
3879
|
}
|
|
@@ -3893,7 +3893,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
3893
3893
|
}
|
|
3894
3894
|
}
|
|
3895
3895
|
|
|
3896
|
-
@keyframes jkl-dismiss-
|
|
3896
|
+
@keyframes jkl-dismiss-u38vjsf {
|
|
3897
3897
|
from {
|
|
3898
3898
|
opacity: 1;
|
|
3899
3899
|
transform: translate3d(0, 0, 0);
|
|
@@ -3949,7 +3949,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
3949
3949
|
--jkl-radio-button-label-font-weight: var(--jkl-small-font-weight);
|
|
3950
3950
|
}
|
|
3951
3951
|
|
|
3952
|
-
@keyframes jkl-dot-in-
|
|
3952
|
+
@keyframes jkl-dot-in-u38vjtf {
|
|
3953
3953
|
0% {
|
|
3954
3954
|
transform: scale(0.8);
|
|
3955
3955
|
}
|
|
@@ -3995,7 +3995,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
3995
3995
|
}
|
|
3996
3996
|
.jkl-radio-button__input:checked + .jkl-radio-button__label > .jkl-radio-button__dot::after {
|
|
3997
3997
|
--dot-color: var(--jkl-color-border-action);
|
|
3998
|
-
animation: jkl-dot-in-
|
|
3998
|
+
animation: jkl-dot-in-u38vjtf 150ms ease;
|
|
3999
3999
|
}
|
|
4000
4000
|
@media screen and (forced-colors: active) {
|
|
4001
4001
|
.jkl-radio-button__input:checked + .jkl-radio-button__label > .jkl-radio-button__dot::after {
|
|
@@ -5086,7 +5086,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-select:has(:fo
|
|
|
5086
5086
|
transition-duration: 150ms;
|
|
5087
5087
|
}
|
|
5088
5088
|
|
|
5089
|
-
@keyframes jkl-downcount-
|
|
5089
|
+
@keyframes jkl-downcount-u38vjuf {
|
|
5090
5090
|
from {
|
|
5091
5091
|
width: 100%;
|
|
5092
5092
|
}
|
|
@@ -5094,7 +5094,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-select:has(:fo
|
|
|
5094
5094
|
width: 0%;
|
|
5095
5095
|
}
|
|
5096
5096
|
}
|
|
5097
|
-
@keyframes jkl-dot-in-
|
|
5097
|
+
@keyframes jkl-dot-in-u38vjuv {
|
|
5098
5098
|
0% {
|
|
5099
5099
|
transform: scale(0.8);
|
|
5100
5100
|
}
|
|
@@ -5142,7 +5142,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-select:has(:fo
|
|
|
5142
5142
|
}
|
|
5143
5143
|
}
|
|
5144
5144
|
.jkl-radio-panel__input:checked + .jkl-radio-panel__decorator::after {
|
|
5145
|
-
animation: jkl-dot-in-
|
|
5145
|
+
animation: jkl-dot-in-u38vjuv 150ms ease;
|
|
5146
5146
|
}
|
|
5147
5147
|
.jkl-radio-panel:has(:checked) {
|
|
5148
5148
|
--radio-dot-color: var(--jkl-color-border-action);
|
|
@@ -5354,7 +5354,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-select:has(:fo
|
|
|
5354
5354
|
margin-bottom: 0;
|
|
5355
5355
|
}
|
|
5356
5356
|
.jkl-system-message--dismissed {
|
|
5357
|
-
animation: jkl-dismiss-
|
|
5357
|
+
animation: jkl-dismiss-u38vjvb 400ms ease-in forwards;
|
|
5358
5358
|
transition: visibility 0ms 400ms;
|
|
5359
5359
|
visibility: hidden;
|
|
5360
5360
|
}
|
|
@@ -5386,7 +5386,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-select:has(:fo
|
|
|
5386
5386
|
}
|
|
5387
5387
|
}
|
|
5388
5388
|
|
|
5389
|
-
@keyframes jkl-dismiss-
|
|
5389
|
+
@keyframes jkl-dismiss-u38vjvb {
|
|
5390
5390
|
from {
|
|
5391
5391
|
opacity: 1;
|
|
5392
5392
|
transform: translate3d(0, 0, 0);
|
|
@@ -5961,6 +5961,7 @@ html:not([data-mousenavigation]) .jkl-table-pagination__previous:focus, html:not
|
|
|
5961
5961
|
[data-density=comfortable] {
|
|
5962
5962
|
--jkl-tab-padding: var(--jkl-unit-10) var(--jkl-unit-50) var(--jkl-unit-15)
|
|
5963
5963
|
var(--jkl-unit-02);
|
|
5964
|
+
--jkl-tab-padding-inline-end: var(--jkl-unit-50);
|
|
5964
5965
|
--jkl-tab-font-size: var(--jkl-body-font-size);
|
|
5965
5966
|
--jkl-tab-line-height: var(--jkl-body-line-height);
|
|
5966
5967
|
--jkl-tab-font-weight: var(--jkl-body-font-weight);
|
|
@@ -5971,6 +5972,7 @@ html:not([data-mousenavigation]) .jkl-table-pagination__previous:focus, html:not
|
|
|
5971
5972
|
[data-density=comfortable] {
|
|
5972
5973
|
--jkl-tab-padding: var(--jkl-unit-10) var(--jkl-unit-30)
|
|
5973
5974
|
var(--jkl-unit-15) var(--jkl-unit-02);
|
|
5975
|
+
--jkl-tab-padding-inline-end: var(--jkl-unit-30);
|
|
5974
5976
|
}
|
|
5975
5977
|
}
|
|
5976
5978
|
|
|
@@ -5981,6 +5983,7 @@ html:not([data-mousenavigation]) .jkl-table-pagination__previous:focus, html:not
|
|
|
5981
5983
|
--jkl-tab-font-weight: var(--jkl-small-font-weight);
|
|
5982
5984
|
--jkl-tab-padding: var(--jkl-unit-02) var(--jkl-unit-40) var(--jkl-unit-05)
|
|
5983
5985
|
0;
|
|
5986
|
+
--jkl-tab-padding-inline-end: var(--jkl-unit-40);
|
|
5984
5987
|
}
|
|
5985
5988
|
|
|
5986
5989
|
.jkl-tabs {
|
|
@@ -6003,20 +6006,6 @@ html:not([data-mousenavigation]) .jkl-table-pagination__previous:focus, html:not
|
|
|
6003
6006
|
width: fit-content;
|
|
6004
6007
|
max-width: 100%;
|
|
6005
6008
|
}
|
|
6006
|
-
.jkl-tablist__indicator {
|
|
6007
|
-
position: absolute;
|
|
6008
|
-
height: 2px;
|
|
6009
|
-
background-color: var(--indicator-color);
|
|
6010
|
-
transition-timing-function: ease;
|
|
6011
|
-
transition-duration: 400ms;
|
|
6012
|
-
transition-property: left, width;
|
|
6013
|
-
will-change: left, width;
|
|
6014
|
-
}
|
|
6015
|
-
@media screen and (forced-colors: active) {
|
|
6016
|
-
.jkl-tablist__indicator {
|
|
6017
|
-
background-color: Highlight;
|
|
6018
|
-
}
|
|
6019
|
-
}
|
|
6020
6009
|
@media screen and (forced-colors: active) {
|
|
6021
6010
|
.jkl-tablist {
|
|
6022
6011
|
border-color: GrayText;
|
|
@@ -6025,6 +6014,20 @@ html:not([data-mousenavigation]) .jkl-table-pagination__previous:focus, html:not
|
|
|
6025
6014
|
.jkl-tablist::-webkit-scrollbar {
|
|
6026
6015
|
display: none;
|
|
6027
6016
|
}
|
|
6017
|
+
@supports (position-anchor: --active-tab) {
|
|
6018
|
+
.jkl-tablist::after {
|
|
6019
|
+
content: "";
|
|
6020
|
+
position: absolute;
|
|
6021
|
+
position-anchor: --active-tab;
|
|
6022
|
+
height: 2px;
|
|
6023
|
+
width: calc(anchor-size(inline) - var(--jkl-tab-padding-inline-end));
|
|
6024
|
+
inset-block-start: calc(anchor(end) - 2px);
|
|
6025
|
+
inset-inline-start: calc(anchor(--active-tab start));
|
|
6026
|
+
background-color: var(--indicator-color);
|
|
6027
|
+
transition-timing-function: ease;
|
|
6028
|
+
transition-duration: 400ms;
|
|
6029
|
+
}
|
|
6030
|
+
}
|
|
6028
6031
|
|
|
6029
6032
|
.jkl-tab {
|
|
6030
6033
|
font-size: var(--jkl-tab-font-size);
|
|
@@ -6069,10 +6072,27 @@ html:not([data-mousenavigation]) .jkl-table-pagination__previous:focus, html:not
|
|
|
6069
6072
|
outline-offset: -2px;
|
|
6070
6073
|
}
|
|
6071
6074
|
.jkl-tab[aria-selected=true] {
|
|
6075
|
+
anchor-name: --active-tab;
|
|
6072
6076
|
--jkl-icon-weight: 500;
|
|
6073
6077
|
font-weight: 700;
|
|
6074
6078
|
letter-spacing: -0.014em;
|
|
6075
6079
|
}
|
|
6080
|
+
@supports not (position-anchor: --active-tab) {
|
|
6081
|
+
.jkl-tab[aria-selected=true] {
|
|
6082
|
+
position: relative;
|
|
6083
|
+
}
|
|
6084
|
+
.jkl-tab[aria-selected=true]::after {
|
|
6085
|
+
content: "";
|
|
6086
|
+
position: absolute;
|
|
6087
|
+
height: 2px;
|
|
6088
|
+
width: calc(100% - var(--jkl-tab-padding-inline-end));
|
|
6089
|
+
inset-block-end: 0;
|
|
6090
|
+
inset-inline-start: 0;
|
|
6091
|
+
background-color: var(--indicator-color);
|
|
6092
|
+
transition-timing-function: ease;
|
|
6093
|
+
transition-duration: 400ms;
|
|
6094
|
+
}
|
|
6095
|
+
}
|
|
6076
6096
|
|
|
6077
6097
|
:root,
|
|
6078
6098
|
[data-layout-density=comfortable],
|
|
@@ -6257,14 +6277,14 @@ html:not([data-mousenavigation]) .jkl-table-pagination__previous:focus, html:not
|
|
|
6257
6277
|
|
|
6258
6278
|
.jkl-toast[data-animation=entering],
|
|
6259
6279
|
.jkl-toast[data-animation=queued] {
|
|
6260
|
-
animation: jkl-entering-
|
|
6280
|
+
animation: jkl-entering-u38vjvl 200ms ease-out forwards;
|
|
6261
6281
|
}
|
|
6262
6282
|
|
|
6263
6283
|
.jkl-toast[data-animation=exiting] {
|
|
6264
|
-
animation: jkl-exiting-
|
|
6284
|
+
animation: jkl-exiting-u38vjw4 150ms ease-in forwards;
|
|
6265
6285
|
}
|
|
6266
6286
|
|
|
6267
|
-
@keyframes jkl-entering-
|
|
6287
|
+
@keyframes jkl-entering-u38vjvl {
|
|
6268
6288
|
from {
|
|
6269
6289
|
opacity: 0;
|
|
6270
6290
|
transform: translate3d(0, 50%, 0);
|
|
@@ -6274,7 +6294,7 @@ html:not([data-mousenavigation]) .jkl-table-pagination__previous:focus, html:not
|
|
|
6274
6294
|
transform: translate3d(0, 0, 0);
|
|
6275
6295
|
}
|
|
6276
6296
|
}
|
|
6277
|
-
@keyframes jkl-exiting-
|
|
6297
|
+
@keyframes jkl-exiting-u38vjw4 {
|
|
6278
6298
|
from {
|
|
6279
6299
|
opacity: 1;
|
|
6280
6300
|
transform: translate3d(0, 0, 0);
|