@fremtind/jokul 0.29.0 → 0.30.0
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/menu/Menu.cjs +1 -1
- package/build/cjs/components/menu/Menu.cjs.map +1 -1
- package/build/cjs/components/tooltip/Tooltip.cjs +1 -1
- package/build/cjs/components/tooltip/Tooltip.cjs.map +1 -1
- package/build/cjs/components/tooltip/Tooltip.d.cts +1 -1
- package/build/cjs/components/tooltip/TooltipContent.cjs +1 -1
- package/build/cjs/components/tooltip/TooltipContent.cjs.map +1 -1
- package/build/cjs/components/tooltip/TooltipTrigger.cjs +1 -1
- package/build/cjs/components/tooltip/TooltipTrigger.cjs.map +1 -1
- package/build/es/components/menu/Menu.js +1 -1
- package/build/es/components/menu/Menu.js.map +1 -1
- package/build/es/components/tooltip/Tooltip.d.ts +1 -1
- package/build/es/components/tooltip/Tooltip.js +1 -1
- package/build/es/components/tooltip/Tooltip.js.map +1 -1
- package/build/es/components/tooltip/TooltipContent.js +1 -1
- package/build/es/components/tooltip/TooltipContent.js.map +1 -1
- package/build/es/components/tooltip/TooltipTrigger.js +1 -1
- package/build/es/components/tooltip/TooltipTrigger.js.map +1 -1
- package/package.json +2 -3
- 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/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/components/tooltip/tooltip.css +2 -26
- package/styles/components/tooltip/tooltip.min.css +1 -1
- package/styles/components/tooltip/tooltip.scss +3 -31
- package/styles/styles.css +39 -63
- package/styles/styles.min.css +1 -1
|
@@ -36,13 +36,14 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
.jkl-tooltip-content {
|
|
39
|
+
--background-color: var(--jkl-color-background-container-inverted);
|
|
39
40
|
font-size: 1rem;
|
|
40
41
|
line-height: 1.5rem;
|
|
41
42
|
font-weight: 400;
|
|
42
43
|
--jkl-icon-weight: 300;
|
|
43
44
|
--jkl-icon-size: 1.25rem;
|
|
44
45
|
--jkl-icon-opsz: 20;
|
|
45
|
-
background-color: var(--
|
|
46
|
+
background-color: var(--background-color);
|
|
46
47
|
color: var(--jkl-color-text-inverted);
|
|
47
48
|
display: inline-block;
|
|
48
49
|
min-width: min-content;
|
|
@@ -51,36 +52,11 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
51
52
|
position: absolute;
|
|
52
53
|
z-index: 10000;
|
|
53
54
|
}
|
|
54
|
-
.jkl-tooltip-content[data-placement^=top] > .jkl-tooltip-content__arrow {
|
|
55
|
-
bottom: -0.5rem;
|
|
56
|
-
}
|
|
57
|
-
.jkl-tooltip-content[data-placement^=bottom] > .jkl-tooltip-content__arrow {
|
|
58
|
-
top: -0.5rem;
|
|
59
|
-
}
|
|
60
|
-
.jkl-tooltip-content[data-placement^=left] > .jkl-tooltip-content__arrow {
|
|
61
|
-
right: -0.5rem;
|
|
62
|
-
}
|
|
63
|
-
.jkl-tooltip-content[data-placement^=right] > .jkl-tooltip-content__arrow {
|
|
64
|
-
left: -0.5rem;
|
|
65
|
-
}
|
|
66
55
|
@media screen and (forced-colors: active) {
|
|
67
56
|
.jkl-tooltip-content {
|
|
68
57
|
border: 1px solid CanvasText;
|
|
69
58
|
}
|
|
70
59
|
}
|
|
71
|
-
.jkl-tooltip-content__arrow {
|
|
72
|
-
overflow: hidden;
|
|
73
|
-
position: absolute;
|
|
74
|
-
background-color: var(--jkl-color-background-container-inverted);
|
|
75
|
-
transform: rotate(45deg);
|
|
76
|
-
height: 1rem;
|
|
77
|
-
width: 1rem;
|
|
78
|
-
}
|
|
79
|
-
@media screen and (forced-colors: active) {
|
|
80
|
-
.jkl-tooltip-content__arrow {
|
|
81
|
-
background-color: CanvasText;
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
60
|
|
|
85
61
|
.jkl-tooltip-question-button {
|
|
86
62
|
transition-timing-function: ease-in;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.jkl .jkl-tooltip-content,.jkl-tooltip-content[data-density=comfortable],.jkl-tooltip-content[data-layout-density=comfortable],[data-density=comfortable] .jkl-tooltip-content,[data-layout-density=comfortable] .jkl-tooltip-content{--content-padding:1rem}@media (width >= 0) and (max-width:679px){.jkl .jkl-tooltip-content,.jkl-tooltip-content[data-density=comfortable],.jkl-tooltip-content[data-layout-density=comfortable],[data-density=comfortable] .jkl-tooltip-content,[data-layout-density=comfortable] .jkl-tooltip-content{--content-padding:0.75rem}}.jkl-tooltip-content[data-density=compact],.jkl-tooltip-content[data-layout-density=compact],[data-density=compact] .jkl-tooltip-content,[data-layout-density=compact] .jkl-tooltip-content{--content-padding:0.5rem}.jkl-tooltip-trigger{all:unset}html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigger:focus{--jkl-icon-weight:500;font-weight:700;letter-spacing:-.014em}.jkl-tooltip-content{font-size:1rem;font-weight:400;line-height:1.5rem;--jkl-icon-weight:300;--jkl-icon-size:1.25rem;--jkl-icon-opsz:20;background-color:var(--
|
|
1
|
+
.jkl .jkl-tooltip-content,.jkl-tooltip-content[data-density=comfortable],.jkl-tooltip-content[data-layout-density=comfortable],[data-density=comfortable] .jkl-tooltip-content,[data-layout-density=comfortable] .jkl-tooltip-content{--content-padding:1rem}@media (width >= 0) and (max-width:679px){.jkl .jkl-tooltip-content,.jkl-tooltip-content[data-density=comfortable],.jkl-tooltip-content[data-layout-density=comfortable],[data-density=comfortable] .jkl-tooltip-content,[data-layout-density=comfortable] .jkl-tooltip-content{--content-padding:0.75rem}}.jkl-tooltip-content[data-density=compact],.jkl-tooltip-content[data-layout-density=compact],[data-density=compact] .jkl-tooltip-content,[data-layout-density=compact] .jkl-tooltip-content{--content-padding:0.5rem}.jkl-tooltip-trigger{all:unset}html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigger:focus{--jkl-icon-weight:500;font-weight:700;letter-spacing:-.014em}.jkl-tooltip-content{--background-color:var(--jkl-color-background-container-inverted);font-size:1rem;font-weight:400;line-height:1.5rem;--jkl-icon-weight:300;--jkl-icon-size:1.25rem;--jkl-icon-opsz:20;background-color:var(--background-color);color:var(--jkl-color-text-inverted);display:inline-block;max-width:min(19.375rem,100%);min-width:-webkit-min-content;min-width:min-content;padding:var(--content-padding);position:absolute;z-index:10000}@media screen and (forced-colors:active){.jkl-tooltip-content{border:1px solid CanvasText}}.jkl-tooltip-question-button{align-items:center;background-color:transparent;border-radius:9999px;border-style:none;color:var(--jkl-color-text-interactive);cursor:pointer;display:inline-flex;font-size:1.2em;outline:0;outline-style:none;padding:0;position:relative;transform:translateY(max(.16em,.25rem));transition-duration:.1s;transition-property:color;transition-timing-function:ease-in}.jkl-tooltip-question-button:active,.jkl-tooltip-question-button:focus,.jkl-tooltip-question-button:hover{outline:0;outline-style:none}@media screen and (forced-colors:active){.jkl-tooltip-question-button{border-style:revert;outline:revert;outline-style:revert}.jkl-tooltip-question-button:active,.jkl-tooltip-question-button:focus,.jkl-tooltip-question-button:hover{outline:revert;outline-style:revert}}.jkl-tooltip-question-button:hover{--button-color:var(--jkl-color-text-interactive-hover)}.jkl-tooltip-question-button:focus-visible{outline:2px solid var(--jkl-color-border-action);outline-offset:0}.jkl-tooltip-question-button:after{content:"";left:50%;min-height:44px;min-width:44px;position:absolute;top:50%;translate:-50% -50%}
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
@use "../../core/jkl";
|
|
3
3
|
|
|
4
4
|
$_tooltip-border-width: jkl.rem(1px);
|
|
5
|
-
$_tooltip-arrow-height: jkl.rem(8px);
|
|
6
5
|
$_focus-ring-distance: jkl.rem(
|
|
7
6
|
-1px
|
|
8
7
|
); // Negativ margin for å unngå subpixel mellomrom mellom border og box-shadow
|
|
@@ -31,8 +30,10 @@ $_focus-ring-width: jkl.rem(2px);
|
|
|
31
30
|
}
|
|
32
31
|
|
|
33
32
|
.jkl-tooltip-content {
|
|
33
|
+
--background-color: var(--jkl-color-background-container-inverted);
|
|
34
|
+
|
|
34
35
|
@include jkl.text-style("small");
|
|
35
|
-
background-color: var(--
|
|
36
|
+
background-color: var(--background-color);
|
|
36
37
|
color: var(--jkl-color-text-inverted);
|
|
37
38
|
display: inline-block;
|
|
38
39
|
min-width: min-content;
|
|
@@ -44,38 +45,9 @@ $_focus-ring-width: jkl.rem(2px);
|
|
|
44
45
|
position: absolute;
|
|
45
46
|
z-index: jkl.$z-index--floating;
|
|
46
47
|
|
|
47
|
-
&[data-placement^="top"] > .jkl-tooltip-content__arrow {
|
|
48
|
-
bottom: -#{$_tooltip-arrow-height};
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
&[data-placement^="bottom"] > .jkl-tooltip-content__arrow {
|
|
52
|
-
top: -#{$_tooltip-arrow-height};
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
&[data-placement^="left"] > .jkl-tooltip-content__arrow {
|
|
56
|
-
right: -#{$_tooltip-arrow-height};
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
&[data-placement^="right"] > .jkl-tooltip-content__arrow {
|
|
60
|
-
left: -#{$_tooltip-arrow-height};
|
|
61
|
-
}
|
|
62
|
-
|
|
63
48
|
@include jkl.forced-colors-mode {
|
|
64
49
|
border: 1px solid CanvasText;
|
|
65
50
|
}
|
|
66
|
-
|
|
67
|
-
&__arrow {
|
|
68
|
-
overflow: hidden;
|
|
69
|
-
position: absolute;
|
|
70
|
-
background-color: var(--jkl-color-background-container-inverted);
|
|
71
|
-
transform: rotate(45deg);
|
|
72
|
-
height: $_tooltip-arrow-height * 2;
|
|
73
|
-
width: $_tooltip-arrow-height * 2;
|
|
74
|
-
|
|
75
|
-
@include jkl.forced-colors-mode {
|
|
76
|
-
background-color: CanvasText;
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
51
|
}
|
|
80
52
|
|
|
81
53
|
.jkl-tooltip-question-button {
|
package/styles/styles.css
CHANGED
|
@@ -617,7 +617,7 @@
|
|
|
617
617
|
height: 1rem;
|
|
618
618
|
}
|
|
619
619
|
html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
620
|
-
animation: cubic-bezier(0.6, 0.2, 0.35, 1) 250ms jkl-tertiary-flash-
|
|
620
|
+
animation: cubic-bezier(0.6, 0.2, 0.35, 1) 250ms jkl-tertiary-flash-uji3h5d;
|
|
621
621
|
}
|
|
622
622
|
:not([data-touchnavigation]) .jkl-button--primary:hover, :not([data-touchnavigation]) .jkl-button--secondary:hover, :not([data-touchnavigation]) .jkl-button--tertiary:hover {
|
|
623
623
|
scale: 1.05;
|
|
@@ -661,7 +661,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
661
661
|
--background-color: var(--jkl-color-background-interactive-hover);
|
|
662
662
|
}
|
|
663
663
|
|
|
664
|
-
@keyframes jkl-tertiary-flash-
|
|
664
|
+
@keyframes jkl-tertiary-flash-uji3h5d {
|
|
665
665
|
0% {
|
|
666
666
|
opacity: 0.5;
|
|
667
667
|
scale: 1;
|
|
@@ -686,15 +686,15 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
686
686
|
animation: 2500ms linear infinite;
|
|
687
687
|
}
|
|
688
688
|
.jkl-loader__dot--left {
|
|
689
|
-
animation-name: jkl-loader-left-spin-
|
|
689
|
+
animation-name: jkl-loader-left-spin-uji3h5q;
|
|
690
690
|
margin-right: 1.71em;
|
|
691
691
|
}
|
|
692
692
|
.jkl-loader__dot--middle {
|
|
693
|
-
animation-name: jkl-loader-middle-spin-
|
|
693
|
+
animation-name: jkl-loader-middle-spin-uji3h6f;
|
|
694
694
|
margin-right: 1.9em;
|
|
695
695
|
}
|
|
696
696
|
.jkl-loader__dot--right {
|
|
697
|
-
animation-name: jkl-loader-right-spin-
|
|
697
|
+
animation-name: jkl-loader-right-spin-uji3h6k;
|
|
698
698
|
}
|
|
699
699
|
@media screen and (forced-colors: active) {
|
|
700
700
|
.jkl-loader__dot {
|
|
@@ -722,7 +722,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
722
722
|
margin-right: 0.3em;
|
|
723
723
|
}
|
|
724
724
|
|
|
725
|
-
@keyframes jkl-loader-left-spin-
|
|
725
|
+
@keyframes jkl-loader-left-spin-uji3h5q {
|
|
726
726
|
0% {
|
|
727
727
|
transform: rotate(0) scale(0);
|
|
728
728
|
}
|
|
@@ -736,7 +736,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
736
736
|
transform: rotate(180deg) scale(0);
|
|
737
737
|
}
|
|
738
738
|
}
|
|
739
|
-
@keyframes jkl-loader-middle-spin-
|
|
739
|
+
@keyframes jkl-loader-middle-spin-uji3h6f {
|
|
740
740
|
0% {
|
|
741
741
|
transform: rotate(20deg) scale(0);
|
|
742
742
|
}
|
|
@@ -753,7 +753,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
753
753
|
transform: rotate(200deg) scale(0);
|
|
754
754
|
}
|
|
755
755
|
}
|
|
756
|
-
@keyframes jkl-loader-right-spin-
|
|
756
|
+
@keyframes jkl-loader-right-spin-uji3h6k {
|
|
757
757
|
0% {
|
|
758
758
|
transform: rotate(40deg) scale(0);
|
|
759
759
|
}
|
|
@@ -801,7 +801,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
801
801
|
bottom: 0;
|
|
802
802
|
width: 12.5rem;
|
|
803
803
|
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%);
|
|
804
|
-
animation: var(--jkl-skeleton-sweep-duration) ease infinite jkl-sweep-
|
|
804
|
+
animation: var(--jkl-skeleton-sweep-duration) ease infinite jkl-sweep-uji3h6p;
|
|
805
805
|
}
|
|
806
806
|
@media (width >= 0) and (max-width: 679px) {
|
|
807
807
|
.jkl-skeleton-animation {
|
|
@@ -832,7 +832,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
832
832
|
@media screen and (forced-colors: active) {
|
|
833
833
|
.jkl-skeleton-element {
|
|
834
834
|
border: 1px solid CanvasText;
|
|
835
|
-
animation: 2s ease infinite jkl-blink-
|
|
835
|
+
animation: 2s ease infinite jkl-blink-uji3h6y;
|
|
836
836
|
}
|
|
837
837
|
}
|
|
838
838
|
|
|
@@ -888,11 +888,11 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
888
888
|
}
|
|
889
889
|
@media screen and (forced-colors: active) {
|
|
890
890
|
.jkl-skeleton-table {
|
|
891
|
-
animation: 2s ease-in-out infinite jkl-blink-
|
|
891
|
+
animation: 2s ease-in-out infinite jkl-blink-uji3h6y;
|
|
892
892
|
}
|
|
893
893
|
}
|
|
894
894
|
|
|
895
|
-
@keyframes jkl-sweep-
|
|
895
|
+
@keyframes jkl-sweep-uji3h6p {
|
|
896
896
|
0% {
|
|
897
897
|
transform: translateX(calc(0vw - 200px));
|
|
898
898
|
}
|
|
@@ -900,7 +900,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
900
900
|
transform: translateX(calc(100vw + 400px));
|
|
901
901
|
}
|
|
902
902
|
}
|
|
903
|
-
@keyframes jkl-blink-
|
|
903
|
+
@keyframes jkl-blink-uji3h6y {
|
|
904
904
|
0% {
|
|
905
905
|
opacity: 1;
|
|
906
906
|
}
|
|
@@ -1465,7 +1465,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
1465
1465
|
--jkl-checkbox-line-height: 1.5rem;
|
|
1466
1466
|
}
|
|
1467
1467
|
|
|
1468
|
-
@keyframes jkl-checkbox-checked-
|
|
1468
|
+
@keyframes jkl-checkbox-checked-uji3h7f {
|
|
1469
1469
|
0% {
|
|
1470
1470
|
width: 0;
|
|
1471
1471
|
height: 0;
|
|
@@ -1479,7 +1479,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
1479
1479
|
height: 58%;
|
|
1480
1480
|
}
|
|
1481
1481
|
}
|
|
1482
|
-
@keyframes jkl-checkbox-indeterminate-
|
|
1482
|
+
@keyframes jkl-checkbox-indeterminate-uji3h7x {
|
|
1483
1483
|
0% {
|
|
1484
1484
|
width: 0;
|
|
1485
1485
|
}
|
|
@@ -1507,11 +1507,11 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
1507
1507
|
top: -6px;
|
|
1508
1508
|
}
|
|
1509
1509
|
.jkl-checkbox__input:checked + .jkl-checkbox__label .jkl-checkbox__check-mark::after {
|
|
1510
|
-
animation: jkl-checkbox-checked-
|
|
1510
|
+
animation: jkl-checkbox-checked-uji3h7f 150ms ease-in-out forwards;
|
|
1511
1511
|
opacity: 1;
|
|
1512
1512
|
}
|
|
1513
1513
|
.jkl-checkbox__input:indeterminate:not(:checked) + .jkl-checkbox__label .jkl-checkbox__indeterminate-mark::after {
|
|
1514
|
-
animation: jkl-checkbox-indeterminate-
|
|
1514
|
+
animation: jkl-checkbox-indeterminate-uji3h7x 150ms ease-in-out forwards;
|
|
1515
1515
|
opacity: 1;
|
|
1516
1516
|
}
|
|
1517
1517
|
.jkl-checkbox__input:focus-visible + .jkl-checkbox__label {
|
|
@@ -2037,7 +2037,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2037
2037
|
--color: var(--jkl-color-text-default);
|
|
2038
2038
|
}
|
|
2039
2039
|
.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 {
|
|
2040
|
-
animation: 400ms cubic-bezier(0, 0, 0.3, 1) 250ms jkl-support-icon-entrance-
|
|
2040
|
+
animation: 400ms cubic-bezier(0, 0, 0.3, 1) 250ms jkl-support-icon-entrance-uji3h87 forwards;
|
|
2041
2041
|
}
|
|
2042
2042
|
.jkl-form-support-label--sr-only {
|
|
2043
2043
|
border: 0 !important;
|
|
@@ -2112,7 +2112,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2112
2112
|
white-space: nowrap !important; /* 3 */
|
|
2113
2113
|
}
|
|
2114
2114
|
|
|
2115
|
-
@keyframes jkl-support-icon-entrance-
|
|
2115
|
+
@keyframes jkl-support-icon-entrance-uji3h87 {
|
|
2116
2116
|
0% {
|
|
2117
2117
|
margin-right: 0;
|
|
2118
2118
|
opacity: 0;
|
|
@@ -2181,13 +2181,14 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
2181
2181
|
}
|
|
2182
2182
|
|
|
2183
2183
|
.jkl-tooltip-content {
|
|
2184
|
+
--background-color: var(--jkl-color-background-container-inverted);
|
|
2184
2185
|
font-size: 1rem;
|
|
2185
2186
|
line-height: 1.5rem;
|
|
2186
2187
|
font-weight: 400;
|
|
2187
2188
|
--jkl-icon-weight: 300;
|
|
2188
2189
|
--jkl-icon-size: 1.25rem;
|
|
2189
2190
|
--jkl-icon-opsz: 20;
|
|
2190
|
-
background-color: var(--
|
|
2191
|
+
background-color: var(--background-color);
|
|
2191
2192
|
color: var(--jkl-color-text-inverted);
|
|
2192
2193
|
display: inline-block;
|
|
2193
2194
|
min-width: min-content;
|
|
@@ -2196,36 +2197,11 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
2196
2197
|
position: absolute;
|
|
2197
2198
|
z-index: 10000;
|
|
2198
2199
|
}
|
|
2199
|
-
.jkl-tooltip-content[data-placement^=top] > .jkl-tooltip-content__arrow {
|
|
2200
|
-
bottom: -0.5rem;
|
|
2201
|
-
}
|
|
2202
|
-
.jkl-tooltip-content[data-placement^=bottom] > .jkl-tooltip-content__arrow {
|
|
2203
|
-
top: -0.5rem;
|
|
2204
|
-
}
|
|
2205
|
-
.jkl-tooltip-content[data-placement^=left] > .jkl-tooltip-content__arrow {
|
|
2206
|
-
right: -0.5rem;
|
|
2207
|
-
}
|
|
2208
|
-
.jkl-tooltip-content[data-placement^=right] > .jkl-tooltip-content__arrow {
|
|
2209
|
-
left: -0.5rem;
|
|
2210
|
-
}
|
|
2211
2200
|
@media screen and (forced-colors: active) {
|
|
2212
2201
|
.jkl-tooltip-content {
|
|
2213
2202
|
border: 1px solid CanvasText;
|
|
2214
2203
|
}
|
|
2215
2204
|
}
|
|
2216
|
-
.jkl-tooltip-content__arrow {
|
|
2217
|
-
overflow: hidden;
|
|
2218
|
-
position: absolute;
|
|
2219
|
-
background-color: var(--jkl-color-background-container-inverted);
|
|
2220
|
-
transform: rotate(45deg);
|
|
2221
|
-
height: 1rem;
|
|
2222
|
-
width: 1rem;
|
|
2223
|
-
}
|
|
2224
|
-
@media screen and (forced-colors: active) {
|
|
2225
|
-
.jkl-tooltip-content__arrow {
|
|
2226
|
-
background-color: CanvasText;
|
|
2227
|
-
}
|
|
2228
|
-
}
|
|
2229
2205
|
|
|
2230
2206
|
.jkl-tooltip-question-button {
|
|
2231
2207
|
transition-timing-function: ease-in;
|
|
@@ -3560,7 +3536,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-text-area__tex
|
|
|
3560
3536
|
padding: 1rem 0 2.5rem 0;
|
|
3561
3537
|
}
|
|
3562
3538
|
|
|
3563
|
-
@keyframes jkl-show-
|
|
3539
|
+
@keyframes jkl-show-uji3h8q {
|
|
3564
3540
|
from {
|
|
3565
3541
|
transform: translate3d(0, 0.5rem, 0);
|
|
3566
3542
|
opacity: 0;
|
|
@@ -3595,7 +3571,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-text-area__tex
|
|
|
3595
3571
|
}
|
|
3596
3572
|
}
|
|
3597
3573
|
.jkl-feedback__fade-in {
|
|
3598
|
-
animation: jkl-show-
|
|
3574
|
+
animation: jkl-show-uji3h8q 0.25s ease-out;
|
|
3599
3575
|
}
|
|
3600
3576
|
|
|
3601
3577
|
.jkl-feedback-smileys {
|
|
@@ -3830,7 +3806,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
3830
3806
|
--background-color: var(--jkl-color-background-alert-success);
|
|
3831
3807
|
}
|
|
3832
3808
|
.jkl-message--dismissed {
|
|
3833
|
-
animation: jkl-dismiss-
|
|
3809
|
+
animation: jkl-dismiss-uji3h9l 400ms ease-in-out forwards;
|
|
3834
3810
|
transition: visibility 0ms 400ms;
|
|
3835
3811
|
visibility: hidden;
|
|
3836
3812
|
}
|
|
@@ -3850,7 +3826,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
3850
3826
|
}
|
|
3851
3827
|
}
|
|
3852
3828
|
|
|
3853
|
-
@keyframes jkl-dismiss-
|
|
3829
|
+
@keyframes jkl-dismiss-uji3h9l {
|
|
3854
3830
|
from {
|
|
3855
3831
|
opacity: 1;
|
|
3856
3832
|
transform: translate3d(0, 0, 0);
|
|
@@ -3906,7 +3882,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
3906
3882
|
--jkl-radio-button-label-font-weight: var(--jkl-small-font-weight);
|
|
3907
3883
|
}
|
|
3908
3884
|
|
|
3909
|
-
@keyframes jkl-dot-in-
|
|
3885
|
+
@keyframes jkl-dot-in-uji3ha9 {
|
|
3910
3886
|
0% {
|
|
3911
3887
|
transform: scale(0.8);
|
|
3912
3888
|
}
|
|
@@ -3949,7 +3925,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
3949
3925
|
}
|
|
3950
3926
|
.jkl-radio-button__input:checked + .jkl-radio-button__label > .jkl-radio-button__dot::after {
|
|
3951
3927
|
--dot-color: var(--jkl-color-border-action);
|
|
3952
|
-
animation: jkl-dot-in-
|
|
3928
|
+
animation: jkl-dot-in-uji3ha9 150ms ease;
|
|
3953
3929
|
}
|
|
3954
3930
|
@media screen and (forced-colors: active) {
|
|
3955
3931
|
.jkl-radio-button__input:checked + .jkl-radio-button__label > .jkl-radio-button__dot::after {
|
|
@@ -4099,7 +4075,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4099
4075
|
--background-color: var(--jkl-color-background-container-high);
|
|
4100
4076
|
}
|
|
4101
4077
|
|
|
4102
|
-
@keyframes jkl-dot-in-
|
|
4078
|
+
@keyframes jkl-dot-in-uji3hao {
|
|
4103
4079
|
0% {
|
|
4104
4080
|
transform: scale(0.8);
|
|
4105
4081
|
}
|
|
@@ -4147,7 +4123,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4147
4123
|
}
|
|
4148
4124
|
}
|
|
4149
4125
|
.jkl-radio-panel__input:checked + .jkl-radio-panel__decorator::after {
|
|
4150
|
-
animation: jkl-dot-in-
|
|
4126
|
+
animation: jkl-dot-in-uji3hao 150ms ease;
|
|
4151
4127
|
}
|
|
4152
4128
|
.jkl-radio-panel:has(:checked) {
|
|
4153
4129
|
--radio-dot-color: var(--jkl-color-border-action);
|
|
@@ -4159,7 +4135,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4159
4135
|
--radio-dot-color: var(--jkl-color-text-on-alert);
|
|
4160
4136
|
}
|
|
4161
4137
|
|
|
4162
|
-
@keyframes jkl-checkbox-checked-
|
|
4138
|
+
@keyframes jkl-checkbox-checked-uji3hb7 {
|
|
4163
4139
|
0% {
|
|
4164
4140
|
width: 0;
|
|
4165
4141
|
height: 0;
|
|
@@ -4222,7 +4198,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4222
4198
|
}
|
|
4223
4199
|
}
|
|
4224
4200
|
.jkl-checkbox-panel:has(:checked) .jkl-checkbox-panel__decorator::after {
|
|
4225
|
-
animation: jkl-checkbox-checked-
|
|
4201
|
+
animation: jkl-checkbox-checked-uji3hb7 150ms ease-in-out forwards;
|
|
4226
4202
|
opacity: 1;
|
|
4227
4203
|
}
|
|
4228
4204
|
.jkl-checkbox-panel:has([aria-invalid=true]) {
|
|
@@ -4986,11 +4962,11 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4986
4962
|
}
|
|
4987
4963
|
|
|
4988
4964
|
.jkl-countdown__tracker {
|
|
4989
|
-
animation: jkl-downcount-
|
|
4965
|
+
animation: jkl-downcount-uji3hbo var(--duration) linear forwards;
|
|
4990
4966
|
animation-play-state: var(--play-state, running);
|
|
4991
4967
|
}
|
|
4992
4968
|
|
|
4993
|
-
@keyframes jkl-downcount-
|
|
4969
|
+
@keyframes jkl-downcount-uji3hbo {
|
|
4994
4970
|
from {
|
|
4995
4971
|
width: 100%;
|
|
4996
4972
|
}
|
|
@@ -5189,7 +5165,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-system-message
|
|
|
5189
5165
|
margin-bottom: 0;
|
|
5190
5166
|
}
|
|
5191
5167
|
.jkl-system-message--dismissed {
|
|
5192
|
-
animation: jkl-dismiss-
|
|
5168
|
+
animation: jkl-dismiss-uji3hc6 400ms ease-in forwards;
|
|
5193
5169
|
transition: visibility 0ms 400ms;
|
|
5194
5170
|
visibility: hidden;
|
|
5195
5171
|
}
|
|
@@ -5221,7 +5197,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-system-message
|
|
|
5221
5197
|
}
|
|
5222
5198
|
}
|
|
5223
5199
|
|
|
5224
|
-
@keyframes jkl-dismiss-
|
|
5200
|
+
@keyframes jkl-dismiss-uji3hc6 {
|
|
5225
5201
|
from {
|
|
5226
5202
|
opacity: 1;
|
|
5227
5203
|
transform: translate3d(0, 0, 0);
|
|
@@ -6096,14 +6072,14 @@ html:not([data-mousenavigation]) .jkl-table-pagination__previous:focus, html:not
|
|
|
6096
6072
|
|
|
6097
6073
|
.jkl-toast[data-animation=entering],
|
|
6098
6074
|
.jkl-toast[data-animation=queued] {
|
|
6099
|
-
animation: jkl-entering-
|
|
6075
|
+
animation: jkl-entering-uji3hcj 200ms ease-out forwards;
|
|
6100
6076
|
}
|
|
6101
6077
|
|
|
6102
6078
|
.jkl-toast[data-animation=exiting] {
|
|
6103
|
-
animation: jkl-exiting-
|
|
6079
|
+
animation: jkl-exiting-uji3hco 150ms ease-in forwards;
|
|
6104
6080
|
}
|
|
6105
6081
|
|
|
6106
|
-
@keyframes jkl-entering-
|
|
6082
|
+
@keyframes jkl-entering-uji3hcj {
|
|
6107
6083
|
from {
|
|
6108
6084
|
opacity: 0;
|
|
6109
6085
|
transform: translate3d(0, 50%, 0);
|
|
@@ -6113,7 +6089,7 @@ html:not([data-mousenavigation]) .jkl-table-pagination__previous:focus, html:not
|
|
|
6113
6089
|
transform: translate3d(0, 0, 0);
|
|
6114
6090
|
}
|
|
6115
6091
|
}
|
|
6116
|
-
@keyframes jkl-exiting-
|
|
6092
|
+
@keyframes jkl-exiting-uji3hco {
|
|
6117
6093
|
from {
|
|
6118
6094
|
opacity: 1;
|
|
6119
6095
|
transform: translate3d(0, 0, 0);
|