@fremtind/jokul 4.1.2 → 4.1.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 -3
- package/styles/components/combobox/combobox.css +1 -1
- package/styles/components/combobox/combobox.min.css +1 -1
- package/styles/components/combobox/combobox.scss +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/file-input/file-input.css +9 -9
- 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/loader/loader.css +6 -6
- package/styles/components/loader/loader.min.css +1 -1
- package/styles/components/loader/skeleton-loader.css +3 -3
- 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/segmented-control/segmented-control.css +2 -2
- package/styles/components/segmented-control/segmented-control.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/text-area/text-area.css +17 -16
- package/styles/components/text-area/text-area.min.css +1 -1
- package/styles/components/text-area/text-area.scss +12 -13
- package/styles/components/toast/toast.css +4 -4
- package/styles/components/toast/toast.min.css +1 -1
- package/styles/styles.css +42 -41
- package/styles/styles.min.css +1 -1
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
@layer jokul.components {
|
|
5
5
|
.jkl-text-area-wrapper {
|
|
6
|
+
overflow: hidden;
|
|
6
7
|
--jkl-text-input-padding: var(--jkl-text-input-vertical-padding)
|
|
7
8
|
var(--jkl-text-input-horizontal-padding);
|
|
8
9
|
--jkl-text-input-vertical-padding: var(--jkl-unit-15);
|
|
@@ -91,6 +92,8 @@
|
|
|
91
92
|
}
|
|
92
93
|
}
|
|
93
94
|
.jkl-text-area {
|
|
95
|
+
--text-input-height: var(--jkl-unit-60);
|
|
96
|
+
--progress-bar-height: 0.25rem;
|
|
94
97
|
height: auto;
|
|
95
98
|
width: 100%;
|
|
96
99
|
}
|
|
@@ -100,9 +103,9 @@
|
|
|
100
103
|
resize: none;
|
|
101
104
|
width: 100%;
|
|
102
105
|
padding: var(--jkl-text-input-padding);
|
|
103
|
-
max-height: var(--
|
|
104
|
-
height: var(--
|
|
105
|
-
min-height: var(--
|
|
106
|
+
max-height: var(--text-input-height);
|
|
107
|
+
height: var(--text-input-height);
|
|
108
|
+
min-height: var(--text-input-height);
|
|
106
109
|
transition-timing-function: ease;
|
|
107
110
|
transition-duration: 150ms;
|
|
108
111
|
transition-property: height, min-height, max-height, padding;
|
|
@@ -166,9 +169,7 @@
|
|
|
166
169
|
}
|
|
167
170
|
.jkl-text-area:has(.jkl-text-area__counter) .jkl-text-area-wrapper {
|
|
168
171
|
position: relative;
|
|
169
|
-
|
|
170
|
-
.jkl-text-area:has(.jkl-text-area__counter) .jkl-text-area-wrapper[data-has-content=true], .jkl-text-area:has(.jkl-text-area__counter) .jkl-text-area-wrapper:focus-within {
|
|
171
|
-
padding-bottom: calc(var(--jkl-text-input-height) + 0.25rem);
|
|
172
|
+
padding-bottom: calc(var(--text-input-height) + var(--progress-bar-height));
|
|
172
173
|
}
|
|
173
174
|
.jkl-text-area:has(.jkl-text-area__counter) .jkl-text-area__counter {
|
|
174
175
|
pointer-events: none;
|
|
@@ -187,7 +188,7 @@
|
|
|
187
188
|
}
|
|
188
189
|
.jkl-text-area:has(.jkl-text-area__counter) .jkl-text-area__counter-progress {
|
|
189
190
|
background-color: transparent;
|
|
190
|
-
height:
|
|
191
|
+
height: var(--progress-bar-height);
|
|
191
192
|
width: 100%;
|
|
192
193
|
overflow: hidden;
|
|
193
194
|
}
|
|
@@ -195,7 +196,7 @@
|
|
|
195
196
|
content: "";
|
|
196
197
|
width: var(--progress-width, 100%);
|
|
197
198
|
display: block;
|
|
198
|
-
height:
|
|
199
|
+
height: var(--progress-bar-height);
|
|
199
200
|
background-color: var(--border-color);
|
|
200
201
|
transition-property: width;
|
|
201
202
|
transition-timing-function: ease;
|
|
@@ -204,7 +205,7 @@
|
|
|
204
205
|
.jkl-text-area__text-area--3-rows:focus,
|
|
205
206
|
.jkl-text-area__text-area--3-rows:not(:placeholder-shown),
|
|
206
207
|
.jkl-text-area--start-open .jkl-text-area__text-area--3-rows {
|
|
207
|
-
--height:
|
|
208
|
+
--height: 3lh;
|
|
208
209
|
--vertical-padding: calc(var(--jkl-text-input-vertical-padding) * 2);
|
|
209
210
|
min-height: calc(var(--height) + var(--vertical-padding));
|
|
210
211
|
height: calc(var(--height) + var(--vertical-padding));
|
|
@@ -213,7 +214,7 @@
|
|
|
213
214
|
.jkl-text-area__text-area--4-rows:focus,
|
|
214
215
|
.jkl-text-area__text-area--4-rows:not(:placeholder-shown),
|
|
215
216
|
.jkl-text-area--start-open .jkl-text-area__text-area--4-rows {
|
|
216
|
-
--height:
|
|
217
|
+
--height: 4lh;
|
|
217
218
|
--vertical-padding: calc(var(--jkl-text-input-vertical-padding) * 2);
|
|
218
219
|
min-height: calc(var(--height) + var(--vertical-padding));
|
|
219
220
|
height: calc(var(--height) + var(--vertical-padding));
|
|
@@ -222,7 +223,7 @@
|
|
|
222
223
|
.jkl-text-area__text-area--5-rows:focus,
|
|
223
224
|
.jkl-text-area__text-area--5-rows:not(:placeholder-shown),
|
|
224
225
|
.jkl-text-area--start-open .jkl-text-area__text-area--5-rows {
|
|
225
|
-
--height:
|
|
226
|
+
--height: 5lh;
|
|
226
227
|
--vertical-padding: calc(var(--jkl-text-input-vertical-padding) * 2);
|
|
227
228
|
min-height: calc(var(--height) + var(--vertical-padding));
|
|
228
229
|
height: calc(var(--height) + var(--vertical-padding));
|
|
@@ -231,7 +232,7 @@
|
|
|
231
232
|
.jkl-text-area__text-area--6-rows:focus,
|
|
232
233
|
.jkl-text-area__text-area--6-rows:not(:placeholder-shown),
|
|
233
234
|
.jkl-text-area--start-open .jkl-text-area__text-area--6-rows {
|
|
234
|
-
--height:
|
|
235
|
+
--height: 6lh;
|
|
235
236
|
--vertical-padding: calc(var(--jkl-text-input-vertical-padding) * 2);
|
|
236
237
|
min-height: calc(var(--height) + var(--vertical-padding));
|
|
237
238
|
height: calc(var(--height) + var(--vertical-padding));
|
|
@@ -240,7 +241,7 @@
|
|
|
240
241
|
.jkl-text-area__text-area--7-rows:focus,
|
|
241
242
|
.jkl-text-area__text-area--7-rows:not(:placeholder-shown),
|
|
242
243
|
.jkl-text-area--start-open .jkl-text-area__text-area--7-rows {
|
|
243
|
-
--height:
|
|
244
|
+
--height: 7lh;
|
|
244
245
|
--vertical-padding: calc(var(--jkl-text-input-vertical-padding) * 2);
|
|
245
246
|
min-height: calc(var(--height) + var(--vertical-padding));
|
|
246
247
|
height: calc(var(--height) + var(--vertical-padding));
|
|
@@ -249,7 +250,7 @@
|
|
|
249
250
|
.jkl-text-area__text-area--8-rows:focus,
|
|
250
251
|
.jkl-text-area__text-area--8-rows:not(:placeholder-shown),
|
|
251
252
|
.jkl-text-area--start-open .jkl-text-area__text-area--8-rows {
|
|
252
|
-
--height:
|
|
253
|
+
--height: 8lh;
|
|
253
254
|
--vertical-padding: calc(var(--jkl-text-input-vertical-padding) * 2);
|
|
254
255
|
min-height: calc(var(--height) + var(--vertical-padding));
|
|
255
256
|
height: calc(var(--height) + var(--vertical-padding));
|
|
@@ -258,7 +259,7 @@
|
|
|
258
259
|
.jkl-text-area__text-area--9-rows:focus,
|
|
259
260
|
.jkl-text-area__text-area--9-rows:not(:placeholder-shown),
|
|
260
261
|
.jkl-text-area--start-open .jkl-text-area__text-area--9-rows {
|
|
261
|
-
--height:
|
|
262
|
+
--height: 9lh;
|
|
262
263
|
--vertical-padding: calc(var(--jkl-text-input-vertical-padding) * 2);
|
|
263
264
|
min-height: calc(var(--height) + var(--vertical-padding));
|
|
264
265
|
height: calc(var(--height) + var(--vertical-padding));
|
|
@@ -267,7 +268,7 @@
|
|
|
267
268
|
.jkl-text-area__text-area--10-rows:focus,
|
|
268
269
|
.jkl-text-area__text-area--10-rows:not(:placeholder-shown),
|
|
269
270
|
.jkl-text-area--start-open .jkl-text-area__text-area--10-rows {
|
|
270
|
-
--height:
|
|
271
|
+
--height: 10lh;
|
|
271
272
|
--vertical-padding: calc(var(--jkl-text-input-vertical-padding) * 2);
|
|
272
273
|
min-height: calc(var(--height) + var(--vertical-padding));
|
|
273
274
|
height: calc(var(--height) + var(--vertical-padding));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@layer jokul.components{.jkl-text-area-wrapper{
|
|
1
|
+
@layer jokul.components{.jkl-text-area-wrapper{overflow:hidden;--jkl-text-input-padding:var(--jkl-text-input-vertical-padding) var(--jkl-text-input-horizontal-padding);--jkl-text-input-vertical-padding:var(--jkl-unit-15);--jkl-text-input-horizontal-padding:var(--jkl-unit-15);--jkl-text-input-action-button-size:var(--jkl-unit-60);--jkl-text-input-action-button-icon-size:var(--jkl-unit-30);--jkl-text-input-action-button-padding:var(--jkl-unit-10) 0;--jkl-text-input-action-button-focus-position:var(--jkl-unit-05);--text-color:var(--jkl-color-text-default);--background-color:var(--jkl-color-background-input-base);--border-color:var(--jkl-color-border-input);--placeholder-color:var(--jkl-color-text-subdued);align-items:center;border-radius:var(--jkl-border-radius-s);box-sizing:border-box;display:flex;font-size:var(--jkl-font-size-3);font-weight:400;line-height:var(--jkl-line-height-tight);max-width:100%;position:relative;--jkl-icon-weight:300;background-color:var(--background-color);box-shadow:inset 0 0 0 .0625rem var(--border-color),0 0 0 .0625rem transparent;color:var(--text-color);transition-duration:.15s;transition-property:color,box-shadow,background-color;transition-timing-function:ease}.jkl-text-area-wrapper:focus-within,.jkl-text-area-wrapper:has([data-focused=true]){--background-color:var(--jkl-color-background-input-focus)}.jkl-text-area-wrapper[data-invalid=true]:not(:focus-within):not(:has([data-focused=true])){--background-color:var(--jkl-color-background-alert-error);--text-color:var(--jkl-color-text-on-alert);--placeholder-color:color(from currentColor sRGB r g b/75%)}.jkl-text-area-wrapper:focus-within,.jkl-text-area-wrapper:has([data-focused=true]),.jkl-text-area-wrapper:hover{--border-color:var(--jkl-color-border-input-focus);box-shadow:inset 0 0 0 .0625rem var(--border-color),0 0 0 .0625rem var(--border-color)}@media screen and (forced-colors:active){.jkl-text-area-wrapper:focus-within,.jkl-text-area-wrapper:has([data-focused=true]),.jkl-text-area-wrapper:hover{border:.125rem solid ButtonText}}html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-text-area-wrapper:has(.jkl-text-area__text-area:focus-visible),html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-text-area-wrapper:has(.jkl-text-input__input:focus-visible){outline:3px solid var(--jkl-color-border-action);outline-offset:3px}.jkl-text-area-wrapper>.jkl-icon-button:focus-visible{outline:3px solid var(--jkl-color-border-action);outline-offset:-8px}@media screen and (forced-colors:active){.jkl-text-area-wrapper>.jkl-icon-button:focus-visible{--border-color:ButtonText}}.jkl-text-area-wrapper>.jkl-text-input-action-button{align-items:center;box-sizing:border-box;display:flex;flex-shrink:0;height:var(--jkl-text-input-action-button-size);justify-content:center;padding:var(--jkl-text-input-action-button-padding);width:var(--jkl-text-input-action-button-size);-webkit-margin-start:calc(var(--jkl-text-input-horizontal-padding)*-1);margin-inline-start:calc(var(--jkl-text-input-horizontal-padding)*-1)}.jkl-text-area-wrapper>.jkl-text-input-action-button .jkl-icon-button__icon{height:var(--jkl-text-input-action-button-icon-size);width:var(--jkl-text-input-action-button-icon-size)}.jkl-text-area-wrapper>.jkl-text-input-action-button:hover{color:var(--jkl-color-text-interactive-hover)}@media screen and (forced-colors:active){.jkl-text-area-wrapper>.jkl-text-input-action-button:hover{border:.125rem inset ButtonText}}@media screen and (forced-colors:active){.jkl-text-area-wrapper{border:.125rem inset ButtonText}}.jkl-text-area{--text-input-height:var(--jkl-unit-60);--progress-bar-height:0.25rem;height:auto;width:100%}.jkl-text-area__text-area{-webkit-appearance:none;background:none;box-sizing:border-box;color:inherit;font-size:var(--jkl-font-size-3);font-weight:400;height:var(--text-input-height);line-height:var(--jkl-line-height-tight);max-height:var(--text-input-height);min-height:var(--text-input-height);padding:var(--jkl-text-input-padding);resize:none;scrollbar-color:var(--jkl-color) transparent;transition-duration:.15s;transition-property:height,min-height,max-height,padding;transition-timing-function:ease;width:100%;--jkl-icon-weight:300;border-style:none;outline:0;outline-style:none}.jkl-text-area__text-area:active,.jkl-text-area__text-area:focus,.jkl-text-area__text-area:hover{outline:0;outline-style:none}@media screen and (forced-colors:active){.jkl-text-area__text-area{border-style:revert;outline:revert;outline-style:revert}.jkl-text-area__text-area:active,.jkl-text-area__text-area:focus,.jkl-text-area__text-area:hover{outline:revert;outline-style:revert}}.jkl-text-area__text-area input[type=number]::-webkit-inner-spin-button,.jkl-text-area__text-area input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none}.jkl-text-area__text-area input[type=number]{-moz-appearance:textfield}@media screen and (forced-colors:active){.jkl-text-area__text-area{border:none;outline:none}.jkl-text-area__text-area:focus-visible{outline:none}}.jkl-text-area__text-area::placeholder{color:var(--placeholder-color);opacity:1}.jkl-text-area .jkl-text-area-wrapper{height:auto;max-height:100%}.jkl-text-area--start-open .jkl-text-area-wrapper{max-height:100%}.jkl-text-area--auto-expand .jkl-text-area__text-area{overflow:hidden}.jkl-text-area:has(.jkl-text-area__counter) .jkl-text-area-wrapper{padding-bottom:calc(var(--text-input-height) + var(--progress-bar-height));position:relative}.jkl-text-area:has(.jkl-text-area__counter) .jkl-text-area__counter{bottom:0;left:0;pointer-events:none;position:absolute;right:0}.jkl-text-area:has(.jkl-text-area__counter) .jkl-text-area__counter-count{color:var(--text-color);font-size:var(--jkl-font-size-2);font-weight:400;line-height:var(--jkl-line-height-tight);padding:var(--jkl-text-input-padding);--jkl-icon-weight:300}.jkl-text-area:has(.jkl-text-area__counter) .jkl-text-area__counter-progress{background-color:transparent;height:var(--progress-bar-height);overflow:hidden;width:100%}.jkl-text-area:has(.jkl-text-area__counter) .jkl-text-area__counter-progress:after{background-color:var(--border-color);content:"";display:block;height:var(--progress-bar-height);transition-duration:.4s;transition-property:width;transition-timing-function:ease;width:var(--progress-width,100%)}.jkl-text-area--start-open .jkl-text-area__text-area--3-rows,.jkl-text-area__text-area--3-rows:focus,.jkl-text-area__text-area--3-rows:not(:placeholder-shown){--height:3lh;--vertical-padding:calc(var(--jkl-text-input-vertical-padding)*2);height:calc(var(--height) + var(--vertical-padding));max-height:100%;min-height:calc(var(--height) + var(--vertical-padding))}.jkl-text-area--start-open .jkl-text-area__text-area--4-rows,.jkl-text-area__text-area--4-rows:focus,.jkl-text-area__text-area--4-rows:not(:placeholder-shown){--height:4lh;--vertical-padding:calc(var(--jkl-text-input-vertical-padding)*2);height:calc(var(--height) + var(--vertical-padding));max-height:100%;min-height:calc(var(--height) + var(--vertical-padding))}.jkl-text-area--start-open .jkl-text-area__text-area--5-rows,.jkl-text-area__text-area--5-rows:focus,.jkl-text-area__text-area--5-rows:not(:placeholder-shown){--height:5lh;--vertical-padding:calc(var(--jkl-text-input-vertical-padding)*2);height:calc(var(--height) + var(--vertical-padding));max-height:100%;min-height:calc(var(--height) + var(--vertical-padding))}.jkl-text-area--start-open .jkl-text-area__text-area--6-rows,.jkl-text-area__text-area--6-rows:focus,.jkl-text-area__text-area--6-rows:not(:placeholder-shown){--height:6lh;--vertical-padding:calc(var(--jkl-text-input-vertical-padding)*2);height:calc(var(--height) + var(--vertical-padding));max-height:100%;min-height:calc(var(--height) + var(--vertical-padding))}.jkl-text-area--start-open .jkl-text-area__text-area--7-rows,.jkl-text-area__text-area--7-rows:focus,.jkl-text-area__text-area--7-rows:not(:placeholder-shown){--height:7lh;--vertical-padding:calc(var(--jkl-text-input-vertical-padding)*2);height:calc(var(--height) + var(--vertical-padding));max-height:100%;min-height:calc(var(--height) + var(--vertical-padding))}.jkl-text-area--start-open .jkl-text-area__text-area--8-rows,.jkl-text-area__text-area--8-rows:focus,.jkl-text-area__text-area--8-rows:not(:placeholder-shown){--height:8lh;--vertical-padding:calc(var(--jkl-text-input-vertical-padding)*2);height:calc(var(--height) + var(--vertical-padding));max-height:100%;min-height:calc(var(--height) + var(--vertical-padding))}.jkl-text-area--start-open .jkl-text-area__text-area--9-rows,.jkl-text-area__text-area--9-rows:focus,.jkl-text-area__text-area--9-rows:not(:placeholder-shown){--height:9lh;--vertical-padding:calc(var(--jkl-text-input-vertical-padding)*2);height:calc(var(--height) + var(--vertical-padding));max-height:100%;min-height:calc(var(--height) + var(--vertical-padding))}.jkl-text-area--start-open .jkl-text-area__text-area--10-rows,.jkl-text-area__text-area--10-rows:focus,.jkl-text-area__text-area--10-rows:not(:placeholder-shown){--height:10lh;--vertical-padding:calc(var(--jkl-text-input-vertical-padding)*2);height:calc(var(--height) + var(--vertical-padding));max-height:100%;min-height:calc(var(--height) + var(--vertical-padding))}}
|
|
@@ -5,10 +5,15 @@
|
|
|
5
5
|
|
|
6
6
|
@layer jokul.components {
|
|
7
7
|
.jkl-text-area-wrapper {
|
|
8
|
+
overflow: hidden;
|
|
9
|
+
|
|
8
10
|
@include shared.wrapper_styles;
|
|
9
11
|
}
|
|
10
12
|
|
|
11
13
|
.jkl-text-area {
|
|
14
|
+
--text-input-height: var(--jkl-unit-60);
|
|
15
|
+
--progress-bar-height: #{jkl.rem(4px)};
|
|
16
|
+
|
|
12
17
|
height: auto;
|
|
13
18
|
width: 100%;
|
|
14
19
|
|
|
@@ -18,9 +23,9 @@
|
|
|
18
23
|
resize: none; // Fjern mulighet for resizing av feltet
|
|
19
24
|
width: 100%;
|
|
20
25
|
padding: var(--jkl-text-input-padding);
|
|
21
|
-
max-height: var(--
|
|
22
|
-
height: var(--
|
|
23
|
-
min-height: var(--
|
|
26
|
+
max-height: var(--text-input-height);
|
|
27
|
+
height: var(--text-input-height);
|
|
28
|
+
min-height: var(--text-input-height);
|
|
24
29
|
|
|
25
30
|
@include jkl.motion;
|
|
26
31
|
transition-property: height, min-height, max-height, padding;
|
|
@@ -46,15 +51,9 @@
|
|
|
46
51
|
}
|
|
47
52
|
|
|
48
53
|
&:has(.jkl-text-area__counter) {
|
|
49
|
-
$progress-bar-height: jkl.rem(4px);
|
|
50
|
-
|
|
51
54
|
.jkl-text-area-wrapper {
|
|
52
55
|
position: relative;
|
|
53
|
-
|
|
54
|
-
&[data-has-content="true"],
|
|
55
|
-
&:focus-within {
|
|
56
|
-
padding-bottom: calc(var(--jkl-text-input-height) + #{$progress-bar-height});
|
|
57
|
-
}
|
|
56
|
+
padding-bottom: calc(var(--text-input-height) + var(--progress-bar-height));
|
|
58
57
|
}
|
|
59
58
|
|
|
60
59
|
.jkl-text-area__counter {
|
|
@@ -74,7 +73,7 @@
|
|
|
74
73
|
|
|
75
74
|
&-progress {
|
|
76
75
|
background-color: transparent;
|
|
77
|
-
height:
|
|
76
|
+
height: var(--progress-bar-height);
|
|
78
77
|
width: 100%;
|
|
79
78
|
overflow: hidden;
|
|
80
79
|
|
|
@@ -82,7 +81,7 @@
|
|
|
82
81
|
content: "";
|
|
83
82
|
width: var(--progress-width, 100%);
|
|
84
83
|
display: block;
|
|
85
|
-
height:
|
|
84
|
+
height: var(--progress-bar-height);
|
|
86
85
|
background-color: var(--border-color);
|
|
87
86
|
transition-property: width;
|
|
88
87
|
|
|
@@ -99,7 +98,7 @@
|
|
|
99
98
|
.jkl-text-area__text-area--#{$num}-rows:focus,
|
|
100
99
|
.jkl-text-area__text-area--#{$num}-rows:not(:placeholder-shown),
|
|
101
100
|
.jkl-text-area--start-open .jkl-text-area__text-area--#{$num}-rows {
|
|
102
|
-
--height:
|
|
101
|
+
--height: #{$num}lh;
|
|
103
102
|
--vertical-padding: calc(var(--jkl-text-input-vertical-padding) * 2);
|
|
104
103
|
|
|
105
104
|
// (#2751) Ekspanderende får inline style med height auto,
|
|
@@ -135,12 +135,12 @@
|
|
|
135
135
|
}
|
|
136
136
|
.jkl-toast[data-animation=entering],
|
|
137
137
|
.jkl-toast[data-animation=queued] {
|
|
138
|
-
animation: jkl-entering-
|
|
138
|
+
animation: jkl-entering-u3aotnq 200ms ease-out forwards;
|
|
139
139
|
}
|
|
140
140
|
.jkl-toast[data-animation=exiting] {
|
|
141
|
-
animation: jkl-exiting-
|
|
141
|
+
animation: jkl-exiting-u3aotol 150ms ease-in forwards;
|
|
142
142
|
}
|
|
143
|
-
@keyframes jkl-entering-
|
|
143
|
+
@keyframes jkl-entering-u3aotnq {
|
|
144
144
|
from {
|
|
145
145
|
opacity: 0;
|
|
146
146
|
transform: translate3d(0, 50%, 0);
|
|
@@ -150,7 +150,7 @@
|
|
|
150
150
|
transform: translate3d(0, 0, 0);
|
|
151
151
|
}
|
|
152
152
|
}
|
|
153
|
-
@keyframes jkl-exiting-
|
|
153
|
+
@keyframes jkl-exiting-u3aotol {
|
|
154
154
|
from {
|
|
155
155
|
opacity: 1;
|
|
156
156
|
transform: translate3d(0, 0, 0);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@layer jokul.components{.jkl-toast-region{background:transparent;bottom:var(--jkl-unit-30);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:var(--jkl-unit-20);min-width:18rem;pointer-events:auto}.jkl-toast-region--left{justify-content:flex-start;left:var(--jkl-unit-30)}.jkl-toast{--background-color:var(--jkl-color-background-container-high);--text-color:var(--jkl-color-text-default);--jkl-toast-padding:var(--jkl-unit-20);align-items:start;background-color:var(--background-color);border-radius:4px;box-sizing:border-box;color:var(--text-color);font-size:var(--jkl-font-size-3);font-weight:400;line-height:var(--jkl-line-height-relaxed);overflow:hidden;padding:var(--jkl-toast-padding);position:relative;width:clamp(15em,100%,min(30rem,85vw));--jkl-icon-weight:300}.jkl-toast__progress{--bar-color:var(--text-color);--track-color:transparent;border-radius:0;inset:0 0 auto;position:absolute}@media screen and (forced-colors:active){.jkl-toast__icon,.jkl-toast__icon path,.jkl-toast__icon svg{stroke:CanvasText}}.jkl-toast:not(:has(.jkl-toast__title)) .jkl-toast__icon{-webkit-margin-before:.0625rem;margin-block-start:.0625rem}.jkl-toast:has(.jkl-toast__title) .jkl-toast__icon{-webkit-margin-before:0;margin-block-start:0}.jkl-toast__content{flex-basis:100vw;flex-grow:1}.jkl-toast__action{margin-top:var(--jkl-unit-15)}.jkl-toast__title{font-size:var(--jkl-font-size-4);font-weight:700;line-height:var(--jkl-line-height-tight);--jkl-icon-weight:400}.jkl-toast__dismiss-button{background-color:transparent;color:inherit;cursor:pointer;padding:0}@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-size:44px;content:"";inset:calc((var(--tap-size) - 100%)/2*-1);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
|
+
@layer jokul.components{.jkl-toast-region{background:transparent;bottom:var(--jkl-unit-30);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:var(--jkl-unit-20);min-width:18rem;pointer-events:auto}.jkl-toast-region--left{justify-content:flex-start;left:var(--jkl-unit-30)}.jkl-toast{--background-color:var(--jkl-color-background-container-high);--text-color:var(--jkl-color-text-default);--jkl-toast-padding:var(--jkl-unit-20);align-items:start;background-color:var(--background-color);border-radius:4px;box-sizing:border-box;color:var(--text-color);font-size:var(--jkl-font-size-3);font-weight:400;line-height:var(--jkl-line-height-relaxed);overflow:hidden;padding:var(--jkl-toast-padding);position:relative;width:clamp(15em,100%,min(30rem,85vw));--jkl-icon-weight:300}.jkl-toast__progress{--bar-color:var(--text-color);--track-color:transparent;border-radius:0;inset:0 0 auto;position:absolute}@media screen and (forced-colors:active){.jkl-toast__icon,.jkl-toast__icon path,.jkl-toast__icon svg{stroke:CanvasText}}.jkl-toast:not(:has(.jkl-toast__title)) .jkl-toast__icon{-webkit-margin-before:.0625rem;margin-block-start:.0625rem}.jkl-toast:has(.jkl-toast__title) .jkl-toast__icon{-webkit-margin-before:0;margin-block-start:0}.jkl-toast__content{flex-basis:100vw;flex-grow:1}.jkl-toast__action{margin-top:var(--jkl-unit-15)}.jkl-toast__title{font-size:var(--jkl-font-size-4);font-weight:700;line-height:var(--jkl-line-height-tight);--jkl-icon-weight:400}.jkl-toast__dismiss-button{background-color:transparent;color:inherit;cursor:pointer;padding:0}@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-size:44px;content:"";inset:calc((var(--tap-size) - 100%)/2*-1);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-u3aotnq .2s ease-out forwards}.jkl-toast[data-animation=exiting]{animation:jkl-exiting-u3aotol .15s ease-in forwards}@keyframes jkl-entering-u3aotnq{0%{opacity:0;transform:translate3d(0,50%,0)}to{opacity:1;transform:translateZ(0)}}@keyframes jkl-exiting-u3aotol{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(0,50%,0)}}}
|
package/styles/styles.css
CHANGED
|
@@ -468,7 +468,7 @@
|
|
|
468
468
|
--color: var(--jkl-color-text-default);
|
|
469
469
|
}
|
|
470
470
|
.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 {
|
|
471
|
-
animation: 400ms cubic-bezier(0, 0, 0.3, 1) 250ms jkl-support-icon-entrance-
|
|
471
|
+
animation: 400ms cubic-bezier(0, 0, 0.3, 1) 250ms jkl-support-icon-entrance-uisbn1v forwards;
|
|
472
472
|
}
|
|
473
473
|
.jkl-form-support-label--sr-only {
|
|
474
474
|
border: 0 !important;
|
|
@@ -536,7 +536,7 @@
|
|
|
536
536
|
.jkl-label:has(+ .jkl-input-group-description) {
|
|
537
537
|
margin-block-end: var(--jkl-spacing-4);
|
|
538
538
|
}
|
|
539
|
-
@keyframes jkl-support-icon-entrance-
|
|
539
|
+
@keyframes jkl-support-icon-entrance-uisbn1v {
|
|
540
540
|
0% {
|
|
541
541
|
margin-right: 0;
|
|
542
542
|
opacity: 0;
|
|
@@ -888,22 +888,22 @@
|
|
|
888
888
|
animation: 2500ms linear infinite;
|
|
889
889
|
}
|
|
890
890
|
.jkl-loader__dot--left {
|
|
891
|
-
animation-name: jkl-loader-left-spin-
|
|
891
|
+
animation-name: jkl-loader-left-spin-uisbn2n;
|
|
892
892
|
margin-right: calc(var(--jkl-loader-spacing) * 0.9);
|
|
893
893
|
}
|
|
894
894
|
.jkl-loader__dot--middle {
|
|
895
|
-
animation-name: jkl-loader-middle-spin-
|
|
895
|
+
animation-name: jkl-loader-middle-spin-uisbn3a;
|
|
896
896
|
margin-right: var(--jkl-loader-spacing);
|
|
897
897
|
}
|
|
898
898
|
.jkl-loader__dot--right {
|
|
899
|
-
animation-name: jkl-loader-right-spin-
|
|
899
|
+
animation-name: jkl-loader-right-spin-uisbn3o;
|
|
900
900
|
}
|
|
901
901
|
@media screen and (forced-colors: active) {
|
|
902
902
|
.jkl-loader__dot {
|
|
903
903
|
background-color: CanvasText;
|
|
904
904
|
}
|
|
905
905
|
}
|
|
906
|
-
@keyframes jkl-loader-left-spin-
|
|
906
|
+
@keyframes jkl-loader-left-spin-uisbn2n {
|
|
907
907
|
0% {
|
|
908
908
|
transform: rotate(0) scale(0);
|
|
909
909
|
}
|
|
@@ -917,7 +917,7 @@
|
|
|
917
917
|
transform: rotate(180deg) scale(0);
|
|
918
918
|
}
|
|
919
919
|
}
|
|
920
|
-
@keyframes jkl-loader-middle-spin-
|
|
920
|
+
@keyframes jkl-loader-middle-spin-uisbn3a {
|
|
921
921
|
0% {
|
|
922
922
|
transform: rotate(20deg) scale(0);
|
|
923
923
|
}
|
|
@@ -934,7 +934,7 @@
|
|
|
934
934
|
transform: rotate(200deg) scale(0);
|
|
935
935
|
}
|
|
936
936
|
}
|
|
937
|
-
@keyframes jkl-loader-right-spin-
|
|
937
|
+
@keyframes jkl-loader-right-spin-uisbn3o {
|
|
938
938
|
0% {
|
|
939
939
|
transform: rotate(40deg) scale(0);
|
|
940
940
|
}
|
|
@@ -974,7 +974,7 @@
|
|
|
974
974
|
@media screen and (forced-colors: active) {
|
|
975
975
|
.jkl-skeleton-element {
|
|
976
976
|
border: 1px solid CanvasText;
|
|
977
|
-
animation: 2s ease infinite jkl-blink-
|
|
977
|
+
animation: 2s ease infinite jkl-blink-uisbn4i;
|
|
978
978
|
}
|
|
979
979
|
}
|
|
980
980
|
.jkl-skeleton-input {
|
|
@@ -1022,10 +1022,10 @@
|
|
|
1022
1022
|
}
|
|
1023
1023
|
@media screen and (forced-colors: active) {
|
|
1024
1024
|
.jkl-skeleton-table {
|
|
1025
|
-
animation: 2s ease-in-out infinite jkl-blink-
|
|
1025
|
+
animation: 2s ease-in-out infinite jkl-blink-uisbn4i;
|
|
1026
1026
|
}
|
|
1027
1027
|
}
|
|
1028
|
-
@keyframes jkl-blink-
|
|
1028
|
+
@keyframes jkl-blink-uisbn4i {
|
|
1029
1029
|
0% {
|
|
1030
1030
|
opacity: 1;
|
|
1031
1031
|
}
|
|
@@ -1688,7 +1688,6 @@
|
|
|
1688
1688
|
top: calc(100% - 1px);
|
|
1689
1689
|
overflow-y: auto;
|
|
1690
1690
|
position: absolute;
|
|
1691
|
-
color: var(--jkl-color-text-default);
|
|
1692
1691
|
z-index: 7000;
|
|
1693
1692
|
left: -0.0625rem;
|
|
1694
1693
|
right: -0.0625rem;
|
|
@@ -1708,6 +1707,7 @@
|
|
|
1708
1707
|
display: flex;
|
|
1709
1708
|
align-items: center;
|
|
1710
1709
|
border: 0;
|
|
1710
|
+
color: var(--jkl-color-text-default);
|
|
1711
1711
|
background-color: var(--jkl-color-background-interactive);
|
|
1712
1712
|
transition-property: color, background-color;
|
|
1713
1713
|
cursor: pointer;
|
|
@@ -2012,10 +2012,10 @@
|
|
|
2012
2012
|
}
|
|
2013
2013
|
}
|
|
2014
2014
|
.jkl-countdown__tracker {
|
|
2015
|
-
animation: jkl-downcount-
|
|
2015
|
+
animation: jkl-downcount-uisbn5f var(--duration) linear forwards;
|
|
2016
2016
|
animation-play-state: var(--play-state, running);
|
|
2017
2017
|
}
|
|
2018
|
-
@keyframes jkl-downcount-
|
|
2018
|
+
@keyframes jkl-downcount-uisbn5f {
|
|
2019
2019
|
from {
|
|
2020
2020
|
width: 100%;
|
|
2021
2021
|
}
|
|
@@ -2508,12 +2508,12 @@
|
|
|
2508
2508
|
--jkl-icon-size: 1.2em;
|
|
2509
2509
|
}
|
|
2510
2510
|
.jkl-feedback__fade-in {
|
|
2511
|
-
animation: jkl-show-
|
|
2511
|
+
animation: jkl-show-uisbn5z 0.25s ease-out;
|
|
2512
2512
|
}
|
|
2513
2513
|
.jkl-feedback__buttons {
|
|
2514
2514
|
display: flex;
|
|
2515
2515
|
}
|
|
2516
|
-
@keyframes jkl-show-
|
|
2516
|
+
@keyframes jkl-show-uisbn5z {
|
|
2517
2517
|
from {
|
|
2518
2518
|
transform: translate3d(0, 0.5rem, 0);
|
|
2519
2519
|
opacity: 0;
|
|
@@ -2730,7 +2730,7 @@
|
|
|
2730
2730
|
--background-color: var(--jkl-color-background-alert-success);
|
|
2731
2731
|
}
|
|
2732
2732
|
.jkl-message--dismissed {
|
|
2733
|
-
animation: jkl-dismiss-
|
|
2733
|
+
animation: jkl-dismiss-uisbn6q 400ms ease-in-out forwards;
|
|
2734
2734
|
transition: visibility 0ms 400ms;
|
|
2735
2735
|
visibility: hidden;
|
|
2736
2736
|
}
|
|
@@ -2752,7 +2752,7 @@
|
|
|
2752
2752
|
.jkl-form-error-message {
|
|
2753
2753
|
padding-bottom: calc(var(--jkl-unit-base) * 5);
|
|
2754
2754
|
}
|
|
2755
|
-
@keyframes jkl-dismiss-
|
|
2755
|
+
@keyframes jkl-dismiss-uisbn6q {
|
|
2756
2756
|
from {
|
|
2757
2757
|
opacity: 1;
|
|
2758
2758
|
transform: translate3d(0, 0, 0);
|
|
@@ -2865,6 +2865,7 @@
|
|
|
2865
2865
|
}
|
|
2866
2866
|
@layer jokul.components {
|
|
2867
2867
|
.jkl-text-area-wrapper {
|
|
2868
|
+
overflow: hidden;
|
|
2868
2869
|
--jkl-text-input-padding: var(--jkl-text-input-vertical-padding)
|
|
2869
2870
|
var(--jkl-text-input-horizontal-padding);
|
|
2870
2871
|
--jkl-text-input-vertical-padding: var(--jkl-unit-15);
|
|
@@ -2953,6 +2954,8 @@
|
|
|
2953
2954
|
}
|
|
2954
2955
|
}
|
|
2955
2956
|
.jkl-text-area {
|
|
2957
|
+
--text-input-height: var(--jkl-unit-60);
|
|
2958
|
+
--progress-bar-height: 0.25rem;
|
|
2956
2959
|
height: auto;
|
|
2957
2960
|
width: 100%;
|
|
2958
2961
|
}
|
|
@@ -2962,9 +2965,9 @@
|
|
|
2962
2965
|
resize: none;
|
|
2963
2966
|
width: 100%;
|
|
2964
2967
|
padding: var(--jkl-text-input-padding);
|
|
2965
|
-
max-height: var(--
|
|
2966
|
-
height: var(--
|
|
2967
|
-
min-height: var(--
|
|
2968
|
+
max-height: var(--text-input-height);
|
|
2969
|
+
height: var(--text-input-height);
|
|
2970
|
+
min-height: var(--text-input-height);
|
|
2968
2971
|
transition-timing-function: ease;
|
|
2969
2972
|
transition-duration: 150ms;
|
|
2970
2973
|
transition-property: height, min-height, max-height, padding;
|
|
@@ -3028,9 +3031,7 @@
|
|
|
3028
3031
|
}
|
|
3029
3032
|
.jkl-text-area:has(.jkl-text-area__counter) .jkl-text-area-wrapper {
|
|
3030
3033
|
position: relative;
|
|
3031
|
-
|
|
3032
|
-
.jkl-text-area:has(.jkl-text-area__counter) .jkl-text-area-wrapper[data-has-content=true], .jkl-text-area:has(.jkl-text-area__counter) .jkl-text-area-wrapper:focus-within {
|
|
3033
|
-
padding-bottom: calc(var(--jkl-text-input-height) + 0.25rem);
|
|
3034
|
+
padding-bottom: calc(var(--text-input-height) + var(--progress-bar-height));
|
|
3034
3035
|
}
|
|
3035
3036
|
.jkl-text-area:has(.jkl-text-area__counter) .jkl-text-area__counter {
|
|
3036
3037
|
pointer-events: none;
|
|
@@ -3049,7 +3050,7 @@
|
|
|
3049
3050
|
}
|
|
3050
3051
|
.jkl-text-area:has(.jkl-text-area__counter) .jkl-text-area__counter-progress {
|
|
3051
3052
|
background-color: transparent;
|
|
3052
|
-
height:
|
|
3053
|
+
height: var(--progress-bar-height);
|
|
3053
3054
|
width: 100%;
|
|
3054
3055
|
overflow: hidden;
|
|
3055
3056
|
}
|
|
@@ -3057,7 +3058,7 @@
|
|
|
3057
3058
|
content: "";
|
|
3058
3059
|
width: var(--progress-width, 100%);
|
|
3059
3060
|
display: block;
|
|
3060
|
-
height:
|
|
3061
|
+
height: var(--progress-bar-height);
|
|
3061
3062
|
background-color: var(--border-color);
|
|
3062
3063
|
transition-property: width;
|
|
3063
3064
|
transition-timing-function: ease;
|
|
@@ -3066,7 +3067,7 @@
|
|
|
3066
3067
|
.jkl-text-area__text-area--3-rows:focus,
|
|
3067
3068
|
.jkl-text-area__text-area--3-rows:not(:placeholder-shown),
|
|
3068
3069
|
.jkl-text-area--start-open .jkl-text-area__text-area--3-rows {
|
|
3069
|
-
--height:
|
|
3070
|
+
--height: 3lh;
|
|
3070
3071
|
--vertical-padding: calc(var(--jkl-text-input-vertical-padding) * 2);
|
|
3071
3072
|
min-height: calc(var(--height) + var(--vertical-padding));
|
|
3072
3073
|
height: calc(var(--height) + var(--vertical-padding));
|
|
@@ -3075,7 +3076,7 @@
|
|
|
3075
3076
|
.jkl-text-area__text-area--4-rows:focus,
|
|
3076
3077
|
.jkl-text-area__text-area--4-rows:not(:placeholder-shown),
|
|
3077
3078
|
.jkl-text-area--start-open .jkl-text-area__text-area--4-rows {
|
|
3078
|
-
--height:
|
|
3079
|
+
--height: 4lh;
|
|
3079
3080
|
--vertical-padding: calc(var(--jkl-text-input-vertical-padding) * 2);
|
|
3080
3081
|
min-height: calc(var(--height) + var(--vertical-padding));
|
|
3081
3082
|
height: calc(var(--height) + var(--vertical-padding));
|
|
@@ -3084,7 +3085,7 @@
|
|
|
3084
3085
|
.jkl-text-area__text-area--5-rows:focus,
|
|
3085
3086
|
.jkl-text-area__text-area--5-rows:not(:placeholder-shown),
|
|
3086
3087
|
.jkl-text-area--start-open .jkl-text-area__text-area--5-rows {
|
|
3087
|
-
--height:
|
|
3088
|
+
--height: 5lh;
|
|
3088
3089
|
--vertical-padding: calc(var(--jkl-text-input-vertical-padding) * 2);
|
|
3089
3090
|
min-height: calc(var(--height) + var(--vertical-padding));
|
|
3090
3091
|
height: calc(var(--height) + var(--vertical-padding));
|
|
@@ -3093,7 +3094,7 @@
|
|
|
3093
3094
|
.jkl-text-area__text-area--6-rows:focus,
|
|
3094
3095
|
.jkl-text-area__text-area--6-rows:not(:placeholder-shown),
|
|
3095
3096
|
.jkl-text-area--start-open .jkl-text-area__text-area--6-rows {
|
|
3096
|
-
--height:
|
|
3097
|
+
--height: 6lh;
|
|
3097
3098
|
--vertical-padding: calc(var(--jkl-text-input-vertical-padding) * 2);
|
|
3098
3099
|
min-height: calc(var(--height) + var(--vertical-padding));
|
|
3099
3100
|
height: calc(var(--height) + var(--vertical-padding));
|
|
@@ -3102,7 +3103,7 @@
|
|
|
3102
3103
|
.jkl-text-area__text-area--7-rows:focus,
|
|
3103
3104
|
.jkl-text-area__text-area--7-rows:not(:placeholder-shown),
|
|
3104
3105
|
.jkl-text-area--start-open .jkl-text-area__text-area--7-rows {
|
|
3105
|
-
--height:
|
|
3106
|
+
--height: 7lh;
|
|
3106
3107
|
--vertical-padding: calc(var(--jkl-text-input-vertical-padding) * 2);
|
|
3107
3108
|
min-height: calc(var(--height) + var(--vertical-padding));
|
|
3108
3109
|
height: calc(var(--height) + var(--vertical-padding));
|
|
@@ -3111,7 +3112,7 @@
|
|
|
3111
3112
|
.jkl-text-area__text-area--8-rows:focus,
|
|
3112
3113
|
.jkl-text-area__text-area--8-rows:not(:placeholder-shown),
|
|
3113
3114
|
.jkl-text-area--start-open .jkl-text-area__text-area--8-rows {
|
|
3114
|
-
--height:
|
|
3115
|
+
--height: 8lh;
|
|
3115
3116
|
--vertical-padding: calc(var(--jkl-text-input-vertical-padding) * 2);
|
|
3116
3117
|
min-height: calc(var(--height) + var(--vertical-padding));
|
|
3117
3118
|
height: calc(var(--height) + var(--vertical-padding));
|
|
@@ -3120,7 +3121,7 @@
|
|
|
3120
3121
|
.jkl-text-area__text-area--9-rows:focus,
|
|
3121
3122
|
.jkl-text-area__text-area--9-rows:not(:placeholder-shown),
|
|
3122
3123
|
.jkl-text-area--start-open .jkl-text-area__text-area--9-rows {
|
|
3123
|
-
--height:
|
|
3124
|
+
--height: 9lh;
|
|
3124
3125
|
--vertical-padding: calc(var(--jkl-text-input-vertical-padding) * 2);
|
|
3125
3126
|
min-height: calc(var(--height) + var(--vertical-padding));
|
|
3126
3127
|
height: calc(var(--height) + var(--vertical-padding));
|
|
@@ -3129,7 +3130,7 @@
|
|
|
3129
3130
|
.jkl-text-area__text-area--10-rows:focus,
|
|
3130
3131
|
.jkl-text-area__text-area--10-rows:not(:placeholder-shown),
|
|
3131
3132
|
.jkl-text-area--start-open .jkl-text-area__text-area--10-rows {
|
|
3132
|
-
--height:
|
|
3133
|
+
--height: 10lh;
|
|
3133
3134
|
--vertical-padding: calc(var(--jkl-text-input-vertical-padding) * 2);
|
|
3134
3135
|
min-height: calc(var(--height) + var(--vertical-padding));
|
|
3135
3136
|
height: calc(var(--height) + var(--vertical-padding));
|
|
@@ -4100,7 +4101,7 @@
|
|
|
4100
4101
|
transition-timing-function: ease;
|
|
4101
4102
|
transition-duration: 150ms;
|
|
4102
4103
|
}
|
|
4103
|
-
@keyframes jkl-downcount-
|
|
4104
|
+
@keyframes jkl-downcount-uisbn78 {
|
|
4104
4105
|
from {
|
|
4105
4106
|
width: 100%;
|
|
4106
4107
|
}
|
|
@@ -4610,7 +4611,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-select--beta s
|
|
|
4610
4611
|
margin-bottom: 0;
|
|
4611
4612
|
}
|
|
4612
4613
|
.jkl-system-message--dismissed {
|
|
4613
|
-
animation: jkl-dismiss-
|
|
4614
|
+
animation: jkl-dismiss-uisbn8l 400ms forwards;
|
|
4614
4615
|
transition: block 400ms 400ms;
|
|
4615
4616
|
}
|
|
4616
4617
|
.jkl-system-message--info {
|
|
@@ -4640,7 +4641,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-select--beta s
|
|
|
4640
4641
|
border-width: 4px;
|
|
4641
4642
|
}
|
|
4642
4643
|
}
|
|
4643
|
-
@keyframes jkl-dismiss-
|
|
4644
|
+
@keyframes jkl-dismiss-uisbn8l {
|
|
4644
4645
|
from {
|
|
4645
4646
|
opacity: 1;
|
|
4646
4647
|
transform: translateY(0);
|
|
@@ -5477,12 +5478,12 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-select--beta s
|
|
|
5477
5478
|
}
|
|
5478
5479
|
.jkl-toast[data-animation=entering],
|
|
5479
5480
|
.jkl-toast[data-animation=queued] {
|
|
5480
|
-
animation: jkl-entering-
|
|
5481
|
+
animation: jkl-entering-uisbn95 200ms ease-out forwards;
|
|
5481
5482
|
}
|
|
5482
5483
|
.jkl-toast[data-animation=exiting] {
|
|
5483
|
-
animation: jkl-exiting-
|
|
5484
|
+
animation: jkl-exiting-uisbn99 150ms ease-in forwards;
|
|
5484
5485
|
}
|
|
5485
|
-
@keyframes jkl-entering-
|
|
5486
|
+
@keyframes jkl-entering-uisbn95 {
|
|
5486
5487
|
from {
|
|
5487
5488
|
opacity: 0;
|
|
5488
5489
|
transform: translate3d(0, 50%, 0);
|
|
@@ -5492,7 +5493,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-select--beta s
|
|
|
5492
5493
|
transform: translate3d(0, 0, 0);
|
|
5493
5494
|
}
|
|
5494
5495
|
}
|
|
5495
|
-
@keyframes jkl-exiting-
|
|
5496
|
+
@keyframes jkl-exiting-uisbn99 {
|
|
5496
5497
|
from {
|
|
5497
5498
|
opacity: 1;
|
|
5498
5499
|
transform: translate3d(0, 0, 0);
|