@fremtind/jokul 0.36.3 → 0.36.4
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/package.json +2 -2
- package/styles/components/button/button.css +2 -2
- 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/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/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/select/select.css +37 -30
- package/styles/components/select/select.min.css +1 -1
- package/styles/components/select/select.scss +29 -29
- 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 +74 -67
- package/styles/styles.min.css +1 -1
|
@@ -4,40 +4,40 @@
|
|
|
4
4
|
@use "../../core/jkl";
|
|
5
5
|
@use "../../core/jkl/colors";
|
|
6
6
|
|
|
7
|
-
.
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
7
|
+
@include jkl.compact-density-variables {
|
|
8
|
+
--jkl-select-input-height: #{jkl.rem(32px)};
|
|
9
|
+
--jkl-select-arrow-right: #{jkl.rem(4px)};
|
|
10
|
+
--jkl-select-button-padding: #{jkl.$spacing-4} #{jkl.$spacing-32} #{jkl.$spacing-4}
|
|
11
|
+
#{jkl.$spacing-8};
|
|
12
|
+
--jkl-select-search-input-padding: #{jkl.$spacing-4} #{jkl.$spacing-8};
|
|
13
|
+
--jkl-select-native-padding: #{jkl.$spacing-4} #{jkl.$spacing-24} #{jkl.$spacing-4}
|
|
14
|
+
#{jkl.$spacing-4};
|
|
15
|
+
--jkl-select-option-padding: #{jkl.$spacing-4} #{jkl.$spacing-8};
|
|
16
|
+
|
|
17
|
+
@include jkl.declare-font-variables("jkl-select", "small");
|
|
18
|
+
}
|
|
12
19
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
20
|
+
@include jkl.comfortable-density-variables {
|
|
21
|
+
--jkl-select-input-height: #{jkl.rem(48px)};
|
|
22
|
+
--jkl-select-arrow-right: #{jkl.$spacing-8};
|
|
23
|
+
--jkl-select-button-padding: #{jkl.$spacing-8} #{jkl.rem(36px)} #{jkl.$spacing-8}
|
|
24
|
+
#{jkl.$spacing-12};
|
|
25
|
+
--jkl-select-search-input-padding: var(--jkl-select-button-padding);
|
|
26
|
+
--jkl-select-native-padding: 0 #{jkl.$spacing-40} 0 #{jkl.$spacing-8};
|
|
27
|
+
--jkl-select-option-padding: #{jkl.$spacing-8} #{jkl.$spacing-12};
|
|
21
28
|
|
|
22
|
-
|
|
29
|
+
@include jkl.declare-font-variables("jkl-select", "body");
|
|
23
30
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
}
|
|
31
|
+
@include jkl.small-device {
|
|
32
|
+
--jkl-select-input-height: #{jkl.rem(44px)};
|
|
27
33
|
}
|
|
34
|
+
}
|
|
28
35
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
--jkl-select-search-input-padding: #{jkl.$spacing-4} #{jkl.$spacing-8};
|
|
35
|
-
--jkl-select-native-padding: #{jkl.$spacing-4} #{jkl.$spacing-24} #{jkl.$spacing-4}
|
|
36
|
-
#{jkl.$spacing-4};
|
|
37
|
-
--jkl-select-option-padding: #{jkl.$spacing-4} #{jkl.$spacing-8};
|
|
38
|
-
|
|
39
|
-
@include jkl.declare-font-variables("jkl-select", "small");
|
|
40
|
-
}
|
|
36
|
+
.jkl-select {
|
|
37
|
+
display: block;
|
|
38
|
+
position: relative;
|
|
39
|
+
|
|
40
|
+
@include jkl.reset-outline;
|
|
41
41
|
|
|
42
42
|
& *:focus {
|
|
43
43
|
outline: none;
|
|
@@ -137,7 +137,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-system-message
|
|
|
137
137
|
margin-bottom: 0;
|
|
138
138
|
}
|
|
139
139
|
.jkl-system-message--dismissed {
|
|
140
|
-
animation: jkl-dismiss-
|
|
140
|
+
animation: jkl-dismiss-u2j3n2y 400ms ease-in forwards;
|
|
141
141
|
transition: visibility 0ms 400ms;
|
|
142
142
|
visibility: hidden;
|
|
143
143
|
}
|
|
@@ -169,7 +169,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-system-message
|
|
|
169
169
|
}
|
|
170
170
|
}
|
|
171
171
|
|
|
172
|
-
@keyframes jkl-dismiss-
|
|
172
|
+
@keyframes jkl-dismiss-u2j3n2y {
|
|
173
173
|
from {
|
|
174
174
|
opacity: 1;
|
|
175
175
|
transform: translate3d(0, 0, 0);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-system-message-icon-height:1.5rem;--jkl-system-message-icon-padding:0.1875rem 0 0 0;--jkl-system-message-content-padding:1.5rem;--jkl-system-message-dismiss-button-size:2.75rem;--jkl-system-message-dismiss-button-margin:-0.40625rem -1.125rem -0.40625rem auto;--jkl-system-message-message-margin:0 1rem;--jkl-system-message-message-font-size:var(--jkl-body-font-size);--jkl-system-message-message-line-height:var(--jkl-body-line-height);--jkl-system-message-message-font-weight:var(--jkl-body-font-weight)}[data-density=compact],[data-layout-density=compact]{--jkl-system-message-icon-height:1.25rem;--jkl-system-message-icon-padding:0.0625rem 0 0 0;--jkl-system-message-content-padding:0.5rem;--jkl-system-message-dismiss-button-size:2rem;--jkl-system-message-dismiss-button-margin:-0.1875rem -0.375rem -0.28125rem auto;--jkl-system-message-message-margin:0 0.75rem;--jkl-system-message-message-font-size:var(--jkl-small-font-size);--jkl-system-message-message-line-height:var(--jkl-small-line-height);--jkl-system-message-message-font-weight:var(--jkl-small-font-weight)}.jkl-system-message{--background-color:var(--jkl-color-background-alert-neutral);--text-color:var(--jkl-color-text-on-alert);background-color:var(--background-color);box-sizing:border-box;color:var(--text-color);width:100%}.jkl-system-message__content{align-items:flex-start;box-sizing:border-box;display:flex;margin:0 auto;padding:var(--jkl-system-message-content-padding);width:100%}.jkl-system-message__icon{align-self:flex-start;flex-shrink:0;height:var(--jkl-system-message-icon-height);margin:var(--jkl-system-message-icon-padding)}@media screen and (forced-colors:active){.jkl-system-message__icon,.jkl-system-message__icon path,.jkl-system-message__icon svg{stroke:CanvasText}}.jkl-system-message__message{font-size:var(--jkl-system-message-message-font-size);font-weight:var(--jkl-system-message-message-font-weight);line-height:var(--jkl-system-message-message-line-height);margin:var(--jkl-system-message-message-margin)}.jkl-system-message__dismiss-button{align-items:center;align-self:flex-start;background-color:transparent;color:inherit;cursor:pointer;display:flex;flex-shrink:0;height:var(--jkl-system-message-dismiss-button-size);justify-content:center;margin:var(--jkl-system-message-dismiss-button-margin);padding:0;width:var(--jkl-system-message-dismiss-button-size)}@media screen and (forced-colors:active){.jkl-system-message__dismiss-button,.jkl-system-message__dismiss-button path,.jkl-system-message__dismiss-button svg{stroke:ButtonText}.jkl-system-message__dismiss-button{background-color:ButtonFace}}.jkl-system-message__dismiss-button{border-style:none;outline:0;outline-style:none}.jkl-system-message__dismiss-button:active,.jkl-system-message__dismiss-button:focus,.jkl-system-message__dismiss-button:hover{outline:0;outline-style:none}@media screen and (forced-colors:active){.jkl-system-message__dismiss-button{border-style:revert;outline:revert;outline-style:revert}.jkl-system-message__dismiss-button:active,.jkl-system-message__dismiss-button:focus,.jkl-system-message__dismiss-button:hover{outline:revert;outline-style:revert}}.jkl-system-message__dismiss-button:hover{color:#636060}@media screen and (forced-colors:active){.jkl-system-message__dismiss-button:hover{stroke:ButtonText}.jkl-system-message__dismiss-button:hover path,.jkl-system-message__dismiss-button:hover svg{stroke:ButtonText}}html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-system-message__dismiss-button:focus{outline:2px solid #1b1917}@media screen and (forced-colors:active){html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-system-message__dismiss-button:focus{outline:2px solid ButtonText;outline-offset:2px}}.jkl-system-message__message,.jkl-system-message__message:last-child{margin-bottom:0}.jkl-system-message--dismissed{animation:jkl-dismiss-
|
|
1
|
+
:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-system-message-icon-height:1.5rem;--jkl-system-message-icon-padding:0.1875rem 0 0 0;--jkl-system-message-content-padding:1.5rem;--jkl-system-message-dismiss-button-size:2.75rem;--jkl-system-message-dismiss-button-margin:-0.40625rem -1.125rem -0.40625rem auto;--jkl-system-message-message-margin:0 1rem;--jkl-system-message-message-font-size:var(--jkl-body-font-size);--jkl-system-message-message-line-height:var(--jkl-body-line-height);--jkl-system-message-message-font-weight:var(--jkl-body-font-weight)}[data-density=compact],[data-layout-density=compact]{--jkl-system-message-icon-height:1.25rem;--jkl-system-message-icon-padding:0.0625rem 0 0 0;--jkl-system-message-content-padding:0.5rem;--jkl-system-message-dismiss-button-size:2rem;--jkl-system-message-dismiss-button-margin:-0.1875rem -0.375rem -0.28125rem auto;--jkl-system-message-message-margin:0 0.75rem;--jkl-system-message-message-font-size:var(--jkl-small-font-size);--jkl-system-message-message-line-height:var(--jkl-small-line-height);--jkl-system-message-message-font-weight:var(--jkl-small-font-weight)}.jkl-system-message{--background-color:var(--jkl-color-background-alert-neutral);--text-color:var(--jkl-color-text-on-alert);background-color:var(--background-color);box-sizing:border-box;color:var(--text-color);width:100%}.jkl-system-message__content{align-items:flex-start;box-sizing:border-box;display:flex;margin:0 auto;padding:var(--jkl-system-message-content-padding);width:100%}.jkl-system-message__icon{align-self:flex-start;flex-shrink:0;height:var(--jkl-system-message-icon-height);margin:var(--jkl-system-message-icon-padding)}@media screen and (forced-colors:active){.jkl-system-message__icon,.jkl-system-message__icon path,.jkl-system-message__icon svg{stroke:CanvasText}}.jkl-system-message__message{font-size:var(--jkl-system-message-message-font-size);font-weight:var(--jkl-system-message-message-font-weight);line-height:var(--jkl-system-message-message-line-height);margin:var(--jkl-system-message-message-margin)}.jkl-system-message__dismiss-button{align-items:center;align-self:flex-start;background-color:transparent;color:inherit;cursor:pointer;display:flex;flex-shrink:0;height:var(--jkl-system-message-dismiss-button-size);justify-content:center;margin:var(--jkl-system-message-dismiss-button-margin);padding:0;width:var(--jkl-system-message-dismiss-button-size)}@media screen and (forced-colors:active){.jkl-system-message__dismiss-button,.jkl-system-message__dismiss-button path,.jkl-system-message__dismiss-button svg{stroke:ButtonText}.jkl-system-message__dismiss-button{background-color:ButtonFace}}.jkl-system-message__dismiss-button{border-style:none;outline:0;outline-style:none}.jkl-system-message__dismiss-button:active,.jkl-system-message__dismiss-button:focus,.jkl-system-message__dismiss-button:hover{outline:0;outline-style:none}@media screen and (forced-colors:active){.jkl-system-message__dismiss-button{border-style:revert;outline:revert;outline-style:revert}.jkl-system-message__dismiss-button:active,.jkl-system-message__dismiss-button:focus,.jkl-system-message__dismiss-button:hover{outline:revert;outline-style:revert}}.jkl-system-message__dismiss-button:hover{color:#636060}@media screen and (forced-colors:active){.jkl-system-message__dismiss-button:hover{stroke:ButtonText}.jkl-system-message__dismiss-button:hover path,.jkl-system-message__dismiss-button:hover svg{stroke:ButtonText}}html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-system-message__dismiss-button:focus{outline:2px solid #1b1917}@media screen and (forced-colors:active){html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-system-message__dismiss-button:focus{outline:2px solid ButtonText;outline-offset:2px}}.jkl-system-message__message,.jkl-system-message__message:last-child{margin-bottom:0}.jkl-system-message--dismissed{animation:jkl-dismiss-u2j3n2y .4s ease-in forwards;transition:visibility 0s .4s;visibility:hidden}.jkl-system-message--info{--background-color:var(--jkl-color-background-alert-info)}.jkl-system-message--warning{--background-color:var(--jkl-color-background-alert-warning)}.jkl-system-message--error{--background-color:var(--jkl-color-background-alert-error)}.jkl-system-message--success{--background-color:var(--jkl-color-background-alert-success)}@media screen and (forced-colors:active){.jkl-system-message{border:2px solid CanvasText}.jkl-system-message--info{border-style:dotted}.jkl-system-message--warning{border-style:dashed}.jkl-system-message--error{border-style:double;border-width:4px}}@keyframes jkl-dismiss-u2j3n2y{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(0,-50%,0)}}
|
|
@@ -195,14 +195,14 @@
|
|
|
195
195
|
|
|
196
196
|
.jkl-toast[data-animation=entering],
|
|
197
197
|
.jkl-toast[data-animation=queued] {
|
|
198
|
-
animation: jkl-entering-
|
|
198
|
+
animation: jkl-entering-un1p2ae 200ms ease-out forwards;
|
|
199
199
|
}
|
|
200
200
|
|
|
201
201
|
.jkl-toast[data-animation=exiting] {
|
|
202
|
-
animation: jkl-exiting-
|
|
202
|
+
animation: jkl-exiting-un1p2an 150ms ease-in forwards;
|
|
203
203
|
}
|
|
204
204
|
|
|
205
|
-
@keyframes jkl-entering-
|
|
205
|
+
@keyframes jkl-entering-un1p2ae {
|
|
206
206
|
from {
|
|
207
207
|
opacity: 0;
|
|
208
208
|
transform: translate3d(0, 50%, 0);
|
|
@@ -212,7 +212,7 @@
|
|
|
212
212
|
transform: translate3d(0, 0, 0);
|
|
213
213
|
}
|
|
214
214
|
}
|
|
215
|
-
@keyframes jkl-exiting-
|
|
215
|
+
@keyframes jkl-exiting-un1p2an {
|
|
216
216
|
from {
|
|
217
217
|
opacity: 1;
|
|
218
218
|
transform: translate3d(0, 0, 0);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-toast-padding:1rem}@media (width >= 0) and (max-width:679px){:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-toast-padding:0.75rem}}[data-density=compact],[data-layout-density=compact]{--jkl-toast-padding:0.5rem}.jkl-toast-region{background:transparent;bottom:1.5rem;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:1rem;min-width:18rem;pointer-events:auto}.jkl-toast-region--left{justify-content:flex-start;left:1.5rem}.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;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}}@media (width >= 0) and (max-width:679px){.jkl-toast{grid-template-areas:"progress progress" "icon dismiss" "content content"}}@media (min-width:680px){.jkl-toast{grid-template-areas:"progress progress progress" "icon content dismiss";grid-template-columns:auto 1fr auto}}.jkl-toast__progress{grid-area:progress;margin-bottom:1rem;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:1rem;width:1.5rem}@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 .25rem;--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:1rem}@media (width >= 0) and (max-width:679px){:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-toast-padding:0.75rem}}[data-density=compact],[data-layout-density=compact]{--jkl-toast-padding:0.5rem}.jkl-toast-region{background:transparent;bottom:1.5rem;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:1rem;min-width:18rem;pointer-events:auto}.jkl-toast-region--left{justify-content:flex-start;left:1.5rem}.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;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}}@media (width >= 0) and (max-width:679px){.jkl-toast{grid-template-areas:"progress progress" "icon dismiss" "content content"}}@media (min-width:680px){.jkl-toast{grid-template-areas:"progress progress progress" "icon content dismiss";grid-template-columns:auto 1fr auto}}.jkl-toast__progress{grid-area:progress;margin-bottom:1rem;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:1rem;width:1.5rem}@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 .25rem;--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-un1p2ae .2s ease-out forwards}.jkl-toast[data-animation=exiting]{animation:jkl-exiting-un1p2an .15s ease-in forwards}@keyframes jkl-entering-un1p2ae{0%{opacity:0;transform:translate3d(0,50%,0)}to{opacity:1;transform:translateZ(0)}}@keyframes jkl-exiting-un1p2an{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(0,50%,0)}}
|
package/styles/styles.css
CHANGED
|
@@ -1142,7 +1142,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-text-area__tex
|
|
|
1142
1142
|
--color: var(--jkl-color-text-default);
|
|
1143
1143
|
}
|
|
1144
1144
|
.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-
|
|
1145
|
+
animation: 400ms cubic-bezier(0, 0, 0.3, 1) 250ms jkl-support-icon-entrance-uge7k8j forwards;
|
|
1146
1146
|
}
|
|
1147
1147
|
.jkl-form-support-label--sr-only {
|
|
1148
1148
|
border: 0 !important;
|
|
@@ -1217,7 +1217,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-text-area__tex
|
|
|
1217
1217
|
white-space: nowrap !important; /* 3 */
|
|
1218
1218
|
}
|
|
1219
1219
|
|
|
1220
|
-
@keyframes jkl-support-icon-entrance-
|
|
1220
|
+
@keyframes jkl-support-icon-entrance-uge7k8j {
|
|
1221
1221
|
0% {
|
|
1222
1222
|
margin-right: 0;
|
|
1223
1223
|
opacity: 0;
|
|
@@ -1683,7 +1683,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
1683
1683
|
height: 1rem;
|
|
1684
1684
|
}
|
|
1685
1685
|
html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
1686
|
-
animation: cubic-bezier(0.6, 0.2, 0.35, 1) 250ms jkl-tertiary-flash-
|
|
1686
|
+
animation: cubic-bezier(0.6, 0.2, 0.35, 1) 250ms jkl-tertiary-flash-uge7k9f;
|
|
1687
1687
|
}
|
|
1688
1688
|
:not([data-touchnavigation]) .jkl-button--primary:hover, :not([data-touchnavigation]) .jkl-button--secondary:hover, :not([data-touchnavigation]) .jkl-button--tertiary:hover {
|
|
1689
1689
|
scale: 1.05;
|
|
@@ -1727,7 +1727,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1727
1727
|
--background-color: var(--jkl-color-background-interactive-hover);
|
|
1728
1728
|
}
|
|
1729
1729
|
|
|
1730
|
-
@keyframes jkl-tertiary-flash-
|
|
1730
|
+
@keyframes jkl-tertiary-flash-uge7k9f {
|
|
1731
1731
|
0% {
|
|
1732
1732
|
opacity: 0.5;
|
|
1733
1733
|
scale: 1;
|
|
@@ -1752,15 +1752,15 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1752
1752
|
animation: 2500ms linear infinite;
|
|
1753
1753
|
}
|
|
1754
1754
|
.jkl-loader__dot--left {
|
|
1755
|
-
animation-name: jkl-loader-left-spin-
|
|
1755
|
+
animation-name: jkl-loader-left-spin-uge7ka1;
|
|
1756
1756
|
margin-right: 1.71em;
|
|
1757
1757
|
}
|
|
1758
1758
|
.jkl-loader__dot--middle {
|
|
1759
|
-
animation-name: jkl-loader-middle-spin-
|
|
1759
|
+
animation-name: jkl-loader-middle-spin-uge7kaw;
|
|
1760
1760
|
margin-right: 1.9em;
|
|
1761
1761
|
}
|
|
1762
1762
|
.jkl-loader__dot--right {
|
|
1763
|
-
animation-name: jkl-loader-right-spin-
|
|
1763
|
+
animation-name: jkl-loader-right-spin-uge7kb1;
|
|
1764
1764
|
}
|
|
1765
1765
|
@media screen and (forced-colors: active) {
|
|
1766
1766
|
.jkl-loader__dot {
|
|
@@ -1788,7 +1788,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1788
1788
|
margin-right: 0.3em;
|
|
1789
1789
|
}
|
|
1790
1790
|
|
|
1791
|
-
@keyframes jkl-loader-left-spin-
|
|
1791
|
+
@keyframes jkl-loader-left-spin-uge7ka1 {
|
|
1792
1792
|
0% {
|
|
1793
1793
|
transform: rotate(0) scale(0);
|
|
1794
1794
|
}
|
|
@@ -1802,7 +1802,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1802
1802
|
transform: rotate(180deg) scale(0);
|
|
1803
1803
|
}
|
|
1804
1804
|
}
|
|
1805
|
-
@keyframes jkl-loader-middle-spin-
|
|
1805
|
+
@keyframes jkl-loader-middle-spin-uge7kaw {
|
|
1806
1806
|
0% {
|
|
1807
1807
|
transform: rotate(20deg) scale(0);
|
|
1808
1808
|
}
|
|
@@ -1819,7 +1819,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1819
1819
|
transform: rotate(200deg) scale(0);
|
|
1820
1820
|
}
|
|
1821
1821
|
}
|
|
1822
|
-
@keyframes jkl-loader-right-spin-
|
|
1822
|
+
@keyframes jkl-loader-right-spin-uge7kb1 {
|
|
1823
1823
|
0% {
|
|
1824
1824
|
transform: rotate(40deg) scale(0);
|
|
1825
1825
|
}
|
|
@@ -1867,7 +1867,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1867
1867
|
bottom: 0;
|
|
1868
1868
|
width: 12.5rem;
|
|
1869
1869
|
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-
|
|
1870
|
+
animation: var(--jkl-skeleton-sweep-duration) ease infinite jkl-sweep-uge7kbe;
|
|
1871
1871
|
}
|
|
1872
1872
|
@media (width >= 0) and (max-width: 679px) {
|
|
1873
1873
|
.jkl-skeleton-animation {
|
|
@@ -1898,7 +1898,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1898
1898
|
@media screen and (forced-colors: active) {
|
|
1899
1899
|
.jkl-skeleton-element {
|
|
1900
1900
|
border: 1px solid CanvasText;
|
|
1901
|
-
animation: 2s ease infinite jkl-blink-
|
|
1901
|
+
animation: 2s ease infinite jkl-blink-uge7kbf;
|
|
1902
1902
|
}
|
|
1903
1903
|
}
|
|
1904
1904
|
|
|
@@ -1954,11 +1954,11 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1954
1954
|
}
|
|
1955
1955
|
@media screen and (forced-colors: active) {
|
|
1956
1956
|
.jkl-skeleton-table {
|
|
1957
|
-
animation: 2s ease-in-out infinite jkl-blink-
|
|
1957
|
+
animation: 2s ease-in-out infinite jkl-blink-uge7kbf;
|
|
1958
1958
|
}
|
|
1959
1959
|
}
|
|
1960
1960
|
|
|
1961
|
-
@keyframes jkl-sweep-
|
|
1961
|
+
@keyframes jkl-sweep-uge7kbe {
|
|
1962
1962
|
0% {
|
|
1963
1963
|
transform: translateX(calc(0vw - 200px));
|
|
1964
1964
|
}
|
|
@@ -1966,7 +1966,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1966
1966
|
transform: translateX(calc(100vw + 400px));
|
|
1967
1967
|
}
|
|
1968
1968
|
}
|
|
1969
|
-
@keyframes jkl-blink-
|
|
1969
|
+
@keyframes jkl-blink-uge7kbf {
|
|
1970
1970
|
0% {
|
|
1971
1971
|
opacity: 1;
|
|
1972
1972
|
}
|
|
@@ -2437,7 +2437,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2437
2437
|
--jkl-checkbox-line-height: 1.5rem;
|
|
2438
2438
|
}
|
|
2439
2439
|
|
|
2440
|
-
@keyframes jkl-checkbox-checked-
|
|
2440
|
+
@keyframes jkl-checkbox-checked-uge7kc4 {
|
|
2441
2441
|
0% {
|
|
2442
2442
|
width: 0;
|
|
2443
2443
|
height: 0;
|
|
@@ -2451,7 +2451,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2451
2451
|
height: 58%;
|
|
2452
2452
|
}
|
|
2453
2453
|
}
|
|
2454
|
-
@keyframes jkl-checkbox-indeterminate-
|
|
2454
|
+
@keyframes jkl-checkbox-indeterminate-uge7kd0 {
|
|
2455
2455
|
0% {
|
|
2456
2456
|
width: 0;
|
|
2457
2457
|
}
|
|
@@ -2479,11 +2479,11 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2479
2479
|
top: -6px;
|
|
2480
2480
|
}
|
|
2481
2481
|
.jkl-checkbox__input:checked + .jkl-checkbox__label .jkl-checkbox__check-mark::after {
|
|
2482
|
-
animation: jkl-checkbox-checked-
|
|
2482
|
+
animation: jkl-checkbox-checked-uge7kc4 150ms ease-in-out forwards;
|
|
2483
2483
|
opacity: 1;
|
|
2484
2484
|
}
|
|
2485
2485
|
.jkl-checkbox__input:indeterminate:not(:checked) + .jkl-checkbox__label .jkl-checkbox__indeterminate-mark::after {
|
|
2486
|
-
animation: jkl-checkbox-indeterminate-
|
|
2486
|
+
animation: jkl-checkbox-indeterminate-uge7kd0 150ms ease-in-out forwards;
|
|
2487
2487
|
opacity: 1;
|
|
2488
2488
|
}
|
|
2489
2489
|
.jkl-checkbox__input:focus-visible + .jkl-checkbox__label {
|
|
@@ -3907,7 +3907,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-calendar-date-
|
|
|
3907
3907
|
padding: 1rem 0 2.5rem 0;
|
|
3908
3908
|
}
|
|
3909
3909
|
|
|
3910
|
-
@keyframes jkl-show-
|
|
3910
|
+
@keyframes jkl-show-uge7kdc {
|
|
3911
3911
|
from {
|
|
3912
3912
|
transform: translate3d(0, 0.5rem, 0);
|
|
3913
3913
|
opacity: 0;
|
|
@@ -3942,7 +3942,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-calendar-date-
|
|
|
3942
3942
|
}
|
|
3943
3943
|
}
|
|
3944
3944
|
.jkl-feedback__fade-in {
|
|
3945
|
-
animation: jkl-show-
|
|
3945
|
+
animation: jkl-show-uge7kdc 0.25s ease-out;
|
|
3946
3946
|
}
|
|
3947
3947
|
.jkl-feedback__buttons {
|
|
3948
3948
|
display: flex;
|
|
@@ -4182,7 +4182,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4182
4182
|
--background-color: var(--jkl-color-background-alert-success);
|
|
4183
4183
|
}
|
|
4184
4184
|
.jkl-message--dismissed {
|
|
4185
|
-
animation: jkl-dismiss-
|
|
4185
|
+
animation: jkl-dismiss-uge7kdi 400ms ease-in-out forwards;
|
|
4186
4186
|
transition: visibility 0ms 400ms;
|
|
4187
4187
|
visibility: hidden;
|
|
4188
4188
|
}
|
|
@@ -4202,7 +4202,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4202
4202
|
}
|
|
4203
4203
|
}
|
|
4204
4204
|
|
|
4205
|
-
@keyframes jkl-dismiss-
|
|
4205
|
+
@keyframes jkl-dismiss-uge7kdi {
|
|
4206
4206
|
from {
|
|
4207
4207
|
opacity: 1;
|
|
4208
4208
|
transform: translate3d(0, 0, 0);
|
|
@@ -4258,7 +4258,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4258
4258
|
--jkl-radio-button-label-font-weight: var(--jkl-small-font-weight);
|
|
4259
4259
|
}
|
|
4260
4260
|
|
|
4261
|
-
@keyframes jkl-dot-in-
|
|
4261
|
+
@keyframes jkl-dot-in-uge7kea {
|
|
4262
4262
|
0% {
|
|
4263
4263
|
transform: scale(0.8);
|
|
4264
4264
|
}
|
|
@@ -4303,7 +4303,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4303
4303
|
}
|
|
4304
4304
|
.jkl-radio-button__input:checked + .jkl-radio-button__label > .jkl-radio-button__dot::after {
|
|
4305
4305
|
--dot-color: var(--jkl-color-border-action);
|
|
4306
|
-
animation: jkl-dot-in-
|
|
4306
|
+
animation: jkl-dot-in-uge7kea 150ms ease;
|
|
4307
4307
|
}
|
|
4308
4308
|
@media screen and (forced-colors: active) {
|
|
4309
4309
|
.jkl-radio-button__input:checked + .jkl-radio-button__label > .jkl-radio-button__dot::after {
|
|
@@ -4453,7 +4453,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4453
4453
|
--background-color: var(--jkl-color-background-container-high);
|
|
4454
4454
|
}
|
|
4455
4455
|
|
|
4456
|
-
@keyframes jkl-dot-in-
|
|
4456
|
+
@keyframes jkl-dot-in-uge7kez {
|
|
4457
4457
|
0% {
|
|
4458
4458
|
transform: scale(0.8);
|
|
4459
4459
|
}
|
|
@@ -4501,7 +4501,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4501
4501
|
}
|
|
4502
4502
|
}
|
|
4503
4503
|
.jkl-radio-panel__input:checked + .jkl-radio-panel__decorator::after {
|
|
4504
|
-
animation: jkl-dot-in-
|
|
4504
|
+
animation: jkl-dot-in-uge7kez 150ms ease;
|
|
4505
4505
|
}
|
|
4506
4506
|
.jkl-radio-panel:has(:checked) {
|
|
4507
4507
|
--radio-dot-color: var(--jkl-color-border-action);
|
|
@@ -4513,7 +4513,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4513
4513
|
--radio-dot-color: var(--jkl-color-text-on-alert);
|
|
4514
4514
|
}
|
|
4515
4515
|
|
|
4516
|
-
@keyframes jkl-checkbox-checked-
|
|
4516
|
+
@keyframes jkl-checkbox-checked-uge7kfq {
|
|
4517
4517
|
0% {
|
|
4518
4518
|
width: 0;
|
|
4519
4519
|
height: 0;
|
|
@@ -4576,7 +4576,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4576
4576
|
}
|
|
4577
4577
|
}
|
|
4578
4578
|
.jkl-checkbox-panel:has(:checked) .jkl-checkbox-panel__decorator::after {
|
|
4579
|
-
animation: jkl-checkbox-checked-
|
|
4579
|
+
animation: jkl-checkbox-checked-uge7kfq 150ms ease-in-out forwards;
|
|
4580
4580
|
opacity: 1;
|
|
4581
4581
|
}
|
|
4582
4582
|
.jkl-checkbox-panel:has([aria-invalid=true]) {
|
|
@@ -5039,6 +5039,43 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
5039
5039
|
width: 2rem;
|
|
5040
5040
|
}
|
|
5041
5041
|
|
|
5042
|
+
[data-layout-density=compact],
|
|
5043
|
+
[data-density=compact] {
|
|
5044
|
+
--jkl-select-input-height: 2rem;
|
|
5045
|
+
--jkl-select-arrow-right: 0.25rem;
|
|
5046
|
+
--jkl-select-button-padding: 0.25rem 2rem 0.25rem
|
|
5047
|
+
0.5rem;
|
|
5048
|
+
--jkl-select-search-input-padding: 0.25rem 0.5rem;
|
|
5049
|
+
--jkl-select-native-padding: 0.25rem 1.5rem 0.25rem
|
|
5050
|
+
0.25rem;
|
|
5051
|
+
--jkl-select-option-padding: 0.25rem 0.5rem;
|
|
5052
|
+
--jkl-select-font-size: var(--jkl-small-font-size);
|
|
5053
|
+
--jkl-select-line-height: var(--jkl-small-line-height);
|
|
5054
|
+
--jkl-select-font-weight: var(--jkl-small-font-weight);
|
|
5055
|
+
}
|
|
5056
|
+
|
|
5057
|
+
:root,
|
|
5058
|
+
[data-layout-density=comfortable],
|
|
5059
|
+
[data-density=comfortable] {
|
|
5060
|
+
--jkl-select-input-height: 3rem;
|
|
5061
|
+
--jkl-select-arrow-right: 0.5rem;
|
|
5062
|
+
--jkl-select-button-padding: 0.5rem 2.25rem 0.5rem
|
|
5063
|
+
0.75rem;
|
|
5064
|
+
--jkl-select-search-input-padding: var(--jkl-select-button-padding);
|
|
5065
|
+
--jkl-select-native-padding: 0 2.5rem 0 0.5rem;
|
|
5066
|
+
--jkl-select-option-padding: 0.5rem 0.75rem;
|
|
5067
|
+
--jkl-select-font-size: var(--jkl-body-font-size);
|
|
5068
|
+
--jkl-select-line-height: var(--jkl-body-line-height);
|
|
5069
|
+
--jkl-select-font-weight: var(--jkl-body-font-weight);
|
|
5070
|
+
}
|
|
5071
|
+
@media (width >= 0) and (max-width: 679px) {
|
|
5072
|
+
:root,
|
|
5073
|
+
[data-layout-density=comfortable],
|
|
5074
|
+
[data-density=comfortable] {
|
|
5075
|
+
--jkl-select-input-height: 2.75rem;
|
|
5076
|
+
}
|
|
5077
|
+
}
|
|
5078
|
+
|
|
5042
5079
|
.jkl-select {
|
|
5043
5080
|
display: block;
|
|
5044
5081
|
position: relative;
|
|
@@ -5066,36 +5103,6 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
5066
5103
|
outline-style: revert;
|
|
5067
5104
|
}
|
|
5068
5105
|
}
|
|
5069
|
-
.jkl .jkl-select, .jkl .jkl-select[data-layout-density=comfortable], .jkl .jkl-select[data-density=comfortable], .jkl [data-layout-density=comfortable] .jkl-select, .jkl [data-density=comfortable] .jkl-select, .jkl[data-layout-density=comfortable] .jkl-select, .jkl[data-density=comfortable] .jkl-select {
|
|
5070
|
-
--jkl-select-input-height: 3rem;
|
|
5071
|
-
--jkl-select-arrow-right: 0.5rem;
|
|
5072
|
-
--jkl-select-button-padding: 0.5rem 2.25rem 0.5rem
|
|
5073
|
-
0.75rem;
|
|
5074
|
-
--jkl-select-search-input-padding: var(--jkl-select-button-padding);
|
|
5075
|
-
--jkl-select-native-padding: 0 2.5rem 0 0.5rem;
|
|
5076
|
-
--jkl-select-option-padding: 0.5rem 0.75rem;
|
|
5077
|
-
--jkl-select-font-size: var(--jkl-body-font-size);
|
|
5078
|
-
--jkl-select-line-height: var(--jkl-body-line-height);
|
|
5079
|
-
--jkl-select-font-weight: var(--jkl-body-font-weight);
|
|
5080
|
-
}
|
|
5081
|
-
@media (width >= 0) and (max-width: 679px) {
|
|
5082
|
-
.jkl .jkl-select, .jkl .jkl-select[data-layout-density=comfortable], .jkl .jkl-select[data-density=comfortable], .jkl [data-layout-density=comfortable] .jkl-select, .jkl [data-density=comfortable] .jkl-select, .jkl[data-layout-density=comfortable] .jkl-select, .jkl[data-density=comfortable] .jkl-select {
|
|
5083
|
-
--jkl-select-input-height: 2.75rem;
|
|
5084
|
-
}
|
|
5085
|
-
}
|
|
5086
|
-
.jkl .jkl-select[data-layout-density=compact], .jkl .jkl-select[data-density=compact], .jkl [data-layout-density=compact] .jkl-select, .jkl [data-density=compact] .jkl-select, .jkl[data-layout-density=compact] .jkl-select, .jkl[data-density=compact] .jkl-select {
|
|
5087
|
-
--jkl-select-input-height: 2rem;
|
|
5088
|
-
--jkl-select-arrow-right: 0.25rem;
|
|
5089
|
-
--jkl-select-button-padding: 0.25rem 2rem 0.25rem
|
|
5090
|
-
0.5rem;
|
|
5091
|
-
--jkl-select-search-input-padding: 0.25rem 0.5rem;
|
|
5092
|
-
--jkl-select-native-padding: 0.25rem 1.5rem 0.25rem
|
|
5093
|
-
0.25rem;
|
|
5094
|
-
--jkl-select-option-padding: 0.25rem 0.5rem;
|
|
5095
|
-
--jkl-select-font-size: var(--jkl-small-font-size);
|
|
5096
|
-
--jkl-select-line-height: var(--jkl-small-line-height);
|
|
5097
|
-
--jkl-select-font-weight: var(--jkl-small-font-weight);
|
|
5098
|
-
}
|
|
5099
5106
|
.jkl-select *:focus {
|
|
5100
5107
|
outline: none;
|
|
5101
5108
|
}
|
|
@@ -5344,11 +5351,11 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
5344
5351
|
}
|
|
5345
5352
|
|
|
5346
5353
|
.jkl-countdown__tracker {
|
|
5347
|
-
animation: jkl-downcount-
|
|
5354
|
+
animation: jkl-downcount-uge7kg8 var(--duration) linear forwards;
|
|
5348
5355
|
animation-play-state: var(--play-state, running);
|
|
5349
5356
|
}
|
|
5350
5357
|
|
|
5351
|
-
@keyframes jkl-downcount-
|
|
5358
|
+
@keyframes jkl-downcount-uge7kg8 {
|
|
5352
5359
|
from {
|
|
5353
5360
|
width: 100%;
|
|
5354
5361
|
}
|
|
@@ -5549,7 +5556,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-system-message
|
|
|
5549
5556
|
margin-bottom: 0;
|
|
5550
5557
|
}
|
|
5551
5558
|
.jkl-system-message--dismissed {
|
|
5552
|
-
animation: jkl-dismiss-
|
|
5559
|
+
animation: jkl-dismiss-uge7kge 400ms ease-in forwards;
|
|
5553
5560
|
transition: visibility 0ms 400ms;
|
|
5554
5561
|
visibility: hidden;
|
|
5555
5562
|
}
|
|
@@ -5581,7 +5588,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-system-message
|
|
|
5581
5588
|
}
|
|
5582
5589
|
}
|
|
5583
5590
|
|
|
5584
|
-
@keyframes jkl-dismiss-
|
|
5591
|
+
@keyframes jkl-dismiss-uge7kge {
|
|
5585
5592
|
from {
|
|
5586
5593
|
opacity: 1;
|
|
5587
5594
|
transform: translate3d(0, 0, 0);
|
|
@@ -6462,14 +6469,14 @@ html:not([data-mousenavigation]) .jkl-table-pagination__previous:focus, html:not
|
|
|
6462
6469
|
|
|
6463
6470
|
.jkl-toast[data-animation=entering],
|
|
6464
6471
|
.jkl-toast[data-animation=queued] {
|
|
6465
|
-
animation: jkl-entering-
|
|
6472
|
+
animation: jkl-entering-uge7khc 200ms ease-out forwards;
|
|
6466
6473
|
}
|
|
6467
6474
|
|
|
6468
6475
|
.jkl-toast[data-animation=exiting] {
|
|
6469
|
-
animation: jkl-exiting-
|
|
6476
|
+
animation: jkl-exiting-uge7khv 150ms ease-in forwards;
|
|
6470
6477
|
}
|
|
6471
6478
|
|
|
6472
|
-
@keyframes jkl-entering-
|
|
6479
|
+
@keyframes jkl-entering-uge7khc {
|
|
6473
6480
|
from {
|
|
6474
6481
|
opacity: 0;
|
|
6475
6482
|
transform: translate3d(0, 50%, 0);
|
|
@@ -6479,7 +6486,7 @@ html:not([data-mousenavigation]) .jkl-table-pagination__previous:focus, html:not
|
|
|
6479
6486
|
transform: translate3d(0, 0, 0);
|
|
6480
6487
|
}
|
|
6481
6488
|
}
|
|
6482
|
-
@keyframes jkl-exiting-
|
|
6489
|
+
@keyframes jkl-exiting-uge7khv {
|
|
6483
6490
|
from {
|
|
6484
6491
|
opacity: 1;
|
|
6485
6492
|
transform: translate3d(0, 0, 0);
|