@kaizen/components 1.67.1 → 1.67.3
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/dist/cjs/Filter/FilterBar/context/FilterBarContext.cjs +17 -2
- package/dist/cjs/Filter/FilterBar/context/reducer/filterBarStateReducer.cjs +4 -0
- package/dist/cjs/Filter/FilterBar/context/reducer/setupFilterBarState.cjs +2 -1
- package/dist/cjs/Filter/FilterBar/subcomponents/AddFiltersMenu/AddFiltersMenu.cjs +12 -1
- package/dist/cjs/Filter/FilterBar/subcomponents/FilterBarButton/FilterBarButton.cjs +12 -1
- package/dist/cjs/Filter/FilterBar/subcomponents/FilterBarMultiSelect/FilterBarMultiSelect.cjs +13 -2
- package/dist/cjs/Filter/FilterMultiSelect/FilterMultiSelect.cjs +4 -2
- package/dist/cjs/Filter/FilterMultiSelect/context/MenuTriggerProvider/MenuTriggerProvider.cjs +4 -2
- package/dist/cjs/TextField/TextField.cjs +2 -2
- package/dist/cjs/TextField/TextField.module.scss.cjs +4 -6
- package/dist/esm/Filter/FilterBar/context/FilterBarContext.mjs +17 -2
- package/dist/esm/Filter/FilterBar/context/reducer/filterBarStateReducer.mjs +4 -0
- package/dist/esm/Filter/FilterBar/context/reducer/setupFilterBarState.mjs +2 -1
- package/dist/esm/Filter/FilterBar/subcomponents/AddFiltersMenu/AddFiltersMenu.mjs +13 -2
- package/dist/esm/Filter/FilterBar/subcomponents/FilterBarButton/FilterBarButton.mjs +13 -2
- package/dist/esm/Filter/FilterBar/subcomponents/FilterBarMultiSelect/FilterBarMultiSelect.mjs +14 -3
- package/dist/esm/Filter/FilterMultiSelect/FilterMultiSelect.mjs +4 -2
- package/dist/esm/Filter/FilterMultiSelect/context/MenuTriggerProvider/MenuTriggerProvider.mjs +4 -2
- package/dist/esm/TextField/TextField.mjs +2 -2
- package/dist/esm/TextField/TextField.module.scss.mjs +4 -6
- package/dist/styles.css +252 -465
- package/dist/types/Filter/FilterBar/context/FilterBarContext.d.ts +2 -0
- package/dist/types/Filter/FilterBar/context/reducer/filterBarStateReducer.d.ts +3 -0
- package/dist/types/Filter/FilterBar/context/types.d.ts +1 -0
- package/dist/types/Filter/FilterMultiSelect/FilterMultiSelect.d.ts +2 -1
- package/dist/types/Filter/FilterMultiSelect/context/MenuTriggerProvider/MenuTriggerProvider.d.ts +2 -1
- package/package.json +3 -3
- package/src/Avatar/Avatar.module.scss +4 -4
- package/src/Checkbox/Checkbox/Checkbox.module.scss +2 -2
- package/src/Filter/FilterBar/FilterBar.spec.tsx +87 -0
- package/src/Filter/FilterBar/context/FilterBarContext.tsx +11 -2
- package/src/Filter/FilterBar/context/reducer/filterBarStateReducer.ts +7 -0
- package/src/Filter/FilterBar/context/reducer/setupFilterBarState.ts +1 -0
- package/src/Filter/FilterBar/context/types.ts +1 -0
- package/src/Filter/FilterBar/subcomponents/AddFiltersMenu/AddFiltersMenu.tsx +12 -2
- package/src/Filter/FilterBar/subcomponents/FilterBarButton/FilterBarButton.tsx +10 -2
- package/src/Filter/FilterBar/subcomponents/FilterBarMultiSelect/FilterBarMultiSelect.tsx +18 -3
- package/src/Filter/FilterMultiSelect/FilterMultiSelect.tsx +3 -1
- package/src/Filter/FilterMultiSelect/context/MenuTriggerProvider/MenuTriggerProvider.tsx +4 -1
- package/src/Filter/FilterMultiSelect/subcomponents/SelectionControlButton/SelectionControlButton.module.scss +9 -10
- package/src/GuidanceBlock/GuidanceBlock.module.scss +4 -5
- package/src/Input/InputRange/InputRange.module.scss +4 -4
- package/src/Input/InputSearch/InputSearch.module.scss +21 -21
- package/src/LikertScaleLegacy/LikertScaleLegacy.module.scss +7 -8
- package/src/Modal/ContextModal/ContextModal.module.scss +4 -4
- package/src/Modal/GenericModal/GenericModal.module.scss +8 -8
- package/src/Modal/GenericModal/subcomponents/ModalHeader/ModalHeader.module.scss +2 -2
- package/src/Modal/InputEditModal/InputEditModal.module.scss +4 -4
- package/src/Notification/subcomponents/GenericNotification/_mixins.scss +7 -8
- package/src/RichTextEditor/RichTextEditor/RichTextEditor.module.scss +2 -2
- package/src/Select/Select.module.scss +7 -7
- package/src/Table/Table.module.scss +11 -7
- package/src/TextArea/TextArea.module.scss +4 -4
- package/src/TextField/TextField.module.scss +10 -36
- package/src/TextField/TextField.tsx +2 -4
- package/src/TextField/_docs/TextField.stickersheet.stories.tsx +9 -1
- package/src/Tile/subcomponents/GenericTile/GenericTile.module.scss +7 -8
- package/src/TitleBlockZen/TitleBlockZen.module.scss +14 -21
- package/src/TitleBlockZen/subcomponents/MobileActions.module.scss +2 -2
- package/src/__future__/Tag/RemovableTag/subcomponents/RemoveButton.module.scss +1 -2
package/dist/styles.css
CHANGED
|
@@ -29,6 +29,94 @@
|
|
|
29
29
|
display: block;
|
|
30
30
|
margin-block: var(--spacing-6);
|
|
31
31
|
}
|
|
32
|
+
.Button-module_button__QOSYH {
|
|
33
|
+
--button-min-height-width: var(--spacing-48);
|
|
34
|
+
--button-padding-x: calc(
|
|
35
|
+
var(--spacing-12) - var(--border-solid-border-width)
|
|
36
|
+
);
|
|
37
|
+
--button-padding-y: calc(
|
|
38
|
+
var(--spacing-8) - var(--border-solid-border-width)
|
|
39
|
+
);
|
|
40
|
+
--button-icon-size: var(--spacing-24);
|
|
41
|
+
appearance: none;
|
|
42
|
+
background: transparent;
|
|
43
|
+
color: inherit;
|
|
44
|
+
font: inherit;
|
|
45
|
+
margin: 0;
|
|
46
|
+
border: none;
|
|
47
|
+
border: var(--border-solid-border-width) var(--border-solid-border-style);
|
|
48
|
+
border-radius: var(--border-solid-border-radius);
|
|
49
|
+
box-sizing: border-box;
|
|
50
|
+
display: inline-flex;
|
|
51
|
+
align-items: center;
|
|
52
|
+
justify-content: center;
|
|
53
|
+
text-align: left;
|
|
54
|
+
gap: var(--spacing-8);
|
|
55
|
+
font-family: var(--typography-button-primary-font-family);
|
|
56
|
+
font-weight: var(--typography-button-primary-font-weight);
|
|
57
|
+
font-size: var(--typography-button-primary-font-size);
|
|
58
|
+
line-height: var(--typography-button-primary-line-height);
|
|
59
|
+
min-height: var(--button-min-height-width);
|
|
60
|
+
min-width: var(--button-min-height-width);
|
|
61
|
+
outline: none;
|
|
62
|
+
position: relative;
|
|
63
|
+
padding: var(--button-padding-y) var(--button-padding-x);
|
|
64
|
+
-webkit-font-smoothing: antialiased;
|
|
65
|
+
-moz-osx-font-smoothing: grayscale;
|
|
66
|
+
}
|
|
67
|
+
.Button-module_button__QOSYH[data-focus-visible]::after {
|
|
68
|
+
content: "";
|
|
69
|
+
position: absolute;
|
|
70
|
+
background: transparent;
|
|
71
|
+
border-color: var(--color-blue-500);
|
|
72
|
+
border-radius: var(--border-focus-ring-border-radius);
|
|
73
|
+
border-width: var(--border-focus-ring-border-width);
|
|
74
|
+
border-style: var(--border-focus-ring-border-style);
|
|
75
|
+
inset: calc(-1 * (var(--border-focus-ring-border-width) * 2 + 1px));
|
|
76
|
+
}
|
|
77
|
+
.Button-module_button__QOSYH svg {
|
|
78
|
+
height: var(--button-icon-size);
|
|
79
|
+
width: var(--button-icon-size);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.Button-module_default__gSx3e {
|
|
83
|
+
border-color: var(--color-gray-500);
|
|
84
|
+
color: var(--color-purple-800);
|
|
85
|
+
}
|
|
86
|
+
.Button-module_default__gSx3e[data-hovered], .Button-module_default__gSx3e[data-focus-visible], .Button-module_default__gSx3e[data-pressed] {
|
|
87
|
+
background-color: var(--color-gray-200);
|
|
88
|
+
border-color: var(--color-purple-800);
|
|
89
|
+
}
|
|
90
|
+
.Button-module_default__gSx3e[data-disabled] {
|
|
91
|
+
opacity: 0.3;
|
|
92
|
+
}
|
|
93
|
+
.Button-module_default__gSx3e.Button-module_reversed__DT-Id {
|
|
94
|
+
background-color: transparent;
|
|
95
|
+
border-color: rgba(var(--color-white-rgb), 0.65);
|
|
96
|
+
color: var(--color-white);
|
|
97
|
+
}
|
|
98
|
+
.Button-module_default__gSx3e.Button-module_reversed__DT-Id[data-hovered], .Button-module_default__gSx3e.Button-module_reversed__DT-Id[data-focus-visible] {
|
|
99
|
+
background-color: rgba(var(--color-white-rgb), 0.1);
|
|
100
|
+
border-color: var(--color-white);
|
|
101
|
+
}
|
|
102
|
+
.Button-module_default__gSx3e.Button-module_reversed__DT-Id[data-focus-visible]::after {
|
|
103
|
+
border-color: var(--color-blue-300);
|
|
104
|
+
}
|
|
105
|
+
.Button-module_default__gSx3e.Button-module_reversed__DT-Id[data-disabled]::after {
|
|
106
|
+
border-color: var(--color-gray-400);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.Button-module_small__S-t5B {
|
|
110
|
+
--button-min-height-width: 2.5rem;
|
|
111
|
+
--button-padding-x: calc(
|
|
112
|
+
var(--spacing-8) - var(--border-solid-border-width)
|
|
113
|
+
);
|
|
114
|
+
--button-padding-y: calc(
|
|
115
|
+
var(--spacing-8) - var(--border-solid-border-width)
|
|
116
|
+
);
|
|
117
|
+
--button-icon-size: var(--spacing-16);
|
|
118
|
+
gap: var(--spacing-8);
|
|
119
|
+
}
|
|
32
120
|
.MenuItem-module_item__DPerF {
|
|
33
121
|
font-family: var(--typography-paragraph-body-font-family);
|
|
34
122
|
font-size: var(--typography-paragraph-body-font-size);
|
|
@@ -63,6 +151,9 @@
|
|
|
63
151
|
.MenuItem-module_item__DPerF[data-disabled] {
|
|
64
152
|
opacity: 0.3;
|
|
65
153
|
}
|
|
154
|
+
.Focusable-module_focusableWrapper__NfuIi {
|
|
155
|
+
display: inline-flex;
|
|
156
|
+
}
|
|
66
157
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
67
158
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
68
159
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
@@ -119,97 +210,6 @@
|
|
|
119
210
|
opacity: 1;
|
|
120
211
|
}
|
|
121
212
|
}
|
|
122
|
-
.Focusable-module_focusableWrapper__NfuIi {
|
|
123
|
-
display: inline-flex;
|
|
124
|
-
}
|
|
125
|
-
.Button-module_button__QOSYH {
|
|
126
|
-
--button-min-height-width: var(--spacing-48);
|
|
127
|
-
--button-padding-x: calc(
|
|
128
|
-
var(--spacing-12) - var(--border-solid-border-width)
|
|
129
|
-
);
|
|
130
|
-
--button-padding-y: calc(
|
|
131
|
-
var(--spacing-8) - var(--border-solid-border-width)
|
|
132
|
-
);
|
|
133
|
-
--button-icon-size: var(--spacing-24);
|
|
134
|
-
appearance: none;
|
|
135
|
-
background: transparent;
|
|
136
|
-
color: inherit;
|
|
137
|
-
font: inherit;
|
|
138
|
-
margin: 0;
|
|
139
|
-
border: none;
|
|
140
|
-
border: var(--border-solid-border-width) var(--border-solid-border-style);
|
|
141
|
-
border-radius: var(--border-solid-border-radius);
|
|
142
|
-
box-sizing: border-box;
|
|
143
|
-
display: inline-flex;
|
|
144
|
-
align-items: center;
|
|
145
|
-
justify-content: center;
|
|
146
|
-
text-align: left;
|
|
147
|
-
gap: var(--spacing-8);
|
|
148
|
-
font-family: var(--typography-button-primary-font-family);
|
|
149
|
-
font-weight: var(--typography-button-primary-font-weight);
|
|
150
|
-
font-size: var(--typography-button-primary-font-size);
|
|
151
|
-
line-height: var(--typography-button-primary-line-height);
|
|
152
|
-
min-height: var(--button-min-height-width);
|
|
153
|
-
min-width: var(--button-min-height-width);
|
|
154
|
-
outline: none;
|
|
155
|
-
position: relative;
|
|
156
|
-
padding: var(--button-padding-y) var(--button-padding-x);
|
|
157
|
-
-webkit-font-smoothing: antialiased;
|
|
158
|
-
-moz-osx-font-smoothing: grayscale;
|
|
159
|
-
}
|
|
160
|
-
.Button-module_button__QOSYH[data-focus-visible]::after {
|
|
161
|
-
content: "";
|
|
162
|
-
position: absolute;
|
|
163
|
-
background: transparent;
|
|
164
|
-
border-color: var(--color-blue-500);
|
|
165
|
-
border-radius: var(--border-focus-ring-border-radius);
|
|
166
|
-
border-width: var(--border-focus-ring-border-width);
|
|
167
|
-
border-style: var(--border-focus-ring-border-style);
|
|
168
|
-
inset: calc(-1 * (var(--border-focus-ring-border-width) * 2 + 1px));
|
|
169
|
-
}
|
|
170
|
-
.Button-module_button__QOSYH svg {
|
|
171
|
-
height: var(--button-icon-size);
|
|
172
|
-
width: var(--button-icon-size);
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
.Button-module_default__gSx3e {
|
|
176
|
-
border-color: var(--color-gray-500);
|
|
177
|
-
color: var(--color-purple-800);
|
|
178
|
-
}
|
|
179
|
-
.Button-module_default__gSx3e[data-hovered], .Button-module_default__gSx3e[data-focus-visible], .Button-module_default__gSx3e[data-pressed] {
|
|
180
|
-
background-color: var(--color-gray-200);
|
|
181
|
-
border-color: var(--color-purple-800);
|
|
182
|
-
}
|
|
183
|
-
.Button-module_default__gSx3e[data-disabled] {
|
|
184
|
-
opacity: 0.3;
|
|
185
|
-
}
|
|
186
|
-
.Button-module_default__gSx3e.Button-module_reversed__DT-Id {
|
|
187
|
-
background-color: transparent;
|
|
188
|
-
border-color: rgba(var(--color-white-rgb), 0.65);
|
|
189
|
-
color: var(--color-white);
|
|
190
|
-
}
|
|
191
|
-
.Button-module_default__gSx3e.Button-module_reversed__DT-Id[data-hovered], .Button-module_default__gSx3e.Button-module_reversed__DT-Id[data-focus-visible] {
|
|
192
|
-
background-color: rgba(var(--color-white-rgb), 0.1);
|
|
193
|
-
border-color: var(--color-white);
|
|
194
|
-
}
|
|
195
|
-
.Button-module_default__gSx3e.Button-module_reversed__DT-Id[data-focus-visible]::after {
|
|
196
|
-
border-color: var(--color-blue-300);
|
|
197
|
-
}
|
|
198
|
-
.Button-module_default__gSx3e.Button-module_reversed__DT-Id[data-disabled]::after {
|
|
199
|
-
border-color: var(--color-gray-400);
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
.Button-module_small__S-t5B {
|
|
203
|
-
--button-min-height-width: 2.5rem;
|
|
204
|
-
--button-padding-x: calc(
|
|
205
|
-
var(--spacing-8) - var(--border-solid-border-width)
|
|
206
|
-
);
|
|
207
|
-
--button-padding-y: calc(
|
|
208
|
-
var(--spacing-8) - var(--border-solid-border-width)
|
|
209
|
-
);
|
|
210
|
-
--button-icon-size: var(--spacing-16);
|
|
211
|
-
gap: var(--spacing-8);
|
|
212
|
-
}
|
|
213
213
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
214
214
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
215
215
|
.OverlayArrow-module_overlayArrow__hoDyK {
|
|
@@ -1517,16 +1517,10 @@
|
|
|
1517
1517
|
line-height: 1;
|
|
1518
1518
|
}
|
|
1519
1519
|
.GenericButton-module_label__Z08Ax:not(:first-child) {
|
|
1520
|
-
margin-
|
|
1521
|
-
}
|
|
1522
|
-
.GenericButton-module_label__Z08Ax:not(:first-child)[dir=rtl], [dir=rtl] .GenericButton-module_label__Z08Ax:not(:first-child) {
|
|
1523
|
-
margin-right: 0.5em;
|
|
1520
|
+
margin-inline-start: 0.5em;
|
|
1524
1521
|
}
|
|
1525
1522
|
.GenericButton-module_label__Z08Ax:not(:last-child) {
|
|
1526
|
-
margin-
|
|
1527
|
-
}
|
|
1528
|
-
.GenericButton-module_label__Z08Ax:not(:last-child)[dir=rtl], [dir=rtl] .GenericButton-module_label__Z08Ax:not(:last-child) {
|
|
1529
|
-
margin-left: 0.5em;
|
|
1523
|
+
margin-inline-end: 0.5em;
|
|
1530
1524
|
}
|
|
1531
1525
|
|
|
1532
1526
|
.GenericButton-module_fullWidth__2MPO6 {
|
|
@@ -1550,10 +1544,7 @@
|
|
|
1550
1544
|
display: inherit;
|
|
1551
1545
|
}
|
|
1552
1546
|
.GenericButton-module_additionalContentWrapper__RwK-G:not(:last-child) {
|
|
1553
|
-
margin-
|
|
1554
|
-
}
|
|
1555
|
-
.GenericButton-module_additionalContentWrapper__RwK-G:not(:last-child)[dir=rtl], [dir=rtl] .GenericButton-module_additionalContentWrapper__RwK-G:not(:last-child) {
|
|
1556
|
-
margin-left: 0.5em;
|
|
1547
|
+
margin-inline-end: 0.5em;
|
|
1557
1548
|
}
|
|
1558
1549
|
|
|
1559
1550
|
.GenericButton-module_loadingSpinner__lbL3G svg {
|
|
@@ -2319,11 +2310,11 @@
|
|
|
2319
2310
|
/* stylelint-disable selector-no-vendor-prefix */
|
|
2320
2311
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
2321
2312
|
.Checkbox-module_checkbox__qJnwV.Checkbox-module_checkbox__qJnwV {
|
|
2322
|
-
opacity: 0%;
|
|
2323
|
-
position: absolute;
|
|
2324
2313
|
width: 24px;
|
|
2325
2314
|
height: 24px;
|
|
2326
2315
|
margin: 0;
|
|
2316
|
+
opacity: 0%;
|
|
2317
|
+
position: absolute;
|
|
2327
2318
|
}
|
|
2328
2319
|
.ideal-sans .Checkbox-module_checkbox__qJnwV.Checkbox-module_checkbox__qJnwV {
|
|
2329
2320
|
position: absolute;
|
|
@@ -3260,13 +3251,13 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs:focus-visible {
|
|
|
3260
3251
|
outline: 2px solid var(--color-blue-500, #0168b3);
|
|
3261
3252
|
}
|
|
3262
3253
|
input[type=range].InputRange-module_ratingScaleRange__gI-rs::-webkit-slider-runnable-track {
|
|
3254
|
+
margin: var(--spacing-sm, 0.75rem) 0;
|
|
3263
3255
|
width: auto;
|
|
3264
3256
|
height: 0;
|
|
3265
3257
|
box-sizing: border-box;
|
|
3266
3258
|
border-top: 1px solid var(--color-gray-500, #878792);
|
|
3267
3259
|
border-bottom: 2px solid var(--color-gray-500, #878792);
|
|
3268
3260
|
border-radius: 4px;
|
|
3269
|
-
margin: var(--spacing-sm, 0.75rem) 0;
|
|
3270
3261
|
}
|
|
3271
3262
|
input[type=range].InputRange-module_ratingScaleRange__gI-rs::-moz-range-track {
|
|
3272
3263
|
width: auto;
|
|
@@ -3277,14 +3268,14 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-moz-range-track {
|
|
|
3277
3268
|
border-radius: 4px;
|
|
3278
3269
|
}
|
|
3279
3270
|
input[type=range].InputRange-module_ratingScaleRange__gI-rs::-webkit-slider-thumb {
|
|
3271
|
+
-webkit-appearance: none;
|
|
3272
|
+
margin-top: calc(34px / 2 * -1);
|
|
3280
3273
|
box-sizing: content-box;
|
|
3281
3274
|
width: 26px;
|
|
3282
3275
|
height: 26px;
|
|
3283
3276
|
border: 4px solid var(--color-white, #ffffff);
|
|
3284
3277
|
border-radius: 100%;
|
|
3285
3278
|
background: var(--color-blue-500, #0168b3);
|
|
3286
|
-
-webkit-appearance: none;
|
|
3287
|
-
margin-top: calc(34px / 2 * -1);
|
|
3288
3279
|
}
|
|
3289
3280
|
input[type=range].InputRange-module_ratingScaleRange__gI-rs::-webkit-slider-thumb:not(:disabled) {
|
|
3290
3281
|
transition: all 0.2s;
|
|
@@ -4733,20 +4724,20 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
4733
4724
|
border: none;
|
|
4734
4725
|
-webkit-font-smoothing: antialiased;
|
|
4735
4726
|
-moz-osx-font-smoothing: grayscale;
|
|
4736
|
-
font-family: var(--typography-button-secondary-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
4737
|
-
font-weight: var(--typography-button-secondary-font-weight, 500);
|
|
4738
|
-
font-size: var(--typography-button-secondary-font-size, 1rem);
|
|
4739
|
-
line-height: var(--typography-button-secondary-line-height, 1.5rem);
|
|
4740
|
-
letter-spacing: var(--typography-button-secondary-letter-spacing, normal);
|
|
4741
4727
|
position: relative;
|
|
4742
|
-
|
|
4728
|
+
display: inline-flex;
|
|
4729
|
+
align-items: center;
|
|
4730
|
+
gap: var(--spacing-xs, 0.375rem);
|
|
4743
4731
|
border: var(--border-solid-border-width, 2px) var(--border-solid-border-style, solid);
|
|
4744
4732
|
border-color: var(--border-borderless-border-color, transparent);
|
|
4745
4733
|
border-radius: var(--border-solid-border-radius, 7px);
|
|
4746
4734
|
padding: var(--spacing-4, 0.25rem) var(--spacing-8, 0.5rem);
|
|
4747
|
-
|
|
4748
|
-
|
|
4749
|
-
|
|
4735
|
+
font-weight: var(--typography-button-secondary-font-weight, 500);
|
|
4736
|
+
font-family: var(--typography-button-secondary-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
4737
|
+
font-size: var(--typography-button-secondary-font-size, 1rem);
|
|
4738
|
+
line-height: var(--typography-button-secondary-line-height, 1.5rem);
|
|
4739
|
+
letter-spacing: var(--typography-button-secondary-letter-spacing, normal);
|
|
4740
|
+
color: var(--color-blue-500, #0168b3);
|
|
4750
4741
|
}
|
|
4751
4742
|
.SelectionControlButton-module_button__u-ysH:focus {
|
|
4752
4743
|
outline: none;
|
|
@@ -5645,16 +5636,16 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
5645
5636
|
}
|
|
5646
5637
|
|
|
5647
5638
|
.GenericNotification-module_cancel__c6wky {
|
|
5639
|
+
cursor: pointer;
|
|
5648
5640
|
appearance: none;
|
|
5649
|
-
|
|
5650
|
-
|
|
5651
|
-
font: inherit;
|
|
5641
|
+
transition: none;
|
|
5642
|
+
transform: none;
|
|
5652
5643
|
margin: 0;
|
|
5653
5644
|
padding: 0;
|
|
5654
|
-
|
|
5655
|
-
|
|
5645
|
+
border: none;
|
|
5646
|
+
background: transparent;
|
|
5647
|
+
font: inherit;
|
|
5656
5648
|
color: var(--color-purple-800, #2f2438);
|
|
5657
|
-
transform: none;
|
|
5658
5649
|
}
|
|
5659
5650
|
.GenericNotification-module_cancel__c6wky .GenericNotification-module_icon__SDb8v {
|
|
5660
5651
|
opacity: 70%;
|
|
@@ -6452,34 +6443,26 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
6452
6443
|
}
|
|
6453
6444
|
|
|
6454
6445
|
.GenericModal-module_backdropLayer__RNQ-U {
|
|
6455
|
-
top: 0;
|
|
6456
|
-
bottom: 0;
|
|
6457
|
-
right: 0;
|
|
6458
|
-
left: 0;
|
|
6459
6446
|
position: fixed;
|
|
6460
6447
|
background-color: #000;
|
|
6461
6448
|
opacity: 50%;
|
|
6462
6449
|
z-index: 1040;
|
|
6463
|
-
|
|
6464
|
-
|
|
6465
|
-
|
|
6466
|
-
|
|
6450
|
+
top: 0;
|
|
6451
|
+
bottom: 0;
|
|
6452
|
+
inset-inline-end: 0;
|
|
6453
|
+
inset-inline-start: 0;
|
|
6467
6454
|
}
|
|
6468
6455
|
|
|
6469
6456
|
.GenericModal-module_scrollLayer__A5VdY {
|
|
6470
|
-
top: 0;
|
|
6471
|
-
bottom: 0;
|
|
6472
|
-
right: 0;
|
|
6473
|
-
left: 0;
|
|
6474
6457
|
position: fixed;
|
|
6475
6458
|
display: flex;
|
|
6476
6459
|
align-items: center;
|
|
6477
6460
|
z-index: 1050;
|
|
6478
6461
|
overflow-y: auto;
|
|
6479
|
-
|
|
6480
|
-
|
|
6481
|
-
|
|
6482
|
-
|
|
6462
|
+
top: 0;
|
|
6463
|
+
bottom: 0;
|
|
6464
|
+
inset-inline-end: 0;
|
|
6465
|
+
inset-inline-start: 0;
|
|
6483
6466
|
}
|
|
6484
6467
|
|
|
6485
6468
|
.GenericModal-module_modalLayer__WfD1U {
|
|
@@ -6497,10 +6480,10 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
6497
6480
|
all the way to 1 with 200ms ("rapid" token), but is fine with
|
|
6498
6481
|
201ms, see Jira [KDS-523]
|
|
6499
6482
|
*/
|
|
6500
|
-
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
6501
|
-
animation-name: GenericModal-module_fade-0-to-0-5__-4t3h;
|
|
6502
6483
|
animation-duration: 201ms;
|
|
6503
6484
|
animation-fill-mode: forwards;
|
|
6485
|
+
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
6486
|
+
animation-name: GenericModal-module_fade-0-to-0-5__-4t3h;
|
|
6504
6487
|
}
|
|
6505
6488
|
@keyframes GenericModal-module_fade-0-to-0-5__-4t3h {
|
|
6506
6489
|
0% {
|
|
@@ -6511,11 +6494,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
6511
6494
|
}
|
|
6512
6495
|
}
|
|
6513
6496
|
.GenericModal-module_animatingEnter__P3wuk [data-modal] {
|
|
6514
|
-
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
6515
|
-
animation-name: GenericModal-module_custom-1__G0JT4;
|
|
6516
6497
|
animation-duration: var(--animation-duration-fast, 300ms);
|
|
6517
6498
|
animation-fill-mode: forwards;
|
|
6518
6499
|
animation-timing-function: var(--animation-easing-function-bounce-in, cubic-bezier(0.485, 0.155, 0.24, 1.245));
|
|
6500
|
+
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
6501
|
+
animation-name: GenericModal-module_custom-1__G0JT4;
|
|
6519
6502
|
}
|
|
6520
6503
|
@keyframes GenericModal-module_custom-1__G0JT4 {
|
|
6521
6504
|
0% {
|
|
@@ -6532,11 +6515,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
6532
6515
|
transition-duration: var(--animation-duration-rapid, 200ms);
|
|
6533
6516
|
}
|
|
6534
6517
|
.GenericModal-module_animatingLeave__rNkKX .GenericModal-module_backdropLayer__RNQ-U {
|
|
6535
|
-
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
6536
|
-
animation-name: GenericModal-module_fade-0-5-to-0__JkaSn;
|
|
6537
6518
|
animation-duration: var(--animation-duration-rapid, 200ms);
|
|
6538
6519
|
animation-fill-mode: forwards;
|
|
6539
|
-
|
|
6520
|
+
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
6521
|
+
animation-name: GenericModal-module_fade-0-5-to-0__JkaSn;
|
|
6522
|
+
}
|
|
6540
6523
|
@keyframes GenericModal-module_fade-0-5-to-0__JkaSn {
|
|
6541
6524
|
0% {
|
|
6542
6525
|
opacity: 0.5;
|
|
@@ -6546,11 +6529,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
6546
6529
|
}
|
|
6547
6530
|
}
|
|
6548
6531
|
.GenericModal-module_animatingLeave__rNkKX [data-modal] {
|
|
6549
|
-
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
6550
|
-
animation-name: GenericModal-module_custom-3__oWflS;
|
|
6551
6532
|
animation-duration: var(--animation-duration-rapid, 200ms);
|
|
6552
6533
|
animation-fill-mode: forwards;
|
|
6553
6534
|
animation-timing-function: var(--animation-easing-function-bounce-out, cubic-bezier(0.485, 0.155, 0.515, 0.845));
|
|
6535
|
+
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
6536
|
+
animation-name: GenericModal-module_custom-3__oWflS;
|
|
6554
6537
|
}
|
|
6555
6538
|
@keyframes GenericModal-module_custom-3__oWflS {
|
|
6556
6539
|
0% {
|
|
@@ -6679,15 +6662,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
6679
6662
|
*/
|
|
6680
6663
|
/* stylelint-enable scss/at-if-no-null, declaration-block-no-redundant-longhand-properties */
|
|
6681
6664
|
.ModalHeader-module_dismissButton__YhHZl {
|
|
6682
|
-
top: 0;
|
|
6683
|
-
right: 0;
|
|
6684
|
-
left: auto;
|
|
6685
6665
|
position: absolute;
|
|
6686
6666
|
z-index: 1060;
|
|
6687
|
-
|
|
6688
|
-
|
|
6689
|
-
|
|
6690
|
-
left: 0;
|
|
6667
|
+
top: 0;
|
|
6668
|
+
inset-inline-end: 0;
|
|
6669
|
+
inset-inline-start: auto;
|
|
6691
6670
|
}
|
|
6692
6671
|
|
|
6693
6672
|
.ModalHeader-module_layout__K8x4O {
|
|
@@ -6827,34 +6806,26 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
6827
6806
|
}
|
|
6828
6807
|
|
|
6829
6808
|
.ConfirmationModal-module_backdropLayer__wvXnl {
|
|
6830
|
-
top: 0;
|
|
6831
|
-
bottom: 0;
|
|
6832
|
-
right: 0;
|
|
6833
|
-
left: 0;
|
|
6834
6809
|
position: fixed;
|
|
6835
6810
|
background-color: #000;
|
|
6836
6811
|
opacity: 50%;
|
|
6837
6812
|
z-index: 1040;
|
|
6838
|
-
|
|
6839
|
-
|
|
6840
|
-
|
|
6841
|
-
|
|
6813
|
+
top: 0;
|
|
6814
|
+
bottom: 0;
|
|
6815
|
+
inset-inline-end: 0;
|
|
6816
|
+
inset-inline-start: 0;
|
|
6842
6817
|
}
|
|
6843
6818
|
|
|
6844
6819
|
.ConfirmationModal-module_scrollLayer__x-yP4 {
|
|
6845
|
-
top: 0;
|
|
6846
|
-
bottom: 0;
|
|
6847
|
-
right: 0;
|
|
6848
|
-
left: 0;
|
|
6849
6820
|
position: fixed;
|
|
6850
6821
|
display: flex;
|
|
6851
6822
|
align-items: center;
|
|
6852
6823
|
z-index: 1050;
|
|
6853
6824
|
overflow-y: auto;
|
|
6854
|
-
|
|
6855
|
-
|
|
6856
|
-
|
|
6857
|
-
|
|
6825
|
+
top: 0;
|
|
6826
|
+
bottom: 0;
|
|
6827
|
+
inset-inline-end: 0;
|
|
6828
|
+
inset-inline-start: 0;
|
|
6858
6829
|
}
|
|
6859
6830
|
|
|
6860
6831
|
.ConfirmationModal-module_modalLayer__MucTZ {
|
|
@@ -6898,10 +6869,10 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
6898
6869
|
all the way to 1 with 200ms ("rapid" token), but is fine with
|
|
6899
6870
|
201ms, see Jira [KDS-523]
|
|
6900
6871
|
*/
|
|
6901
|
-
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
6902
|
-
animation-name: ConfirmationModal-module_fade-0-to-0-5__353tZ;
|
|
6903
6872
|
animation-duration: 201ms;
|
|
6904
6873
|
animation-fill-mode: forwards;
|
|
6874
|
+
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
6875
|
+
animation-name: ConfirmationModal-module_fade-0-to-0-5__353tZ;
|
|
6905
6876
|
}
|
|
6906
6877
|
@keyframes ConfirmationModal-module_fade-0-to-0-5__353tZ {
|
|
6907
6878
|
0% {
|
|
@@ -6912,11 +6883,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
6912
6883
|
}
|
|
6913
6884
|
}
|
|
6914
6885
|
.ConfirmationModal-module_animatingEnter__4W4xh [data-modal] {
|
|
6915
|
-
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
6916
|
-
animation-name: ConfirmationModal-module_custom-1__Ibcy-;
|
|
6917
6886
|
animation-duration: var(--animation-duration-fast, 300ms);
|
|
6918
6887
|
animation-fill-mode: forwards;
|
|
6919
6888
|
animation-timing-function: var(--animation-easing-function-bounce-in, cubic-bezier(0.485, 0.155, 0.24, 1.245));
|
|
6889
|
+
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
6890
|
+
animation-name: ConfirmationModal-module_custom-1__Ibcy-;
|
|
6920
6891
|
}
|
|
6921
6892
|
@keyframes ConfirmationModal-module_custom-1__Ibcy- {
|
|
6922
6893
|
0% {
|
|
@@ -6933,10 +6904,10 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
6933
6904
|
transition-duration: var(--animation-duration-rapid, 200ms);
|
|
6934
6905
|
}
|
|
6935
6906
|
.ConfirmationModal-module_animatingLeave__n-S4X .ConfirmationModal-module_backdropLayer__wvXnl {
|
|
6936
|
-
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
6937
|
-
animation-name: ConfirmationModal-module_fade-0-5-to-0__pfhV-;
|
|
6938
6907
|
animation-duration: var(--animation-duration-rapid, 200ms);
|
|
6939
6908
|
animation-fill-mode: forwards;
|
|
6909
|
+
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
6910
|
+
animation-name: ConfirmationModal-module_fade-0-5-to-0__pfhV-;
|
|
6940
6911
|
}
|
|
6941
6912
|
@keyframes ConfirmationModal-module_fade-0-5-to-0__pfhV- {
|
|
6942
6913
|
0% {
|
|
@@ -6947,11 +6918,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
6947
6918
|
}
|
|
6948
6919
|
}
|
|
6949
6920
|
.ConfirmationModal-module_animatingLeave__n-S4X [data-modal] {
|
|
6950
|
-
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
6951
|
-
animation-name: ConfirmationModal-module_custom-3__MEO7v;
|
|
6952
6921
|
animation-duration: var(--animation-duration-rapid, 200ms);
|
|
6953
6922
|
animation-fill-mode: forwards;
|
|
6954
6923
|
animation-timing-function: var(--animation-easing-function-bounce-out, cubic-bezier(0.485, 0.155, 0.515, 0.845));
|
|
6924
|
+
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
6925
|
+
animation-name: ConfirmationModal-module_custom-3__MEO7v;
|
|
6955
6926
|
}
|
|
6956
6927
|
@keyframes ConfirmationModal-module_custom-3__MEO7v {
|
|
6957
6928
|
0% {
|
|
@@ -7190,34 +7161,26 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7190
7161
|
}
|
|
7191
7162
|
|
|
7192
7163
|
.ContextModal-module_backdropLayer__wuj3B {
|
|
7193
|
-
top: 0;
|
|
7194
|
-
bottom: 0;
|
|
7195
|
-
right: 0;
|
|
7196
|
-
left: 0;
|
|
7197
7164
|
position: fixed;
|
|
7198
7165
|
background-color: #000;
|
|
7199
7166
|
opacity: 50%;
|
|
7200
7167
|
z-index: 1040;
|
|
7201
|
-
|
|
7202
|
-
|
|
7203
|
-
|
|
7204
|
-
|
|
7168
|
+
top: 0;
|
|
7169
|
+
bottom: 0;
|
|
7170
|
+
inset-inline-end: 0;
|
|
7171
|
+
inset-inline-start: 0;
|
|
7205
7172
|
}
|
|
7206
7173
|
|
|
7207
7174
|
.ContextModal-module_scrollLayer__JANXA {
|
|
7208
|
-
top: 0;
|
|
7209
|
-
bottom: 0;
|
|
7210
|
-
right: 0;
|
|
7211
|
-
left: 0;
|
|
7212
7175
|
position: fixed;
|
|
7213
7176
|
display: flex;
|
|
7214
7177
|
align-items: center;
|
|
7215
7178
|
z-index: 1050;
|
|
7216
7179
|
overflow-y: auto;
|
|
7217
|
-
|
|
7218
|
-
|
|
7219
|
-
|
|
7220
|
-
|
|
7180
|
+
top: 0;
|
|
7181
|
+
bottom: 0;
|
|
7182
|
+
inset-inline-end: 0;
|
|
7183
|
+
inset-inline-start: 0;
|
|
7221
7184
|
}
|
|
7222
7185
|
|
|
7223
7186
|
.ContextModal-module_modalLayer__Cx6aX {
|
|
@@ -7261,10 +7224,10 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7261
7224
|
all the way to 1 with 200ms ("rapid" token), but is fine with
|
|
7262
7225
|
201ms, see Jira [KDS-523]
|
|
7263
7226
|
*/
|
|
7264
|
-
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7265
|
-
animation-name: ContextModal-module_fade-0-to-0-5__vZx9M;
|
|
7266
7227
|
animation-duration: 201ms;
|
|
7267
7228
|
animation-fill-mode: forwards;
|
|
7229
|
+
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7230
|
+
animation-name: ContextModal-module_fade-0-to-0-5__vZx9M;
|
|
7268
7231
|
}
|
|
7269
7232
|
@keyframes ContextModal-module_fade-0-to-0-5__vZx9M {
|
|
7270
7233
|
0% {
|
|
@@ -7275,11 +7238,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7275
7238
|
}
|
|
7276
7239
|
}
|
|
7277
7240
|
.ContextModal-module_animatingEnter__53BlF [data-modal] {
|
|
7278
|
-
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7279
|
-
animation-name: ContextModal-module_custom-1__be8sO;
|
|
7280
7241
|
animation-duration: var(--animation-duration-fast, 300ms);
|
|
7281
7242
|
animation-fill-mode: forwards;
|
|
7282
7243
|
animation-timing-function: var(--animation-easing-function-bounce-in, cubic-bezier(0.485, 0.155, 0.24, 1.245));
|
|
7244
|
+
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7245
|
+
animation-name: ContextModal-module_custom-1__be8sO;
|
|
7283
7246
|
}
|
|
7284
7247
|
@keyframes ContextModal-module_custom-1__be8sO {
|
|
7285
7248
|
0% {
|
|
@@ -7296,10 +7259,10 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7296
7259
|
transition-duration: var(--animation-duration-rapid, 200ms);
|
|
7297
7260
|
}
|
|
7298
7261
|
.ContextModal-module_animatingLeave__-JR11 .ContextModal-module_backdropLayer__wuj3B {
|
|
7299
|
-
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7300
|
-
animation-name: ContextModal-module_fade-0-5-to-0__R4eO-;
|
|
7301
7262
|
animation-duration: var(--animation-duration-rapid, 200ms);
|
|
7302
7263
|
animation-fill-mode: forwards;
|
|
7264
|
+
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7265
|
+
animation-name: ContextModal-module_fade-0-5-to-0__R4eO-;
|
|
7303
7266
|
}
|
|
7304
7267
|
@keyframes ContextModal-module_fade-0-5-to-0__R4eO- {
|
|
7305
7268
|
0% {
|
|
@@ -7310,11 +7273,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7310
7273
|
}
|
|
7311
7274
|
}
|
|
7312
7275
|
.ContextModal-module_animatingLeave__-JR11 [data-modal] {
|
|
7313
|
-
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7314
|
-
animation-name: ContextModal-module_custom-3__klp3m;
|
|
7315
7276
|
animation-duration: var(--animation-duration-rapid, 200ms);
|
|
7316
7277
|
animation-fill-mode: forwards;
|
|
7317
7278
|
animation-timing-function: var(--animation-easing-function-bounce-out, cubic-bezier(0.485, 0.155, 0.515, 0.845));
|
|
7279
|
+
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7280
|
+
animation-name: ContextModal-module_custom-3__klp3m;
|
|
7318
7281
|
}
|
|
7319
7282
|
@keyframes ContextModal-module_custom-3__klp3m {
|
|
7320
7283
|
0% {
|
|
@@ -7352,11 +7315,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7352
7315
|
}
|
|
7353
7316
|
}
|
|
7354
7317
|
.ContextModal-module_animatingEnter__53BlF .ContextModal-module_modal__wriV7 {
|
|
7355
|
-
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7356
|
-
animation-name: ContextModal-module_custom-5__deZpl;
|
|
7357
7318
|
animation-duration: var(--animation-duration-fast, 300ms);
|
|
7358
7319
|
animation-fill-mode: forwards;
|
|
7359
7320
|
animation-timing-function: var(--animation-easing-function-bounce-in, cubic-bezier(0.485, 0.155, 0.24, 1.245));
|
|
7321
|
+
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7322
|
+
animation-name: ContextModal-module_custom-5__deZpl;
|
|
7360
7323
|
}
|
|
7361
7324
|
@keyframes ContextModal-module_custom-5__deZpl {
|
|
7362
7325
|
0% {
|
|
@@ -7369,11 +7332,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7369
7332
|
}
|
|
7370
7333
|
}
|
|
7371
7334
|
.ContextModal-module_animatingLeave__-JR11 .ContextModal-module_modal__wriV7 {
|
|
7372
|
-
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7373
|
-
animation-name: ContextModal-module_custom-7__rPmP4;
|
|
7374
7335
|
animation-duration: var(--animation-duration-rapid, 200ms);
|
|
7375
7336
|
animation-fill-mode: forwards;
|
|
7376
7337
|
animation-timing-function: var(--animation-easing-function-bounce-out, cubic-bezier(0.485, 0.155, 0.515, 0.845));
|
|
7338
|
+
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7339
|
+
animation-name: ContextModal-module_custom-7__rPmP4;
|
|
7377
7340
|
}
|
|
7378
7341
|
@keyframes ContextModal-module_custom-7__rPmP4 {
|
|
7379
7342
|
0% {
|
|
@@ -7521,34 +7484,26 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7521
7484
|
}
|
|
7522
7485
|
|
|
7523
7486
|
.InputEditModal-module_backdropLayer__aVLSb {
|
|
7524
|
-
top: 0;
|
|
7525
|
-
bottom: 0;
|
|
7526
|
-
right: 0;
|
|
7527
|
-
left: 0;
|
|
7528
7487
|
position: fixed;
|
|
7529
7488
|
background-color: #000;
|
|
7530
7489
|
opacity: 50%;
|
|
7531
7490
|
z-index: 1040;
|
|
7532
|
-
|
|
7533
|
-
|
|
7534
|
-
|
|
7535
|
-
|
|
7491
|
+
top: 0;
|
|
7492
|
+
bottom: 0;
|
|
7493
|
+
inset-inline-end: 0;
|
|
7494
|
+
inset-inline-start: 0;
|
|
7536
7495
|
}
|
|
7537
7496
|
|
|
7538
7497
|
.InputEditModal-module_scrollLayer__isygg {
|
|
7539
|
-
top: 0;
|
|
7540
|
-
bottom: 0;
|
|
7541
|
-
right: 0;
|
|
7542
|
-
left: 0;
|
|
7543
7498
|
position: fixed;
|
|
7544
7499
|
display: flex;
|
|
7545
7500
|
align-items: center;
|
|
7546
7501
|
z-index: 1050;
|
|
7547
7502
|
overflow-y: auto;
|
|
7548
|
-
|
|
7549
|
-
|
|
7550
|
-
|
|
7551
|
-
|
|
7503
|
+
top: 0;
|
|
7504
|
+
bottom: 0;
|
|
7505
|
+
inset-inline-end: 0;
|
|
7506
|
+
inset-inline-start: 0;
|
|
7552
7507
|
}
|
|
7553
7508
|
|
|
7554
7509
|
.InputEditModal-module_modalLayer__r5vqj {
|
|
@@ -7592,10 +7547,10 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7592
7547
|
all the way to 1 with 200ms ("rapid" token), but is fine with
|
|
7593
7548
|
201ms, see Jira [KDS-523]
|
|
7594
7549
|
*/
|
|
7595
|
-
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7596
|
-
animation-name: InputEditModal-module_fade-0-to-0-5__ywvjR;
|
|
7597
7550
|
animation-duration: 201ms;
|
|
7598
7551
|
animation-fill-mode: forwards;
|
|
7552
|
+
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7553
|
+
animation-name: InputEditModal-module_fade-0-to-0-5__ywvjR;
|
|
7599
7554
|
}
|
|
7600
7555
|
@keyframes InputEditModal-module_fade-0-to-0-5__ywvjR {
|
|
7601
7556
|
0% {
|
|
@@ -7606,11 +7561,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7606
7561
|
}
|
|
7607
7562
|
}
|
|
7608
7563
|
.InputEditModal-module_animatingEnter__qZgX2 [data-modal] {
|
|
7609
|
-
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7610
|
-
animation-name: InputEditModal-module_custom-1__wSZX6;
|
|
7611
7564
|
animation-duration: var(--animation-duration-fast, 300ms);
|
|
7612
7565
|
animation-fill-mode: forwards;
|
|
7613
7566
|
animation-timing-function: var(--animation-easing-function-bounce-in, cubic-bezier(0.485, 0.155, 0.24, 1.245));
|
|
7567
|
+
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7568
|
+
animation-name: InputEditModal-module_custom-1__wSZX6;
|
|
7614
7569
|
}
|
|
7615
7570
|
@keyframes InputEditModal-module_custom-1__wSZX6 {
|
|
7616
7571
|
0% {
|
|
@@ -7627,10 +7582,10 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7627
7582
|
transition-duration: var(--animation-duration-rapid, 200ms);
|
|
7628
7583
|
}
|
|
7629
7584
|
.InputEditModal-module_animatingLeave__S2HGz .InputEditModal-module_backdropLayer__aVLSb {
|
|
7630
|
-
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7631
|
-
animation-name: InputEditModal-module_fade-0-5-to-0__s2WmG;
|
|
7632
7585
|
animation-duration: var(--animation-duration-rapid, 200ms);
|
|
7633
7586
|
animation-fill-mode: forwards;
|
|
7587
|
+
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7588
|
+
animation-name: InputEditModal-module_fade-0-5-to-0__s2WmG;
|
|
7634
7589
|
}
|
|
7635
7590
|
@keyframes InputEditModal-module_fade-0-5-to-0__s2WmG {
|
|
7636
7591
|
0% {
|
|
@@ -7641,11 +7596,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7641
7596
|
}
|
|
7642
7597
|
}
|
|
7643
7598
|
.InputEditModal-module_animatingLeave__S2HGz [data-modal] {
|
|
7644
|
-
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7645
|
-
animation-name: InputEditModal-module_custom-3__T3riv;
|
|
7646
7599
|
animation-duration: var(--animation-duration-rapid, 200ms);
|
|
7647
7600
|
animation-fill-mode: forwards;
|
|
7648
7601
|
animation-timing-function: var(--animation-easing-function-bounce-out, cubic-bezier(0.485, 0.155, 0.515, 0.845));
|
|
7602
|
+
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7603
|
+
animation-name: InputEditModal-module_custom-3__T3riv;
|
|
7649
7604
|
}
|
|
7650
7605
|
@keyframes InputEditModal-module_custom-3__T3riv {
|
|
7651
7606
|
0% {
|
|
@@ -7678,11 +7633,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7678
7633
|
max-width: 600px;
|
|
7679
7634
|
}
|
|
7680
7635
|
.InputEditModal-module_animatingEnter__qZgX2 .InputEditModal-module_modal__SbQqp {
|
|
7681
|
-
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7682
|
-
animation-name: InputEditModal-module_custom-5__trORr;
|
|
7683
7636
|
animation-duration: var(--animation-duration-fast, 300ms);
|
|
7684
7637
|
animation-fill-mode: forwards;
|
|
7685
7638
|
animation-timing-function: var(--animation-easing-function-bounce-in, cubic-bezier(0.485, 0.155, 0.24, 1.245));
|
|
7639
|
+
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7640
|
+
animation-name: InputEditModal-module_custom-5__trORr;
|
|
7686
7641
|
}
|
|
7687
7642
|
@keyframes InputEditModal-module_custom-5__trORr {
|
|
7688
7643
|
0% {
|
|
@@ -7695,11 +7650,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
7695
7650
|
}
|
|
7696
7651
|
}
|
|
7697
7652
|
.InputEditModal-module_animatingLeave__S2HGz .InputEditModal-module_modal__SbQqp {
|
|
7698
|
-
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7699
|
-
animation-name: InputEditModal-module_custom-7__-98CZ;
|
|
7700
7653
|
animation-duration: var(--animation-duration-rapid, 200ms);
|
|
7701
7654
|
animation-fill-mode: forwards;
|
|
7702
7655
|
animation-timing-function: var(--animation-easing-function-bounce-out, cubic-bezier(0.485, 0.155, 0.515, 0.845));
|
|
7656
|
+
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
7657
|
+
animation-name: InputEditModal-module_custom-7__-98CZ;
|
|
7703
7658
|
}
|
|
7704
7659
|
@keyframes InputEditModal-module_custom-7__-98CZ {
|
|
7705
7660
|
0% {
|
|
@@ -8646,7 +8601,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
8646
8601
|
inset: calc(-1 * calc(var(--border-focus-ring-border-width, 2px) * 2 + 1px));
|
|
8647
8602
|
z-index: 1;
|
|
8648
8603
|
}
|
|
8649
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8650
8604
|
/* stylelint-disable */
|
|
8651
8605
|
/* stylelint-enable */
|
|
8652
8606
|
/* prettier-ignore */
|
|
@@ -8683,70 +8637,16 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
8683
8637
|
/* prettier-ignore */
|
|
8684
8638
|
/* prettier-ignore */
|
|
8685
8639
|
/* prettier-ignore */
|
|
8686
|
-
/* stylelint-disable scss/at-if-no-null, declaration-block-no-redundant-longhand-properties */
|
|
8687
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8688
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8689
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8690
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8691
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8692
|
-
/* 16px */
|
|
8693
|
-
/* 16px */
|
|
8694
|
-
/* 16px */
|
|
8695
|
-
/*
|
|
8696
|
-
Because these components are deprecated, we've kept any inline/non-token values as values from the Zen theme to prevent any style regressions,
|
|
8697
|
-
as this is what consumers would have expected when pulling them in a the time.
|
|
8698
|
-
*/
|
|
8699
|
-
/* stylelint-enable scss/at-if-no-null, declaration-block-no-redundant-longhand-properties */
|
|
8700
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8701
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8702
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8703
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8704
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8705
|
-
/* 16px */
|
|
8706
|
-
/* 16px */
|
|
8707
|
-
/* 16px */
|
|
8708
|
-
/*
|
|
8709
|
-
Because these components are deprecated, we've kept any inline/non-token values as values from the Zen theme to prevent any style regressions,
|
|
8710
|
-
as this is what consumers would have expected when pulling them in a the time.
|
|
8711
|
-
*/
|
|
8712
8640
|
.TextField-module_input__CEokl {
|
|
8713
|
-
margin-top: var(--spacing-6
|
|
8641
|
+
margin-top: var(--spacing-6);
|
|
8714
8642
|
}
|
|
8715
8643
|
|
|
8716
|
-
.TextField-
|
|
8717
|
-
color: var(--
|
|
8718
|
-
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
8719
|
-
animation-name: TextField-module_fade-0-to-1__Ac-99;
|
|
8644
|
+
.TextField-module_icon__wFK4Q {
|
|
8645
|
+
color: var(--textfield-icon-color);
|
|
8720
8646
|
animation-duration: var(--animation-duration-slow, 400ms);
|
|
8721
8647
|
animation-fill-mode: forwards;
|
|
8722
|
-
}
|
|
8723
|
-
.TextField-module_withReversed__agi-Q .TextField-module_success__pMLcV {
|
|
8724
|
-
color: var(--color-green-400, #5dcaad);
|
|
8725
|
-
}
|
|
8726
|
-
@keyframes TextField-module_fade-0-to-1__Ac-99 {
|
|
8727
|
-
0% {
|
|
8728
|
-
opacity: 0;
|
|
8729
|
-
}
|
|
8730
|
-
100% {
|
|
8731
|
-
opacity: 1;
|
|
8732
|
-
}
|
|
8733
|
-
}
|
|
8734
|
-
.TextField-module_success__pMLcV.TextField-module_disabled__gS8tk {
|
|
8735
|
-
color: rgba(var(--color-green-500-rgb, 63, 154, 134), 0.3);
|
|
8736
|
-
}
|
|
8737
|
-
.TextField-module_withReversed__agi-Q .TextField-module_success__pMLcV.TextField-module_disabled__gS8tk {
|
|
8738
|
-
color: rgba(var(--color-green-400-rgb, 93, 202, 173), 0.3);
|
|
8739
|
-
}
|
|
8740
|
-
|
|
8741
|
-
.TextField-module_error__7S-f2 {
|
|
8742
|
-
color: var(--color-red-100, #fdeaee);
|
|
8743
8648
|
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
8744
8649
|
animation-name: TextField-module_fade-0-to-1__Ac-99;
|
|
8745
|
-
animation-duration: var(--animation-duration-slow, 400ms);
|
|
8746
|
-
animation-fill-mode: forwards;
|
|
8747
|
-
}
|
|
8748
|
-
.TextField-module_withReversed__agi-Q .TextField-module_error__7S-f2 {
|
|
8749
|
-
color: var(--color-purple-700, #4a234d);
|
|
8750
8650
|
}
|
|
8751
8651
|
@keyframes TextField-module_fade-0-to-1__Ac-99 {
|
|
8752
8652
|
0% {
|
|
@@ -8757,26 +8657,14 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
8757
8657
|
}
|
|
8758
8658
|
}
|
|
8759
8659
|
|
|
8760
|
-
.TextField-
|
|
8761
|
-
color: var(--color-
|
|
8762
|
-
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
8763
|
-
animation-name: TextField-module_fade-0-to-1__Ac-99;
|
|
8764
|
-
animation-duration: var(--animation-duration-slow, 400ms);
|
|
8765
|
-
animation-fill-mode: forwards;
|
|
8766
|
-
}
|
|
8767
|
-
.TextField-module_withReversed__agi-Q .TextField-module_caution__3gzHk {
|
|
8768
|
-
color: var(--color-purple-700, #4a234d);
|
|
8660
|
+
.TextField-module_success__pMLcV {
|
|
8661
|
+
--textfield-icon-color: var(--color-green-500);
|
|
8769
8662
|
}
|
|
8770
|
-
|
|
8771
|
-
|
|
8772
|
-
opacity: 0;
|
|
8773
|
-
}
|
|
8774
|
-
100% {
|
|
8775
|
-
opacity: 1;
|
|
8776
|
-
}
|
|
8663
|
+
.TextField-module_reversed__qW9r1 .TextField-module_success__pMLcV {
|
|
8664
|
+
--textfield-icon-color: var(--color-green-400);
|
|
8777
8665
|
}
|
|
8778
8666
|
|
|
8779
|
-
.TextField-
|
|
8667
|
+
.TextField-module_disabled__gS8tk {
|
|
8780
8668
|
opacity: 0.3;
|
|
8781
8669
|
}
|
|
8782
8670
|
.LinkModal-module_validationErrorMessage__APw4U ul {
|
|
@@ -8934,6 +8822,10 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
8934
8822
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8935
8823
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
8936
8824
|
.RichTextEditor-module_editor__pVKqW > .ProseMirror {
|
|
8825
|
+
border-radius: var(--border-solid-border-radius, 7px);
|
|
8826
|
+
padding: var(--spacing-sm, 0.75rem) calc(var(--spacing-xs, 0.375rem) * 3);
|
|
8827
|
+
position: relative;
|
|
8828
|
+
transition: background-color var(--animation-duration-immediate, 100ms), border-color var(--animation-duration-immediate, 100ms);
|
|
8937
8829
|
font-family: var(--typography-paragraph-body-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
8938
8830
|
font-weight: var(--typography-paragraph-body-font-weight, 400);
|
|
8939
8831
|
font-size: var(--typography-paragraph-body-font-size, 1rem);
|
|
@@ -8943,10 +8835,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
8943
8835
|
white-space: pre-wrap;
|
|
8944
8836
|
box-sizing: content-box;
|
|
8945
8837
|
color: var(--color-purple-800, #2f2438);
|
|
8946
|
-
border-radius: var(--border-solid-border-radius, 7px);
|
|
8947
|
-
padding: var(--spacing-sm, 0.75rem) calc(var(--spacing-xs, 0.375rem) * 3);
|
|
8948
|
-
position: relative;
|
|
8949
|
-
transition: background-color var(--animation-duration-immediate, 100ms), border-color var(--animation-duration-immediate, 100ms);
|
|
8950
8838
|
}
|
|
8951
8839
|
.RichTextEditor-module_editor__pVKqW > .ProseMirror > p {
|
|
8952
8840
|
margin: 0 0 var(--spacing-16, 1rem);
|
|
@@ -10054,13 +9942,13 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
10054
9942
|
padding: 0;
|
|
10055
9943
|
transition: none;
|
|
10056
9944
|
outline: none;
|
|
10057
|
-
background: var(--color-white, #ffffff);
|
|
10058
|
-
border: solid 1px rgba(var(--color-purple-700-rgb, 74, 35, 77), 0.1);
|
|
10059
|
-
transition: box-shadow var(--animation-duration-rapid, 200ms), border-color var(--animation-duration-rapid, 200ms), margin var(--animation-duration-rapid, 200ms), padding var(--animation-duration-rapid, 200ms), width var(--animation-duration-rapid, 200ms);
|
|
10060
|
-
box-shadow: 0 4px 6px rgba(53, 55, 74, 0.04);
|
|
10061
9945
|
text-decoration: none;
|
|
10062
9946
|
color: var(--color-purple-800, #2f2438);
|
|
10063
9947
|
display: block;
|
|
9948
|
+
box-shadow: 0 4px 6px rgba(53, 55, 74, 0.04);
|
|
9949
|
+
border: solid 1px rgba(var(--color-purple-700-rgb, 74, 35, 77), 0.1);
|
|
9950
|
+
transition: box-shadow var(--animation-duration-rapid, 200ms), border-color var(--animation-duration-rapid, 200ms), margin var(--animation-duration-rapid, 200ms), padding var(--animation-duration-rapid, 200ms), width var(--animation-duration-rapid, 200ms);
|
|
9951
|
+
background: var(--color-white, #ffffff);
|
|
10064
9952
|
}
|
|
10065
9953
|
.Table-module_card__RGyjC:hover, .Table-module_card__RGyjC:active, .Table-module_card__RGyjC:focus {
|
|
10066
9954
|
text-decoration: none;
|
|
@@ -10155,9 +10043,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
10155
10043
|
display: flex;
|
|
10156
10044
|
align-items: center;
|
|
10157
10045
|
}
|
|
10158
|
-
.Table-module_rowCell__A5-2R:hover, .Table-module_rowCell__A5-2R:active, .Table-module_rowCell__A5-2R:focus {
|
|
10159
|
-
text-decoration: none;
|
|
10160
|
-
}
|
|
10161
10046
|
.Table-module_defaultSpacing__zq1Ci .Table-module_rowCell__A5-2R {
|
|
10162
10047
|
padding: var(--spacing-sm, 0.75rem) var(--spacing-md, 1.5rem);
|
|
10163
10048
|
}
|
|
@@ -10602,14 +10487,14 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
10602
10487
|
}
|
|
10603
10488
|
|
|
10604
10489
|
.GenericTile-module_tile__mgFhk {
|
|
10490
|
+
position: relative;
|
|
10605
10491
|
width: 330px;
|
|
10606
10492
|
height: 370px;
|
|
10607
|
-
position: relative;
|
|
10608
|
-
box-shadow: var(--shadow-small-box-shadow, 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 3px 16px 0 rgba(0, 0, 0, 0.06));
|
|
10609
|
-
background-color: var(--color-white, #ffffff);
|
|
10610
10493
|
transition: transform var(--animation-duration-slow, 400ms) var(--animation-easing-function-ease-in-out, cubic-bezier(0.455, 0.03, 0.515, 0.955));
|
|
10611
10494
|
transform-style: preserve-3d;
|
|
10495
|
+
box-shadow: var(--shadow-small-box-shadow, 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 3px 16px 0 rgba(0, 0, 0, 0.06));
|
|
10612
10496
|
border-radius: 7px;
|
|
10497
|
+
background-color: var(--color-white, #ffffff);
|
|
10613
10498
|
}
|
|
10614
10499
|
[data-tile-grid] .GenericTile-module_tile__mgFhk {
|
|
10615
10500
|
width: auto;
|
|
@@ -10991,42 +10876,26 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
10991
10876
|
margin: 0;
|
|
10992
10877
|
}
|
|
10993
10878
|
.Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:first-of-type {
|
|
10994
|
-
margin-
|
|
10995
|
-
margin-
|
|
10996
|
-
}
|
|
10997
|
-
.Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:first-of-type[dir=rtl], [dir=rtl] .Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:first-of-type {
|
|
10998
|
-
margin-right: 0;
|
|
10999
|
-
margin-left: calc(1.5rem / 4);
|
|
10879
|
+
margin-inline-end: calc(1.5rem / 4);
|
|
10880
|
+
margin-inline-start: 0;
|
|
11000
10881
|
}
|
|
11001
10882
|
@media (max-width: 1023px) {
|
|
11002
10883
|
.Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:first-of-type {
|
|
11003
|
-
margin-
|
|
11004
|
-
margin-
|
|
11005
|
-
}
|
|
11006
|
-
.Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:first-of-type[dir=rtl], [dir=rtl] .Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:first-of-type {
|
|
11007
|
-
margin-right: 0;
|
|
11008
|
-
margin-left: calc(1.5rem / 8);
|
|
10884
|
+
margin-inline-end: calc(1.5rem / 8);
|
|
10885
|
+
margin-inline-start: 0;
|
|
11009
10886
|
}
|
|
11010
10887
|
}
|
|
11011
10888
|
.Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:first-of-type.Toolbar-module_noGap__4mNlF {
|
|
11012
10889
|
margin: 0;
|
|
11013
10890
|
}
|
|
11014
10891
|
.Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:last-of-type {
|
|
11015
|
-
margin-
|
|
11016
|
-
margin-
|
|
11017
|
-
}
|
|
11018
|
-
.Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:last-of-type[dir=rtl], [dir=rtl] .Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:last-of-type {
|
|
11019
|
-
margin-right: calc(1.5rem / 4);
|
|
11020
|
-
margin-left: 0;
|
|
10892
|
+
margin-inline-end: 0;
|
|
10893
|
+
margin-inline-start: calc(1.5rem / 4);
|
|
11021
10894
|
}
|
|
11022
10895
|
@media (max-width: 1023px) {
|
|
11023
10896
|
.Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:last-of-type {
|
|
11024
|
-
margin-
|
|
11025
|
-
margin-
|
|
11026
|
-
}
|
|
11027
|
-
.Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:last-of-type[dir=rtl], [dir=rtl] .Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:last-of-type {
|
|
11028
|
-
margin-right: calc(1.5rem / 8);
|
|
11029
|
-
margin-left: 0;
|
|
10897
|
+
margin-inline-end: 0;
|
|
10898
|
+
margin-inline-start: calc(1.5rem / 8);
|
|
11030
10899
|
}
|
|
11031
10900
|
}
|
|
11032
10901
|
.Toolbar-module_toolbar__yhogJ .Toolbar-module_toolbarItem__eekUL:last-of-type.Toolbar-module_noGap__4mNlF {
|
|
@@ -11053,12 +10922,8 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
11053
10922
|
justify-content: flex-end;
|
|
11054
10923
|
flex-grow: 1;
|
|
11055
10924
|
flex-shrink: 0;
|
|
11056
|
-
margin-
|
|
11057
|
-
margin-
|
|
11058
|
-
}
|
|
11059
|
-
.MainActions-module_mainActionsContainer__wN117[dir=rtl], [dir=rtl] .MainActions-module_mainActionsContainer__wN117 {
|
|
11060
|
-
margin-right: calc(1.5rem / 2);
|
|
11061
|
-
margin-left: 0;
|
|
10925
|
+
margin-inline-end: 0;
|
|
10926
|
+
margin-inline-start: calc(1.5rem / 2);
|
|
11062
10927
|
}
|
|
11063
10928
|
@media (max-width: 767px) {
|
|
11064
10929
|
.MainActions-module_mainActionsContainer__wN117 {
|
|
@@ -11138,25 +11003,15 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
11138
11003
|
display: flex;
|
|
11139
11004
|
justify-content: center;
|
|
11140
11005
|
align-items: center;
|
|
11141
|
-
margin-
|
|
11142
|
-
margin-
|
|
11143
|
-
}
|
|
11144
|
-
.MobileActions-module_drawerHandleIcon__z-Hp-[dir=rtl], [dir=rtl] .MobileActions-module_drawerHandleIcon__z-Hp- {
|
|
11145
|
-
margin-right: 0;
|
|
11146
|
-
margin-left: calc(1.5rem / 2);
|
|
11006
|
+
margin-inline-end: calc(1.5rem / 2);
|
|
11007
|
+
margin-inline-start: 0;
|
|
11147
11008
|
}
|
|
11148
11009
|
.MobileActions-module_drawerHandleLabelText__UDIFl + .MobileActions-module_drawerHandleIcon__z-Hp- {
|
|
11149
|
-
margin-
|
|
11150
|
-
margin-
|
|
11151
|
-
}
|
|
11152
|
-
.MobileActions-module_drawerHandleLabelText__UDIFl + .MobileActions-module_drawerHandleIcon__z-Hp-[dir=rtl], [dir=rtl] .MobileActions-module_drawerHandleLabelText__UDIFl + .MobileActions-module_drawerHandleIcon__z-Hp- {
|
|
11153
|
-
margin-right: calc(1.5rem / 2);
|
|
11154
|
-
margin-left: 0;
|
|
11010
|
+
margin-inline-end: 0;
|
|
11011
|
+
margin-inline-start: calc(1.5rem / 2);
|
|
11155
11012
|
}
|
|
11156
11013
|
|
|
11157
11014
|
.MobileActions-module_mobileActionsPrimaryLabel__y-kgB {
|
|
11158
|
-
padding-right: 0;
|
|
11159
|
-
padding-left: 1.125rem;
|
|
11160
11015
|
text-align: left;
|
|
11161
11016
|
text-decoration: none;
|
|
11162
11017
|
color: var(--color-white, #ffffff);
|
|
@@ -11165,10 +11020,8 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
11165
11020
|
font-size: var(--typography-button-primary-font-size, 1.125rem);
|
|
11166
11021
|
line-height: var(--typography-button-primary-line-height, 1.5rem);
|
|
11167
11022
|
letter-spacing: var(--typography-button-primary-letter-spacing, normal);
|
|
11168
|
-
|
|
11169
|
-
|
|
11170
|
-
padding-right: 1.125rem;
|
|
11171
|
-
padding-left: 0;
|
|
11023
|
+
padding-inline-end: 0;
|
|
11024
|
+
padding-inline-start: 1.125rem;
|
|
11172
11025
|
}
|
|
11173
11026
|
|
|
11174
11027
|
.MobileActions-module_mobileActionsPrimaryButton__5Ggbi,
|
|
@@ -11259,12 +11112,8 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
11259
11112
|
align-items: center;
|
|
11260
11113
|
height: 100%;
|
|
11261
11114
|
position: absolute;
|
|
11262
|
-
|
|
11263
|
-
|
|
11264
|
-
}
|
|
11265
|
-
.MobileActions-module_mobileActionsChevronSquare__u4OYT[dir=rtl], [dir=rtl] .MobileActions-module_mobileActionsChevronSquare__u4OYT {
|
|
11266
|
-
right: auto;
|
|
11267
|
-
left: 20px;
|
|
11115
|
+
inset-inline-end: 20px;
|
|
11116
|
+
inset-inline-start: auto;
|
|
11268
11117
|
}
|
|
11269
11118
|
|
|
11270
11119
|
@keyframes MobileActions-module_slide-up__vX8Ad {
|
|
@@ -11467,12 +11316,8 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
11467
11316
|
overflow: hidden;
|
|
11468
11317
|
height: 3rem;
|
|
11469
11318
|
width: 3rem;
|
|
11470
|
-
margin-
|
|
11471
|
-
margin-
|
|
11472
|
-
}
|
|
11473
|
-
.TitleBlockZen-module_avatar__CHWTd[dir=rtl], [dir=rtl] .TitleBlockZen-module_avatar__CHWTd {
|
|
11474
|
-
margin-right: 0;
|
|
11475
|
-
margin-left: calc(1.5rem / 2);
|
|
11319
|
+
margin-inline-end: calc(1.5rem / 2);
|
|
11320
|
+
margin-inline-start: 0;
|
|
11476
11321
|
}
|
|
11477
11322
|
.TitleBlockZen-module_avatar__CHWTd > * {
|
|
11478
11323
|
max-width: 100%;
|
|
@@ -11492,12 +11337,8 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
11492
11337
|
|
|
11493
11338
|
.TitleBlockZen-module_hamburger__VFufP {
|
|
11494
11339
|
display: none;
|
|
11495
|
-
margin-
|
|
11496
|
-
margin-
|
|
11497
|
-
}
|
|
11498
|
-
.TitleBlockZen-module_hamburger__VFufP[dir=rtl], [dir=rtl] .TitleBlockZen-module_hamburger__VFufP {
|
|
11499
|
-
margin-right: 0;
|
|
11500
|
-
margin-left: var(--spacing-xs, 0.375rem);
|
|
11340
|
+
margin-inline-end: var(--spacing-xs, 0.375rem);
|
|
11341
|
+
margin-inline-start: 0;
|
|
11501
11342
|
}
|
|
11502
11343
|
@media (max-width: calc(1080px - 1px)) {
|
|
11503
11344
|
.TitleBlockZen-module_hamburger__VFufP {
|
|
@@ -11516,16 +11357,11 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
11516
11357
|
line-height: var(--typography-paragraph-small-line-height, 1.125rem);
|
|
11517
11358
|
letter-spacing: var(--typography-paragraph-small-letter-spacing, normal);
|
|
11518
11359
|
max-width: 230px;
|
|
11519
|
-
margin-
|
|
11520
|
-
margin-left: calc(1.5rem / 2);
|
|
11360
|
+
margin-inline: var(--spacing-12) 0;
|
|
11521
11361
|
}
|
|
11522
11362
|
.TitleBlockZen-module_adminVariant__vvIrj .TitleBlockZen-module_subtitle__OD-d5 {
|
|
11523
11363
|
color: var(--color-purple-800, #2f2438);
|
|
11524
11364
|
}
|
|
11525
|
-
.TitleBlockZen-module_subtitle__OD-d5[dir=rtl], [dir=rtl] .TitleBlockZen-module_subtitle__OD-d5 {
|
|
11526
|
-
margin-right: calc(1.5rem / 2);
|
|
11527
|
-
margin-left: 0;
|
|
11528
|
-
}
|
|
11529
11365
|
@media (max-width: 1365px) {
|
|
11530
11366
|
.TitleBlockZen-module_subtitle__OD-d5 {
|
|
11531
11367
|
white-space: nowrap;
|
|
@@ -11563,18 +11399,13 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
11563
11399
|
|
|
11564
11400
|
.TitleBlockZen-module_sectionTitleOverride__GDHqp.TitleBlockZen-module_sectionTitleOverride__GDHqp {
|
|
11565
11401
|
white-space: nowrap;
|
|
11566
|
-
margin-
|
|
11567
|
-
margin-left: 0;
|
|
11402
|
+
margin-inline: 0 var(--spacing-24);
|
|
11568
11403
|
font-family: var(--typography-heading-2-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
11569
11404
|
font-weight: var(--typography-heading-2-font-weight, 600);
|
|
11570
11405
|
font-size: var(--typography-heading-2-font-size, 1.75rem);
|
|
11571
11406
|
line-height: var(--typography-heading-2-line-height, 2.25rem);
|
|
11572
11407
|
letter-spacing: var(--typography-heading-2-letter-spacing, normal);
|
|
11573
11408
|
}
|
|
11574
|
-
.TitleBlockZen-module_sectionTitleOverride__GDHqp.TitleBlockZen-module_sectionTitleOverride__GDHqp[dir=rtl], [dir=rtl] .TitleBlockZen-module_sectionTitleOverride__GDHqp.TitleBlockZen-module_sectionTitleOverride__GDHqp {
|
|
11575
|
-
margin-right: 0;
|
|
11576
|
-
margin-left: 1.5rem;
|
|
11577
|
-
}
|
|
11578
11409
|
@media (max-width: 1644px) {
|
|
11579
11410
|
.TitleBlockZen-module_sectionTitleOverride__GDHqp.TitleBlockZen-module_sectionTitleOverride__GDHqp {
|
|
11580
11411
|
font-family: var(--typography-heading-3-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
@@ -11608,7 +11439,7 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
11608
11439
|
letter-spacing: var(--typography-paragraph-small-letter-spacing, normal);
|
|
11609
11440
|
}
|
|
11610
11441
|
.TitleBlockZen-module_sectionTitle__Le5YQ + .TitleBlockZen-module_sectionTitleDescription__mIl-A {
|
|
11611
|
-
margin-top:
|
|
11442
|
+
margin-top: var(--spacing-6);
|
|
11612
11443
|
}
|
|
11613
11444
|
.TitleBlockZen-module_sectionTitleDescription__mIl-A.TitleBlockZen-module_dark__Y-v1Z {
|
|
11614
11445
|
color: rgba(var(--color-purple-800-rgb, 47, 36, 56), 0.7);
|
|
@@ -11637,14 +11468,9 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
11637
11468
|
}
|
|
11638
11469
|
|
|
11639
11470
|
.TitleBlockZen-module_tag__mWbbU {
|
|
11640
|
-
margin-right: 0;
|
|
11641
|
-
margin-left: calc(1.5rem / 2);
|
|
11642
11471
|
display: flex;
|
|
11643
11472
|
align-items: center;
|
|
11644
|
-
|
|
11645
|
-
.TitleBlockZen-module_tag__mWbbU[dir=rtl], [dir=rtl] .TitleBlockZen-module_tag__mWbbU {
|
|
11646
|
-
margin-right: calc(1.5rem / 2);
|
|
11647
|
-
margin-left: 0;
|
|
11473
|
+
margin-inline: var(--spacing-12) 0;
|
|
11648
11474
|
}
|
|
11649
11475
|
@media (max-width: calc(1080px - 1px)) {
|
|
11650
11476
|
.TitleBlockZen-module_tag__mWbbU {
|
|
@@ -11652,28 +11478,18 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
11652
11478
|
}
|
|
11653
11479
|
}
|
|
11654
11480
|
.TitleBlockZen-module_tag__mWbbU + .TitleBlockZen-module_pageSwitcherSelectNextToTitle__CPnE3 {
|
|
11655
|
-
margin-
|
|
11656
|
-
margin-left: 0;
|
|
11657
|
-
}
|
|
11658
|
-
.TitleBlockZen-module_tag__mWbbU + .TitleBlockZen-module_pageSwitcherSelectNextToTitle__CPnE3[dir=rtl], [dir=rtl] .TitleBlockZen-module_tag__mWbbU + .TitleBlockZen-module_pageSwitcherSelectNextToTitle__CPnE3 {
|
|
11659
|
-
margin-right: 0;
|
|
11660
|
-
margin-left: 0;
|
|
11481
|
+
margin-inline-start: 0;
|
|
11661
11482
|
}
|
|
11662
11483
|
|
|
11663
11484
|
.TitleBlockZen-module_pageSwitcherSelectNextToTitle__CPnE3 {
|
|
11664
|
-
margin-right: 0;
|
|
11665
|
-
margin-left: calc(1.5rem / 2);
|
|
11666
11485
|
flex-shrink: 0;
|
|
11667
|
-
width:
|
|
11668
|
-
|
|
11669
|
-
.TitleBlockZen-module_pageSwitcherSelectNextToTitle__CPnE3[dir=rtl], [dir=rtl] .TitleBlockZen-module_pageSwitcherSelectNextToTitle__CPnE3 {
|
|
11670
|
-
margin-right: calc(1.5rem / 2);
|
|
11671
|
-
margin-left: 0;
|
|
11486
|
+
width: var(--spacing-240);
|
|
11487
|
+
margin-inline: var(--spacing-12) 0;
|
|
11672
11488
|
}
|
|
11673
11489
|
|
|
11674
11490
|
.TitleBlockZen-module_pageSwitcherSelectUnderneathTitle__MRZI2 {
|
|
11675
11491
|
flex-shrink: 0;
|
|
11676
|
-
max-width:
|
|
11492
|
+
max-width: var(--spacing-240);
|
|
11677
11493
|
}
|
|
11678
11494
|
|
|
11679
11495
|
.TitleBlockZen-module_navigationTabsContainer__lto6e {
|
|
@@ -11771,12 +11587,8 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
11771
11587
|
align-items: flex-start;
|
|
11772
11588
|
justify-content: flex-end;
|
|
11773
11589
|
padding: calc(1.5rem / 2) 0;
|
|
11774
|
-
margin-
|
|
11775
|
-
margin-
|
|
11776
|
-
}
|
|
11777
|
-
.TitleBlockZen-module_secondaryActionsContainer__Is7rl[dir=rtl], [dir=rtl] .TitleBlockZen-module_secondaryActionsContainer__Is7rl {
|
|
11778
|
-
margin-right: 2.25rem;
|
|
11779
|
-
margin-left: 0;
|
|
11590
|
+
margin-inline-end: 0;
|
|
11591
|
+
margin-inline-start: 2.25rem;
|
|
11780
11592
|
}
|
|
11781
11593
|
.TitleBlockZen-module_educationVariant__B3I7P .TitleBlockZen-module_secondaryActionsContainer__Is7rl, .TitleBlockZen-module_adminVariant__vvIrj .TitleBlockZen-module_secondaryActionsContainer__Is7rl {
|
|
11782
11594
|
color: var(--color-blue-500, #0168b3);
|
|
@@ -11804,14 +11616,10 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
11804
11616
|
top: 50%;
|
|
11805
11617
|
transform: translateY(-50%);
|
|
11806
11618
|
text-decoration: none;
|
|
11807
|
-
|
|
11808
|
-
|
|
11619
|
+
inset-inline-end: auto;
|
|
11620
|
+
inset-inline-start: calc(-48px - 1.5rem);
|
|
11809
11621
|
align-self: normal;
|
|
11810
11622
|
}
|
|
11811
|
-
.TitleBlockZen-module_breadcrumb__o2c8A[dir=rtl], [dir=rtl] .TitleBlockZen-module_breadcrumb__o2c8A {
|
|
11812
|
-
right: calc(-48px - 1.5rem);
|
|
11813
|
-
left: auto;
|
|
11814
|
-
}
|
|
11815
11623
|
.TitleBlockZen-module_breadcrumb__o2c8A:hover .TitleBlockZen-module_breadcrumbTextLink__1HhXQ {
|
|
11816
11624
|
text-decoration: underline;
|
|
11817
11625
|
}
|
|
@@ -11831,19 +11639,10 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
11831
11639
|
@media only screen and (max-width: 1644px) {
|
|
11832
11640
|
.TitleBlockZen-module_breadcrumb__o2c8A {
|
|
11833
11641
|
position: relative;
|
|
11834
|
-
margin-right: calc(1.5rem / 2);
|
|
11835
|
-
margin-left: 0;
|
|
11836
|
-
right: auto;
|
|
11837
|
-
left: 0;
|
|
11838
11642
|
transform: translateY(0);
|
|
11839
|
-
|
|
11840
|
-
|
|
11841
|
-
|
|
11842
|
-
margin-left: calc(1.5rem / 2);
|
|
11843
|
-
}
|
|
11844
|
-
.TitleBlockZen-module_breadcrumb__o2c8A[dir=rtl], [dir=rtl] .TitleBlockZen-module_breadcrumb__o2c8A {
|
|
11845
|
-
right: 0;
|
|
11846
|
-
left: auto;
|
|
11643
|
+
margin-inline: 0 var(--spacing-12);
|
|
11644
|
+
inset-inline-end: auto;
|
|
11645
|
+
inset-inline-start: 0;
|
|
11847
11646
|
}
|
|
11848
11647
|
}
|
|
11849
11648
|
@media (max-width: calc(1080px - 1px)) {
|
|
@@ -11861,32 +11660,20 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
11861
11660
|
white-space: nowrap;
|
|
11862
11661
|
width: 1px;
|
|
11863
11662
|
z-index: 1019;
|
|
11864
|
-
|
|
11865
|
-
|
|
11663
|
+
inset-inline-end: auto;
|
|
11664
|
+
inset-inline-start: -3rem;
|
|
11866
11665
|
position: absolute;
|
|
11867
11666
|
}
|
|
11868
|
-
.TitleBlockZen-module_breadcrumbTextLink__1HhXQ[dir=rtl], [dir=rtl] .TitleBlockZen-module_breadcrumbTextLink__1HhXQ {
|
|
11869
|
-
right: -3rem;
|
|
11870
|
-
left: auto;
|
|
11871
|
-
}
|
|
11872
11667
|
@media (max-width: 1644px) {
|
|
11873
11668
|
.TitleBlockZen-module_breadcrumbTextLink__1HhXQ {
|
|
11874
|
-
|
|
11875
|
-
|
|
11876
|
-
}
|
|
11877
|
-
.TitleBlockZen-module_breadcrumbTextLink__1HhXQ[dir=rtl], [dir=rtl] .TitleBlockZen-module_breadcrumbTextLink__1HhXQ {
|
|
11878
|
-
right: 1.5rem;
|
|
11879
|
-
left: auto;
|
|
11669
|
+
inset-inline-end: auto;
|
|
11670
|
+
inset-inline-start: 1.5rem;
|
|
11880
11671
|
}
|
|
11881
11672
|
}
|
|
11882
11673
|
@media only screen and (min-width: 1644px) {
|
|
11883
11674
|
.TitleBlockZen-module_breadcrumbTextLink__1HhXQ {
|
|
11884
|
-
|
|
11885
|
-
|
|
11886
|
-
}
|
|
11887
|
-
.TitleBlockZen-module_breadcrumbTextLink__1HhXQ[dir=rtl], [dir=rtl] .TitleBlockZen-module_breadcrumbTextLink__1HhXQ {
|
|
11888
|
-
right: calc(48px - 1.5rem);
|
|
11889
|
-
left: auto;
|
|
11675
|
+
inset-inline-end: auto;
|
|
11676
|
+
inset-inline-start: calc(48px - 1.5rem);
|
|
11890
11677
|
}
|
|
11891
11678
|
}
|
|
11892
11679
|
.TitleBlockZen-module_breadcrumbTextLink__1HhXQ:hover, .TitleBlockZen-module_breadcrumbTextLink__1HhXQ:focus, .TitleBlockZen-module_breadcrumb__o2c8A:hover .TitleBlockZen-module_breadcrumbTextLink__1HhXQ, .TitleBlockZen-module_breadcrumb__o2c8A:focus .TitleBlockZen-module_breadcrumbTextLink__1HhXQ {
|