indicator-ui 0.0.326 → 0.0.328
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/index.css +239 -212
- package/dist/index.css.map +1 -1
- package/dist/index.js +252 -162
- package/dist/index.js.map +1 -1
- package/dist/scss/ui/Buttons/styles/mixins/baseButton.scss +18 -4
- package/dist/scss/ui/Buttons/styles/mixins/properties/large.scss +11 -3
- package/dist/scss/ui/Buttons/styles/mixins/properties/link-black.scss +23 -18
- package/dist/scss/ui/Buttons/styles/mixins/properties/link-color.scss +24 -19
- package/dist/scss/ui/Buttons/styles/mixins/properties/link-gray.scss +23 -18
- package/dist/scss/ui/Buttons/styles/mixins/properties/medium.scss +11 -3
- package/dist/scss/ui/Buttons/styles/mixins/properties/primary.scss +16 -12
- package/dist/scss/ui/Buttons/styles/mixins/properties/secondary-color.scss +18 -14
- package/dist/scss/ui/Buttons/styles/mixins/properties/secondary-gray.scss +19 -16
- package/dist/scss/ui/Buttons/styles/mixins/properties/small.scss +10 -2
- package/dist/scss/ui/Buttons/styles/mixins/properties/tab-active.scss +23 -19
- package/dist/scss/ui/Buttons/styles/mixins/properties/tab.scss +23 -19
- package/dist/scss/ui/Buttons/styles/mixins/properties/tertiary-color.scss +24 -20
- package/dist/scss/ui/Buttons/styles/mixins/properties/tertiary-gray.scss +23 -22
- package/dist/scss/ui/Buttons/styles/mixins/properties/tertiary-white.scss +25 -20
- package/dist/scss/ui/Buttons/styles/mixins/properties/ultra.scss +10 -2
- package/dist/scss/ui/Buttons/styles/mixins/properties/warning-link-color.scss +22 -17
- package/dist/scss/ui/Buttons/styles/mixins/properties/warning-primary.scss +15 -13
- package/dist/scss/ui/Buttons/styles/mixins/properties/warning-secondary-color.scss +11 -7
- package/dist/scss/ui/CheckboxMark/styles/mixins/base.scss +2 -2
- package/dist/scss/ui/CheckboxMark/styles/mixins/properties/checked.scss +4 -4
- package/dist/scss/ui/CheckboxMark/styles/mixins/properties/correct.scss +2 -2
- package/dist/scss/ui/CheckboxMark/styles/mixins/properties/indeterminate.scss +5 -5
- package/dist/scss/ui/CheckboxMark/styles/mixins/properties/radio.scss +1 -1
- package/dist/scss/ui/InputFields/InputFieldWrapper/styles/mixins/inputFieldWrapper.scss +2 -2
- package/dist/scss/ui/MicroButton/styles/mixins/properties/blue-light.scss +3 -3
- package/dist/scss/ui/MicroButton/styles/mixins/properties/color-fill.scss +6 -6
- package/dist/scss/ui/MicroButton/styles/mixins/properties/color-hover.scss +5 -5
- package/dist/scss/ui/MicroButton/styles/mixins/properties/color.scss +3 -3
- package/dist/scss/ui/Tag/styles/properties/active.scss +6 -6
- package/dist/scss/ui/ToggleBase/styles/mixins/active.scss +1 -1
- package/dist/scss/ui/ToggleBase/styles/mixins/disabled.scss +1 -0
- package/dist/scss/ui/ToggleBase/styles/mixins/hover.scss +1 -1
- package/dist/types/src/ui/Buttons/types/ButtonTypes.d.ts +2 -0
- package/dist/types/src/ui/Buttons/ui/Button.d.ts +1 -0
- package/dist/types/src/ui/DateTimePicker/ui/DateTimePickerSmart.d.ts +14 -0
- package/dist/types/src/ui/DateTimePicker/ui/index.d.ts +1 -0
- package/dist/types/src/ui/InputFields/DateTimeField/types/DateFieldTypes.d.ts +10 -1
- package/dist/types/src/ui/InputFields/DateTimeField/types/DateTimeFieldTypes.d.ts +8 -0
- package/dist/types/src/ui/InputFields/DateTimeField/types/TimeFieldTypes.d.ts +10 -1
- package/dist/types/src/ui/InputFields/DateTimeField/ui/DateField.d.ts +1 -1
- package/dist/types/src/ui/InputFields/DateTimeField/ui/DateTimeField.d.ts +1 -1
- package/dist/types/src/ui/InputFields/DateTimeField/ui/TimeField.d.ts +1 -1
- package/dist/types/src/ui/InputFields/DateTimeRangeField/types/DateRangeFieldTypes.d.ts +8 -0
- package/dist/types/src/ui/InputFields/DateTimeRangeField/ui/DateRangeField.d.ts +1 -1
- package/dist/types/src/ui/InputFields/FlexField/index.d.ts +1 -1
- package/dist/types/src/ui/InputFields/FlexField/ui/FlexField.d.ts +1 -2
- package/dist/types/src/ui/InputFields/FlexField/ui/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -18,18 +18,18 @@
|
|
|
18
18
|
--gray-900: #101828;
|
|
19
19
|
--gray-950: #0C111D;
|
|
20
20
|
|
|
21
|
-
--primary-25: #
|
|
22
|
-
--primary-50: #
|
|
23
|
-
--primary-100: #
|
|
24
|
-
--primary-200: #
|
|
25
|
-
--primary-300: #
|
|
26
|
-
--primary-400: #
|
|
27
|
-
--primary-500: #
|
|
28
|
-
--primary-600: #
|
|
29
|
-
--primary-700: #
|
|
30
|
-
--primary-800: #
|
|
31
|
-
--primary-900: #
|
|
32
|
-
--primary-950: #
|
|
21
|
+
--primary-25: #F5F8FF;
|
|
22
|
+
--primary-50: #EFF4FF;
|
|
23
|
+
--primary-100: #D1E0FF;
|
|
24
|
+
--primary-200: #B2CCFF;
|
|
25
|
+
--primary-300: #84ADFF;
|
|
26
|
+
--primary-400: #528BFF;
|
|
27
|
+
--primary-500: #2970FF;
|
|
28
|
+
--primary-600: #155EEF;
|
|
29
|
+
--primary-700: #004EEB;
|
|
30
|
+
--primary-800: #0040C1;
|
|
31
|
+
--primary-900: #00359E;
|
|
32
|
+
--primary-950: #002266;
|
|
33
33
|
|
|
34
34
|
--error-25: #FFFBFA;
|
|
35
35
|
--error-50: #FEF3F2;
|
|
@@ -157,7 +157,7 @@
|
|
|
157
157
|
\*******************************************************************************************************************************************************************************************************************************************************************/
|
|
158
158
|
.Buttons-module__button___I3yLe {
|
|
159
159
|
cursor: pointer;
|
|
160
|
-
transition:
|
|
160
|
+
transition: background-color ease-out 0.2s;
|
|
161
161
|
}
|
|
162
162
|
.Buttons-module__button___I3yLe {
|
|
163
163
|
display: flex;
|
|
@@ -175,9 +175,20 @@
|
|
|
175
175
|
justify-content: center;
|
|
176
176
|
align-items: center;
|
|
177
177
|
}
|
|
178
|
-
.Buttons-module__button___I3yLe .Buttons-
|
|
179
|
-
|
|
178
|
+
.Buttons-module__button___I3yLe .Buttons-module__icon___U2AOU svg * {
|
|
179
|
+
transition: stroke ease-out 0.2s;
|
|
180
|
+
}
|
|
181
|
+
.Buttons-module__button___I3yLe .Buttons-module__content___lPb5_ {
|
|
182
|
+
display: flex;
|
|
183
|
+
align-items: center;
|
|
184
|
+
}
|
|
185
|
+
.Buttons-module__button___I3yLe .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
180
186
|
flex: none;
|
|
187
|
+
text-align: center;
|
|
188
|
+
transition: color, weight 0.2s;
|
|
189
|
+
}
|
|
190
|
+
.Buttons-module__button___I3yLe .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
191
|
+
opacity: 0.6;
|
|
181
192
|
}
|
|
182
193
|
.Buttons-module__button___I3yLe.Buttons-module__widthFill___HXb85 {
|
|
183
194
|
width: 100%;
|
|
@@ -199,12 +210,20 @@
|
|
|
199
210
|
width: 16px;
|
|
200
211
|
height: 16px;
|
|
201
212
|
}
|
|
202
|
-
.Buttons-module__button___I3yLe.Buttons-module__small___x1NQN .Buttons-
|
|
213
|
+
.Buttons-module__button___I3yLe.Buttons-module__small___x1NQN .Buttons-module__content___lPb5_ {
|
|
203
214
|
padding: 0 4px;
|
|
215
|
+
gap: 4px;
|
|
216
|
+
}
|
|
217
|
+
.Buttons-module__button___I3yLe.Buttons-module__small___x1NQN .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX {
|
|
218
|
+
font-size: 14px;
|
|
219
|
+
line-height: 16px;
|
|
220
|
+
font-weight: 500;
|
|
221
|
+
font-family: "Golos UI", sans-serif;
|
|
204
222
|
}
|
|
205
|
-
.Buttons-module__button___I3yLe.Buttons-module__small___x1NQN .Buttons-
|
|
223
|
+
.Buttons-module__button___I3yLe.Buttons-module__small___x1NQN .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
206
224
|
font-size: 14px;
|
|
207
225
|
line-height: 16px;
|
|
226
|
+
font-weight: 400;
|
|
208
227
|
font-family: "Golos UI", sans-serif;
|
|
209
228
|
}
|
|
210
229
|
.Buttons-module__button___I3yLe.Buttons-module__medium___BZfsd {
|
|
@@ -215,12 +234,20 @@
|
|
|
215
234
|
width: 20px;
|
|
216
235
|
height: 20px;
|
|
217
236
|
}
|
|
218
|
-
.Buttons-module__button___I3yLe.Buttons-module__medium___BZfsd .Buttons-
|
|
219
|
-
padding: 0
|
|
237
|
+
.Buttons-module__button___I3yLe.Buttons-module__medium___BZfsd .Buttons-module__content___lPb5_ {
|
|
238
|
+
padding: 0 6px;
|
|
239
|
+
gap: 4px;
|
|
240
|
+
}
|
|
241
|
+
.Buttons-module__button___I3yLe.Buttons-module__medium___BZfsd .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX {
|
|
242
|
+
font-size: 14px;
|
|
243
|
+
line-height: 20px;
|
|
244
|
+
font-weight: 500;
|
|
245
|
+
font-family: "Golos UI", sans-serif;
|
|
220
246
|
}
|
|
221
|
-
.Buttons-module__button___I3yLe.Buttons-module__medium___BZfsd .Buttons-
|
|
247
|
+
.Buttons-module__button___I3yLe.Buttons-module__medium___BZfsd .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
222
248
|
font-size: 14px;
|
|
223
249
|
line-height: 20px;
|
|
250
|
+
font-weight: 400;
|
|
224
251
|
font-family: "Golos UI", sans-serif;
|
|
225
252
|
}
|
|
226
253
|
.Buttons-module__button___I3yLe.Buttons-module__large____KUDT {
|
|
@@ -231,12 +258,20 @@
|
|
|
231
258
|
width: 20px;
|
|
232
259
|
height: 20px;
|
|
233
260
|
}
|
|
234
|
-
.Buttons-module__button___I3yLe.Buttons-module__large____KUDT .Buttons-
|
|
235
|
-
padding: 0
|
|
261
|
+
.Buttons-module__button___I3yLe.Buttons-module__large____KUDT .Buttons-module__content___lPb5_ {
|
|
262
|
+
padding: 0 8px;
|
|
263
|
+
gap: 4px;
|
|
264
|
+
}
|
|
265
|
+
.Buttons-module__button___I3yLe.Buttons-module__large____KUDT .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX {
|
|
266
|
+
font-size: 16px;
|
|
267
|
+
line-height: 20px;
|
|
268
|
+
font-weight: 500;
|
|
269
|
+
font-family: "Golos UI", sans-serif;
|
|
236
270
|
}
|
|
237
|
-
.Buttons-module__button___I3yLe.Buttons-module__large____KUDT .Buttons-
|
|
271
|
+
.Buttons-module__button___I3yLe.Buttons-module__large____KUDT .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
238
272
|
font-size: 16px;
|
|
239
273
|
line-height: 20px;
|
|
274
|
+
font-weight: 400;
|
|
240
275
|
font-family: "Golos UI", sans-serif;
|
|
241
276
|
}
|
|
242
277
|
.Buttons-module__button___I3yLe.Buttons-module__ultra___zBezN {
|
|
@@ -247,35 +282,42 @@
|
|
|
247
282
|
width: 24px;
|
|
248
283
|
height: 24px;
|
|
249
284
|
}
|
|
250
|
-
.Buttons-module__button___I3yLe.Buttons-module__ultra___zBezN .Buttons-
|
|
285
|
+
.Buttons-module__button___I3yLe.Buttons-module__ultra___zBezN .Buttons-module__content___lPb5_ {
|
|
251
286
|
padding: 0 12px;
|
|
287
|
+
gap: 4px;
|
|
288
|
+
}
|
|
289
|
+
.Buttons-module__button___I3yLe.Buttons-module__ultra___zBezN .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX {
|
|
290
|
+
font-size: 18px;
|
|
291
|
+
line-height: 24px;
|
|
292
|
+
font-weight: 500;
|
|
293
|
+
font-family: "Golos UI", sans-serif;
|
|
252
294
|
}
|
|
253
|
-
.Buttons-module__button___I3yLe.Buttons-module__ultra___zBezN .Buttons-
|
|
295
|
+
.Buttons-module__button___I3yLe.Buttons-module__ultra___zBezN .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
254
296
|
font-size: 18px;
|
|
255
297
|
line-height: 24px;
|
|
298
|
+
font-weight: 400;
|
|
256
299
|
font-family: "Golos UI", sans-serif;
|
|
257
300
|
}
|
|
258
301
|
.Buttons-module__button___I3yLe.Buttons-module__primary____crHN {
|
|
259
302
|
border-radius: 8px;
|
|
260
|
-
background-color: var(--
|
|
303
|
+
background-color: var(--primary-500);
|
|
261
304
|
border: 1px solid transparent;
|
|
262
305
|
box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.0509803922);
|
|
263
306
|
}
|
|
264
307
|
.Buttons-module__button___I3yLe.Buttons-module__primary____crHN .Buttons-module__icon___U2AOU svg * {
|
|
265
308
|
stroke: var(--base-white);
|
|
266
309
|
}
|
|
267
|
-
.Buttons-module__button___I3yLe.Buttons-module__primary____crHN .Buttons-module__text___htxqX {
|
|
268
|
-
font-weight: 500;
|
|
310
|
+
.Buttons-module__button___I3yLe.Buttons-module__primary____crHN .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__primary____crHN .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
269
311
|
color: var(--base-white);
|
|
270
312
|
}
|
|
271
313
|
@media only screen and (min-width: 1024px) {
|
|
272
|
-
.Buttons-module__button___I3yLe.Buttons-module__primary____crHN:
|
|
273
|
-
background-color: var(--
|
|
314
|
+
.Buttons-module__button___I3yLe.Buttons-module__primary____crHN:not(.Buttons-module__disabled___INiFx):not(:disabled):hover {
|
|
315
|
+
background-color: var(--primary-600);
|
|
274
316
|
}
|
|
275
317
|
}
|
|
276
318
|
@media only screen and (max-width: 1024px) {
|
|
277
|
-
.Buttons-module__button___I3yLe.Buttons-module__primary____crHN:
|
|
278
|
-
background-color: var(--
|
|
319
|
+
.Buttons-module__button___I3yLe.Buttons-module__primary____crHN:not(.Buttons-module__disabled___INiFx):not(:disabled):active {
|
|
320
|
+
background-color: var(--primary-600);
|
|
279
321
|
}
|
|
280
322
|
}
|
|
281
323
|
.Buttons-module__button___I3yLe.Buttons-module__primary____crHN:disabled, .Buttons-module__button___I3yLe.Buttons-module__primary____crHN.Buttons-module__disabled___INiFx {
|
|
@@ -284,26 +326,25 @@
|
|
|
284
326
|
.Buttons-module__button___I3yLe.Buttons-module__secondaryColor___GONLZ {
|
|
285
327
|
border-radius: 8px;
|
|
286
328
|
background-color: var(--base-white);
|
|
287
|
-
border: 1px solid var(--
|
|
329
|
+
border: 1px solid var(--primary-200);
|
|
288
330
|
box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.0509803922);
|
|
289
331
|
}
|
|
290
332
|
.Buttons-module__button___I3yLe.Buttons-module__secondaryColor___GONLZ .Buttons-module__icon___U2AOU svg * {
|
|
291
|
-
stroke: var(--
|
|
333
|
+
stroke: var(--primary-500);
|
|
292
334
|
}
|
|
293
|
-
.Buttons-module__button___I3yLe.Buttons-module__secondaryColor___GONLZ .Buttons-module__text___htxqX {
|
|
294
|
-
|
|
295
|
-
color: var(--blue-dark-500);
|
|
335
|
+
.Buttons-module__button___I3yLe.Buttons-module__secondaryColor___GONLZ .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__secondaryColor___GONLZ .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
336
|
+
color: var(--primary-500);
|
|
296
337
|
}
|
|
297
338
|
@media only screen and (min-width: 1024px) {
|
|
298
|
-
.Buttons-module__button___I3yLe.Buttons-module__secondaryColor___GONLZ:
|
|
299
|
-
background-color: var(--
|
|
300
|
-
border: 1px solid var(--
|
|
339
|
+
.Buttons-module__button___I3yLe.Buttons-module__secondaryColor___GONLZ:not(.Buttons-module__disabled___INiFx):not(:disabled):hover {
|
|
340
|
+
background-color: var(--primary-50);
|
|
341
|
+
border: 1px solid var(--primary-300);
|
|
301
342
|
}
|
|
302
343
|
}
|
|
303
344
|
@media only screen and (max-width: 1024px) {
|
|
304
|
-
.Buttons-module__button___I3yLe.Buttons-module__secondaryColor___GONLZ:
|
|
305
|
-
background-color: var(--
|
|
306
|
-
border: 1px solid var(--
|
|
345
|
+
.Buttons-module__button___I3yLe.Buttons-module__secondaryColor___GONLZ:not(.Buttons-module__disabled___INiFx):not(:disabled):active {
|
|
346
|
+
background-color: var(--primary-50);
|
|
347
|
+
border: 1px solid var(--primary-300);
|
|
307
348
|
}
|
|
308
349
|
}
|
|
309
350
|
.Buttons-module__button___I3yLe.Buttons-module__secondaryColor___GONLZ:disabled, .Buttons-module__button___I3yLe.Buttons-module__secondaryColor___GONLZ.Buttons-module__disabled___INiFx {
|
|
@@ -318,25 +359,24 @@
|
|
|
318
359
|
.Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne .Buttons-module__icon___U2AOU svg * {
|
|
319
360
|
stroke: var(--gray-700);
|
|
320
361
|
}
|
|
321
|
-
.Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne .Buttons-module__text___htxqX {
|
|
322
|
-
font-weight: 500;
|
|
362
|
+
.Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
323
363
|
color: var(--gray-700);
|
|
324
364
|
}
|
|
325
365
|
@media only screen and (min-width: 1024px) {
|
|
326
|
-
.Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne:
|
|
366
|
+
.Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne:not(.Buttons-module__disabled___INiFx):not(:disabled):hover {
|
|
327
367
|
background-color: var(--gray-50);
|
|
328
368
|
border: 1px solid var(--gray-300);
|
|
329
369
|
}
|
|
330
|
-
.Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne:
|
|
370
|
+
.Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__text___htxqX {
|
|
331
371
|
color: var(--gray-800);
|
|
332
372
|
}
|
|
333
373
|
}
|
|
334
374
|
@media only screen and (max-width: 1024px) {
|
|
335
|
-
.Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne:
|
|
375
|
+
.Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne:not(.Buttons-module__disabled___INiFx):not(:disabled):active {
|
|
336
376
|
background-color: var(--gray-50);
|
|
337
377
|
border: 1px solid var(--gray-300);
|
|
338
378
|
}
|
|
339
|
-
.Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne:
|
|
379
|
+
.Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__text___htxqX {
|
|
340
380
|
color: var(--gray-800);
|
|
341
381
|
}
|
|
342
382
|
}
|
|
@@ -347,25 +387,24 @@
|
|
|
347
387
|
border: 1px solid transparent;
|
|
348
388
|
}
|
|
349
389
|
.Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq .Buttons-module__icon___U2AOU svg * {
|
|
350
|
-
stroke: var(--
|
|
390
|
+
stroke: var(--primary-100);
|
|
351
391
|
}
|
|
352
|
-
.Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq .Buttons-module__text___htxqX {
|
|
353
|
-
|
|
354
|
-
color: var(--blue-dark-100);
|
|
392
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
393
|
+
color: var(--primary-100);
|
|
355
394
|
}
|
|
356
395
|
@media only screen and (min-width: 1024px) {
|
|
357
|
-
.Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq:hover:not(.Buttons-module__disabled___INiFx):not(:disabled) .Buttons-
|
|
396
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
358
397
|
color: var(--base-white);
|
|
359
398
|
}
|
|
360
|
-
.Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq:
|
|
399
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__icon___U2AOU svg * {
|
|
361
400
|
stroke: var(--base-white);
|
|
362
401
|
}
|
|
363
402
|
}
|
|
364
403
|
@media only screen and (max-width: 1024px) {
|
|
365
|
-
.Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq:active:not(.Buttons-module__disabled___INiFx):not(:disabled) .Buttons-
|
|
404
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
366
405
|
color: var(--base-white);
|
|
367
406
|
}
|
|
368
|
-
.Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq:
|
|
407
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__icon___U2AOU svg * {
|
|
369
408
|
stroke: var(--base-white);
|
|
370
409
|
}
|
|
371
410
|
}
|
|
@@ -376,27 +415,25 @@
|
|
|
376
415
|
border: 1px solid transparent;
|
|
377
416
|
}
|
|
378
417
|
.Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw .Buttons-module__icon___U2AOU svg * {
|
|
379
|
-
stroke: var(--
|
|
418
|
+
stroke: var(--primary-500);
|
|
380
419
|
}
|
|
381
|
-
.Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw .Buttons-module__text___htxqX {
|
|
382
|
-
color: var(--
|
|
420
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
421
|
+
color: var(--primary-500);
|
|
383
422
|
}
|
|
384
423
|
@media only screen and (min-width: 1024px) {
|
|
385
|
-
.Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw:hover:not(.Buttons-module__disabled___INiFx):not(:disabled) .Buttons-
|
|
386
|
-
|
|
387
|
-
color: var(--blue-dark-700);
|
|
424
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
425
|
+
color: var(--primary-700);
|
|
388
426
|
}
|
|
389
|
-
.Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw:
|
|
390
|
-
stroke: var(--
|
|
427
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__icon___U2AOU svg * {
|
|
428
|
+
stroke: var(--primary-700);
|
|
391
429
|
}
|
|
392
430
|
}
|
|
393
431
|
@media only screen and (max-width: 1024px) {
|
|
394
|
-
.Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw:active:not(.Buttons-module__disabled___INiFx):not(:disabled) .Buttons-
|
|
395
|
-
|
|
396
|
-
color: var(--blue-dark-700);
|
|
432
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
433
|
+
color: var(--primary-700);
|
|
397
434
|
}
|
|
398
|
-
.Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw:
|
|
399
|
-
stroke: var(--
|
|
435
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__icon___U2AOU svg * {
|
|
436
|
+
stroke: var(--primary-700);
|
|
400
437
|
}
|
|
401
438
|
}
|
|
402
439
|
.Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw:disabled, .Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw.Buttons-module__disabled___INiFx {
|
|
@@ -408,26 +445,22 @@
|
|
|
408
445
|
.Buttons-module__button___I3yLe.Buttons-module__tertiaryGray___y75cu .Buttons-module__icon___U2AOU svg * {
|
|
409
446
|
stroke: var(--gray-700);
|
|
410
447
|
}
|
|
411
|
-
.Buttons-module__button___I3yLe.Buttons-module__tertiaryGray___y75cu .Buttons-module__text___htxqX {
|
|
448
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryGray___y75cu .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__tertiaryGray___y75cu .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
412
449
|
color: var(--gray-700);
|
|
413
450
|
}
|
|
414
|
-
.Buttons-module__button___I3yLe.Buttons-module__tertiaryGray___y75cu .Buttons-module__text___htxqX {
|
|
415
|
-
font-weight: 400;
|
|
416
|
-
color: var(--gray-400);
|
|
417
|
-
}
|
|
418
451
|
@media only screen and (min-width: 1024px) {
|
|
419
|
-
.Buttons-module__button___I3yLe.Buttons-module__tertiaryGray___y75cu:hover:not(.Buttons-module__disabled___INiFx):not(:disabled) .Buttons-
|
|
452
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryGray___y75cu:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__tertiaryGray___y75cu:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
420
453
|
color: var(--gray-900);
|
|
421
454
|
}
|
|
422
|
-
.Buttons-module__button___I3yLe.Buttons-module__tertiaryGray___y75cu:
|
|
455
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryGray___y75cu:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__icon___U2AOU svg * {
|
|
423
456
|
stroke: var(--gray-900);
|
|
424
457
|
}
|
|
425
458
|
}
|
|
426
459
|
@media only screen and (max-width: 1024px) {
|
|
427
|
-
.Buttons-module__button___I3yLe.Buttons-module__tertiaryGray___y75cu:active:not(.Buttons-module__disabled___INiFx):not(:disabled) .Buttons-
|
|
460
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryGray___y75cu:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__tertiaryGray___y75cu:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
428
461
|
color: var(--gray-900);
|
|
429
462
|
}
|
|
430
|
-
.Buttons-module__button___I3yLe.Buttons-module__tertiaryGray___y75cu:
|
|
463
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryGray___y75cu:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__icon___U2AOU svg * {
|
|
431
464
|
stroke: var(--gray-900);
|
|
432
465
|
}
|
|
433
466
|
}
|
|
@@ -439,29 +472,28 @@
|
|
|
439
472
|
gap: 4px;
|
|
440
473
|
}
|
|
441
474
|
.Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN .Buttons-module__icon___U2AOU svg * {
|
|
442
|
-
stroke: var(--
|
|
475
|
+
stroke: var(--primary-500);
|
|
443
476
|
}
|
|
444
|
-
.Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN .Buttons-
|
|
477
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN .Buttons-module__content___lPb5_ {
|
|
445
478
|
padding: 0 !important;
|
|
446
479
|
}
|
|
447
|
-
.Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN .Buttons-module__text___htxqX {
|
|
448
|
-
|
|
449
|
-
color: var(--blue-dark-500);
|
|
480
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
481
|
+
color: var(--primary-500);
|
|
450
482
|
}
|
|
451
483
|
@media only screen and (min-width: 1024px) {
|
|
452
|
-
.Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN:hover:not(.Buttons-module__disabled___INiFx):not(:disabled) .Buttons-
|
|
453
|
-
color: var(--
|
|
484
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
485
|
+
color: var(--primary-700);
|
|
454
486
|
}
|
|
455
|
-
.Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN:
|
|
456
|
-
stroke: var(--
|
|
487
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__icon___U2AOU svg * {
|
|
488
|
+
stroke: var(--primary-700);
|
|
457
489
|
}
|
|
458
490
|
}
|
|
459
491
|
@media only screen and (max-width: 1024px) {
|
|
460
|
-
.Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN:active:not(.Buttons-module__disabled___INiFx):not(:disabled) .Buttons-
|
|
461
|
-
color: var(--
|
|
492
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
493
|
+
color: var(--primary-700);
|
|
462
494
|
}
|
|
463
|
-
.Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN:
|
|
464
|
-
stroke: var(--
|
|
495
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__icon___U2AOU svg * {
|
|
496
|
+
stroke: var(--primary-700);
|
|
465
497
|
}
|
|
466
498
|
}
|
|
467
499
|
.Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN:disabled, .Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN.Buttons-module__disabled___INiFx {
|
|
@@ -474,26 +506,25 @@
|
|
|
474
506
|
.Buttons-module__button___I3yLe.Buttons-module__linkBlack___WfA7t .Buttons-module__icon___U2AOU svg * {
|
|
475
507
|
stroke: var(--gray-700);
|
|
476
508
|
}
|
|
477
|
-
.Buttons-module__button___I3yLe.Buttons-module__linkBlack___WfA7t .Buttons-
|
|
509
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkBlack___WfA7t .Buttons-module__content___lPb5_ {
|
|
478
510
|
padding: 0 !important;
|
|
479
511
|
}
|
|
480
|
-
.Buttons-module__button___I3yLe.Buttons-module__linkBlack___WfA7t .Buttons-module__text___htxqX {
|
|
481
|
-
font-weight: 400;
|
|
512
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkBlack___WfA7t .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__linkBlack___WfA7t .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
482
513
|
color: var(--gray-700);
|
|
483
514
|
}
|
|
484
515
|
@media only screen and (min-width: 1024px) {
|
|
485
|
-
.Buttons-module__button___I3yLe.Buttons-module__linkBlack___WfA7t:hover:not(.Buttons-module__disabled___INiFx):not(:disabled) .Buttons-
|
|
516
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkBlack___WfA7t:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__linkBlack___WfA7t:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
486
517
|
color: var(--gray-900);
|
|
487
518
|
}
|
|
488
|
-
.Buttons-module__button___I3yLe.Buttons-module__linkBlack___WfA7t:
|
|
519
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkBlack___WfA7t:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__icon___U2AOU svg * {
|
|
489
520
|
stroke: var(--gray-900);
|
|
490
521
|
}
|
|
491
522
|
}
|
|
492
523
|
@media only screen and (max-width: 1024px) {
|
|
493
|
-
.Buttons-module__button___I3yLe.Buttons-module__linkBlack___WfA7t:active:not(.Buttons-module__disabled___INiFx):not(:disabled) .Buttons-
|
|
524
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkBlack___WfA7t:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__linkBlack___WfA7t:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
494
525
|
color: var(--gray-900);
|
|
495
526
|
}
|
|
496
|
-
.Buttons-module__button___I3yLe.Buttons-module__linkBlack___WfA7t:
|
|
527
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkBlack___WfA7t:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__icon___U2AOU svg * {
|
|
497
528
|
stroke: var(--gray-900);
|
|
498
529
|
}
|
|
499
530
|
}
|
|
@@ -507,26 +538,25 @@
|
|
|
507
538
|
.Buttons-module__button___I3yLe.Buttons-module__linkGray___CQYUd .Buttons-module__icon___U2AOU svg * {
|
|
508
539
|
stroke: var(--gray-400);
|
|
509
540
|
}
|
|
510
|
-
.Buttons-module__button___I3yLe.Buttons-module__linkGray___CQYUd .Buttons-
|
|
541
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkGray___CQYUd .Buttons-module__content___lPb5_ {
|
|
511
542
|
padding: 0 !important;
|
|
512
543
|
}
|
|
513
|
-
.Buttons-module__button___I3yLe.Buttons-module__linkGray___CQYUd .Buttons-module__text___htxqX {
|
|
514
|
-
font-weight: 400;
|
|
544
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkGray___CQYUd .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__linkGray___CQYUd .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
515
545
|
color: var(--gray-400);
|
|
516
546
|
}
|
|
517
547
|
@media only screen and (min-width: 1024px) {
|
|
518
|
-
.Buttons-module__button___I3yLe.Buttons-module__linkGray___CQYUd:hover:not(.Buttons-module__disabled___INiFx):not(:disabled) .Buttons-
|
|
548
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkGray___CQYUd:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__linkGray___CQYUd:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
519
549
|
color: var(--gray-500);
|
|
520
550
|
}
|
|
521
|
-
.Buttons-module__button___I3yLe.Buttons-module__linkGray___CQYUd:
|
|
551
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkGray___CQYUd:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__icon___U2AOU svg * {
|
|
522
552
|
stroke: var(--gray-500);
|
|
523
553
|
}
|
|
524
554
|
}
|
|
525
555
|
@media only screen and (max-width: 1024px) {
|
|
526
|
-
.Buttons-module__button___I3yLe.Buttons-module__linkGray___CQYUd:active:not(.Buttons-module__disabled___INiFx):not(:disabled) .Buttons-
|
|
556
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkGray___CQYUd:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__linkGray___CQYUd:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
527
557
|
color: var(--gray-500);
|
|
528
558
|
}
|
|
529
|
-
.Buttons-module__button___I3yLe.Buttons-module__linkGray___CQYUd:
|
|
559
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkGray___CQYUd:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__icon___U2AOU svg * {
|
|
530
560
|
stroke: var(--gray-500);
|
|
531
561
|
}
|
|
532
562
|
}
|
|
@@ -542,23 +572,22 @@
|
|
|
542
572
|
.Buttons-module__button___I3yLe.Buttons-module__tabActive___chlqq .Buttons-module__icon___U2AOU svg * {
|
|
543
573
|
stroke: var(--gray-700);
|
|
544
574
|
}
|
|
545
|
-
.Buttons-module__button___I3yLe.Buttons-module__tabActive___chlqq .Buttons-module__text___htxqX {
|
|
546
|
-
font-weight: 500;
|
|
575
|
+
.Buttons-module__button___I3yLe.Buttons-module__tabActive___chlqq .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__tabActive___chlqq .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
547
576
|
color: var(--gray-700);
|
|
548
577
|
}
|
|
549
578
|
@media only screen and (min-width: 1024px) {
|
|
550
|
-
.Buttons-module__button___I3yLe.Buttons-module__tabActive___chlqq:
|
|
579
|
+
.Buttons-module__button___I3yLe.Buttons-module__tabActive___chlqq:not(.Buttons-module__disabled___INiFx):not(:disabled):hover:hover .Buttons-module__icon___U2AOU svg * {
|
|
551
580
|
stroke: var(--gray-900);
|
|
552
581
|
}
|
|
553
|
-
.Buttons-module__button___I3yLe.Buttons-module__tabActive___chlqq:
|
|
582
|
+
.Buttons-module__button___I3yLe.Buttons-module__tabActive___chlqq:not(.Buttons-module__disabled___INiFx):not(:disabled):hover:hover .Buttons-module__text___htxqX {
|
|
554
583
|
color: var(--gray-900);
|
|
555
584
|
}
|
|
556
585
|
}
|
|
557
586
|
@media only screen and (max-width: 1024px) {
|
|
558
|
-
.Buttons-module__button___I3yLe.Buttons-module__tabActive___chlqq:
|
|
587
|
+
.Buttons-module__button___I3yLe.Buttons-module__tabActive___chlqq:not(.Buttons-module__disabled___INiFx):not(:disabled):active:hover .Buttons-module__icon___U2AOU svg * {
|
|
559
588
|
stroke: var(--gray-900);
|
|
560
589
|
}
|
|
561
|
-
.Buttons-module__button___I3yLe.Buttons-module__tabActive___chlqq:
|
|
590
|
+
.Buttons-module__button___I3yLe.Buttons-module__tabActive___chlqq:not(.Buttons-module__disabled___INiFx):not(:disabled):active:hover .Buttons-module__text___htxqX {
|
|
562
591
|
color: var(--gray-900);
|
|
563
592
|
}
|
|
564
593
|
}
|
|
@@ -574,29 +603,28 @@
|
|
|
574
603
|
.Buttons-module__button___I3yLe.Buttons-module__tab___yBTjo .Buttons-module__icon___U2AOU svg * {
|
|
575
604
|
stroke: var(--gray-500);
|
|
576
605
|
}
|
|
577
|
-
.Buttons-module__button___I3yLe.Buttons-module__tab___yBTjo .Buttons-module__text___htxqX {
|
|
578
|
-
font-weight: 500;
|
|
606
|
+
.Buttons-module__button___I3yLe.Buttons-module__tab___yBTjo .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__tab___yBTjo .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
579
607
|
color: var(--gray-500);
|
|
580
608
|
}
|
|
581
609
|
@media only screen and (min-width: 1024px) {
|
|
582
|
-
.Buttons-module__button___I3yLe.Buttons-module__tab___yBTjo:
|
|
610
|
+
.Buttons-module__button___I3yLe.Buttons-module__tab___yBTjo:not(.Buttons-module__disabled___INiFx):not(:disabled):hover {
|
|
583
611
|
background-color: var(--gray-200);
|
|
584
612
|
}
|
|
585
|
-
.Buttons-module__button___I3yLe.Buttons-module__tab___yBTjo:
|
|
613
|
+
.Buttons-module__button___I3yLe.Buttons-module__tab___yBTjo:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__icon___U2AOU svg * {
|
|
586
614
|
stroke: var(--gray-800);
|
|
587
615
|
}
|
|
588
|
-
.Buttons-module__button___I3yLe.Buttons-module__tab___yBTjo:
|
|
616
|
+
.Buttons-module__button___I3yLe.Buttons-module__tab___yBTjo:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__text___htxqX {
|
|
589
617
|
color: var(--gray-800);
|
|
590
618
|
}
|
|
591
619
|
}
|
|
592
620
|
@media only screen and (max-width: 1024px) {
|
|
593
|
-
.Buttons-module__button___I3yLe.Buttons-module__tab___yBTjo:
|
|
621
|
+
.Buttons-module__button___I3yLe.Buttons-module__tab___yBTjo:not(.Buttons-module__disabled___INiFx):not(:disabled):active {
|
|
594
622
|
background-color: var(--gray-200);
|
|
595
623
|
}
|
|
596
|
-
.Buttons-module__button___I3yLe.Buttons-module__tab___yBTjo:
|
|
624
|
+
.Buttons-module__button___I3yLe.Buttons-module__tab___yBTjo:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__icon___U2AOU svg * {
|
|
597
625
|
stroke: var(--gray-800);
|
|
598
626
|
}
|
|
599
|
-
.Buttons-module__button___I3yLe.Buttons-module__tab___yBTjo:
|
|
627
|
+
.Buttons-module__button___I3yLe.Buttons-module__tab___yBTjo:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__text___htxqX {
|
|
600
628
|
color: var(--gray-800);
|
|
601
629
|
}
|
|
602
630
|
}
|
|
@@ -610,17 +638,17 @@
|
|
|
610
638
|
box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.0509803922);
|
|
611
639
|
}
|
|
612
640
|
@media only screen and (min-width: 1024px) {
|
|
613
|
-
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__primary____crHN:
|
|
641
|
+
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__primary____crHN:not(.Buttons-module__disabled___INiFx):not(:disabled):hover {
|
|
614
642
|
border: 1px solid var(--error-600);
|
|
615
643
|
background-color: var(--error-600);
|
|
616
644
|
}
|
|
617
|
-
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__primary____crHN:
|
|
645
|
+
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__primary____crHN:not(.Buttons-module__disabled___INiFx):not(:disabled):active {
|
|
618
646
|
border: 1px solid var(--error-500);
|
|
619
647
|
background-color: var(--error-500);
|
|
620
648
|
}
|
|
621
649
|
}
|
|
622
650
|
@media only screen and (max-width: 1024px) {
|
|
623
|
-
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__primary____crHN:
|
|
651
|
+
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__primary____crHN:not(.Buttons-module__disabled___INiFx):not(:disabled):active {
|
|
624
652
|
border: 1px solid var(--error-600);
|
|
625
653
|
background-color: var(--error-600);
|
|
626
654
|
}
|
|
@@ -636,17 +664,17 @@
|
|
|
636
664
|
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__secondaryColor___GONLZ .Buttons-module__icon___U2AOU svg * {
|
|
637
665
|
stroke: var(--error-500);
|
|
638
666
|
}
|
|
639
|
-
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__secondaryColor___GONLZ .Buttons-module__text___htxqX {
|
|
667
|
+
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__secondaryColor___GONLZ .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__secondaryColor___GONLZ .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
640
668
|
color: var(--error-500);
|
|
641
669
|
}
|
|
642
670
|
@media only screen and (min-width: 1024px) {
|
|
643
|
-
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__secondaryColor___GONLZ:
|
|
671
|
+
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__secondaryColor___GONLZ:not(.Buttons-module__disabled___INiFx):not(:disabled):hover {
|
|
644
672
|
background-color: var(--error-50);
|
|
645
673
|
border: 1px solid var(--error-400);
|
|
646
674
|
}
|
|
647
675
|
}
|
|
648
676
|
@media only screen and (max-width: 1024px) {
|
|
649
|
-
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__secondaryColor___GONLZ:
|
|
677
|
+
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__secondaryColor___GONLZ:not(.Buttons-module__disabled___INiFx):not(:disabled):active {
|
|
650
678
|
background-color: var(--error-50);
|
|
651
679
|
border: 1px solid var(--error-400);
|
|
652
680
|
}
|
|
@@ -657,26 +685,25 @@
|
|
|
657
685
|
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__linkColor___Kg7EN .Buttons-module__icon___U2AOU svg * {
|
|
658
686
|
stroke: var(--error-500);
|
|
659
687
|
}
|
|
660
|
-
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__linkColor___Kg7EN .Buttons-
|
|
688
|
+
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__linkColor___Kg7EN .Buttons-module__content___lPb5_ {
|
|
661
689
|
padding: 0 !important;
|
|
662
690
|
}
|
|
663
|
-
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__linkColor___Kg7EN .Buttons-module__text___htxqX {
|
|
664
|
-
font-weight: 400;
|
|
691
|
+
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__linkColor___Kg7EN .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__linkColor___Kg7EN .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
665
692
|
color: var(--error-500);
|
|
666
693
|
}
|
|
667
694
|
@media only screen and (min-width: 1024px) {
|
|
668
|
-
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__linkColor___Kg7EN:
|
|
695
|
+
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__linkColor___Kg7EN:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__text___htxqX {
|
|
669
696
|
color: var(--error-700);
|
|
670
697
|
}
|
|
671
|
-
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__linkColor___Kg7EN:
|
|
698
|
+
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__linkColor___Kg7EN:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__icon___U2AOU svg * {
|
|
672
699
|
stroke: var(--error-700);
|
|
673
700
|
}
|
|
674
701
|
}
|
|
675
702
|
@media only screen and (max-width: 1024px) {
|
|
676
|
-
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__linkColor___Kg7EN:
|
|
703
|
+
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__linkColor___Kg7EN:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__text___htxqX {
|
|
677
704
|
color: var(--error-700);
|
|
678
705
|
}
|
|
679
|
-
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__linkColor___Kg7EN:
|
|
706
|
+
.Buttons-module__button___I3yLe.Buttons-module__warning___RaAeB.Buttons-module__linkColor___Kg7EN:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__icon___U2AOU svg * {
|
|
680
707
|
stroke: var(--error-700);
|
|
681
708
|
}
|
|
682
709
|
}
|
|
@@ -776,14 +803,14 @@
|
|
|
776
803
|
border: 1px solid transparent;
|
|
777
804
|
}
|
|
778
805
|
.MicroButton-module__button___QMj95.MicroButton-module__color___RO79e svg * {
|
|
779
|
-
stroke: var(--
|
|
806
|
+
stroke: var(--primary-500);
|
|
780
807
|
}
|
|
781
808
|
@media only screen and (min-width: 1024px) {
|
|
782
809
|
.MicroButton-module__button___QMj95.MicroButton-module__color___RO79e:not(.MicroButton-module__button___QMj95.MicroButton-module__color___RO79e:disabled):hover {
|
|
783
810
|
background-color: var(--base-white);
|
|
784
811
|
}
|
|
785
812
|
.MicroButton-module__button___QMj95.MicroButton-module__color___RO79e:not(.MicroButton-module__button___QMj95.MicroButton-module__color___RO79e:disabled):hover svg * {
|
|
786
|
-
stroke: var(--
|
|
813
|
+
stroke: var(--primary-600);
|
|
787
814
|
}
|
|
788
815
|
}
|
|
789
816
|
@media only screen and (max-width: 1024px) {
|
|
@@ -791,7 +818,7 @@
|
|
|
791
818
|
background-color: var(--base-white);
|
|
792
819
|
}
|
|
793
820
|
.MicroButton-module__button___QMj95.MicroButton-module__color___RO79e:active svg * {
|
|
794
|
-
stroke: var(--
|
|
821
|
+
stroke: var(--primary-600);
|
|
795
822
|
}
|
|
796
823
|
}
|
|
797
824
|
.MicroButton-module__button___QMj95.MicroButton-module__colorHover___Rvxx7 {
|
|
@@ -799,22 +826,22 @@
|
|
|
799
826
|
border: 1px solid transparent;
|
|
800
827
|
}
|
|
801
828
|
.MicroButton-module__button___QMj95.MicroButton-module__colorHover___Rvxx7 svg * {
|
|
802
|
-
stroke: var(--
|
|
829
|
+
stroke: var(--primary-400);
|
|
803
830
|
}
|
|
804
831
|
@media only screen and (min-width: 1024px) {
|
|
805
832
|
.MicroButton-module__button___QMj95.MicroButton-module__colorHover___Rvxx7:not(.MicroButton-module__button___QMj95.MicroButton-module__colorHover___Rvxx7:disabled):hover {
|
|
806
|
-
background-color: var(--
|
|
833
|
+
background-color: var(--primary-100);
|
|
807
834
|
}
|
|
808
835
|
.MicroButton-module__button___QMj95.MicroButton-module__colorHover___Rvxx7:not(.MicroButton-module__button___QMj95.MicroButton-module__colorHover___Rvxx7:disabled):hover svg * {
|
|
809
|
-
stroke: var(--
|
|
836
|
+
stroke: var(--primary-500);
|
|
810
837
|
}
|
|
811
838
|
}
|
|
812
839
|
@media only screen and (max-width: 1024px) {
|
|
813
840
|
.MicroButton-module__button___QMj95.MicroButton-module__colorHover___Rvxx7:active {
|
|
814
|
-
background-color: var(--
|
|
841
|
+
background-color: var(--primary-100);
|
|
815
842
|
}
|
|
816
843
|
.MicroButton-module__button___QMj95.MicroButton-module__colorHover___Rvxx7:active svg * {
|
|
817
|
-
stroke: var(--
|
|
844
|
+
stroke: var(--primary-500);
|
|
818
845
|
}
|
|
819
846
|
}
|
|
820
847
|
.MicroButton-module__button___QMj95.MicroButton-module__redHover____WGXq {
|
|
@@ -842,25 +869,25 @@
|
|
|
842
869
|
}
|
|
843
870
|
.MicroButton-module__button___QMj95.MicroButton-module__colorFill___yLr74 {
|
|
844
871
|
background: var(--base-white);
|
|
845
|
-
border: 1px solid var(--
|
|
872
|
+
border: 1px solid var(--primary-200);
|
|
846
873
|
}
|
|
847
874
|
.MicroButton-module__button___QMj95.MicroButton-module__colorFill___yLr74 svg * {
|
|
848
|
-
stroke: var(--
|
|
875
|
+
stroke: var(--primary-500);
|
|
849
876
|
}
|
|
850
877
|
@media only screen and (min-width: 1024px) {
|
|
851
878
|
.MicroButton-module__button___QMj95.MicroButton-module__colorFill___yLr74:not(.MicroButton-module__button___QMj95.MicroButton-module__colorFill___yLr74:disabled):hover {
|
|
852
|
-
background: var(--
|
|
879
|
+
background: var(--primary-50);
|
|
853
880
|
}
|
|
854
881
|
.MicroButton-module__button___QMj95.MicroButton-module__colorFill___yLr74:not(.MicroButton-module__button___QMj95.MicroButton-module__colorFill___yLr74:disabled):hover svg * {
|
|
855
|
-
stroke: var(--
|
|
882
|
+
stroke: var(--primary-500);
|
|
856
883
|
}
|
|
857
884
|
}
|
|
858
885
|
@media only screen and (max-width: 1024px) {
|
|
859
886
|
.MicroButton-module__button___QMj95.MicroButton-module__colorFill___yLr74:active {
|
|
860
|
-
background: var(--
|
|
887
|
+
background: var(--primary-50);
|
|
861
888
|
}
|
|
862
889
|
.MicroButton-module__button___QMj95.MicroButton-module__colorFill___yLr74:active svg * {
|
|
863
|
-
stroke: var(--
|
|
890
|
+
stroke: var(--primary-500);
|
|
864
891
|
}
|
|
865
892
|
}
|
|
866
893
|
.MicroButton-module__button___QMj95.MicroButton-module__grayFill___Rr1s4 {
|
|
@@ -914,16 +941,16 @@
|
|
|
914
941
|
border: 1px solid transparent;
|
|
915
942
|
}
|
|
916
943
|
.MicroButton-module__button___QMj95.MicroButton-module__blueLight___zyiu5 svg * {
|
|
917
|
-
stroke: var(--
|
|
944
|
+
stroke: var(--primary-50);
|
|
918
945
|
}
|
|
919
946
|
@media only screen and (min-width: 1024px) {
|
|
920
947
|
.MicroButton-module__button___QMj95.MicroButton-module__blueLight___zyiu5:not(.MicroButton-module__button___QMj95.MicroButton-module__blueLight___zyiu5:disabled):hover svg * {
|
|
921
|
-
stroke: var(--
|
|
948
|
+
stroke: var(--primary-200);
|
|
922
949
|
}
|
|
923
950
|
}
|
|
924
951
|
@media only screen and (max-width: 1024px) {
|
|
925
952
|
.MicroButton-module__button___QMj95.MicroButton-module__blueLight___zyiu5:active svg * {
|
|
926
|
-
stroke: var(--
|
|
953
|
+
stroke: var(--primary-200);
|
|
927
954
|
}
|
|
928
955
|
}
|
|
929
956
|
.MicroButton-module__button___QMj95.MicroButton-module__size14___qZD63 {
|
|
@@ -1231,7 +1258,7 @@
|
|
|
1231
1258
|
font-variant: normal;
|
|
1232
1259
|
}
|
|
1233
1260
|
.SelectField-module__selectField___p9S2j .SelectField-module__modalWindow___JVZ8d .SelectField-module__selectModalWindow___w55Pm .SelectField-module__selectFieldOptionsItem___hQMC7.SelectField-module__active___a3j2T {
|
|
1234
|
-
background-color: var(--
|
|
1261
|
+
background-color: var(--primary-50);
|
|
1235
1262
|
}
|
|
1236
1263
|
.SelectField-module__selectField___p9S2j .SelectField-module__modalWindow___JVZ8d .SelectField-module__selectModalWindow___w55Pm .SelectField-module__selectFieldOptionsItem___hQMC7.SelectField-module__active___a3j2T svg {
|
|
1237
1264
|
width: 20px;
|
|
@@ -1239,7 +1266,7 @@
|
|
|
1239
1266
|
flex: none;
|
|
1240
1267
|
}
|
|
1241
1268
|
.SelectField-module__selectField___p9S2j .SelectField-module__modalWindow___JVZ8d .SelectField-module__selectModalWindow___w55Pm .SelectField-module__selectFieldOptionsItem___hQMC7.SelectField-module__active___a3j2T svg * {
|
|
1242
|
-
stroke: var(--
|
|
1269
|
+
stroke: var(--primary-500);
|
|
1243
1270
|
}
|
|
1244
1271
|
|
|
1245
1272
|
@keyframes SelectField-module__show-animation___Ee3LS {
|
|
@@ -1328,12 +1355,12 @@
|
|
|
1328
1355
|
flex: none;
|
|
1329
1356
|
}
|
|
1330
1357
|
.InputFieldWrapper-module__inputFieldWrapper___QKhWg .InputFieldWrapper-module__helperLink___Kfen4 svg * {
|
|
1331
|
-
stroke: var(--
|
|
1358
|
+
stroke: var(--primary-500);
|
|
1332
1359
|
}
|
|
1333
1360
|
.InputFieldWrapper-module__inputFieldWrapper___QKhWg .InputFieldWrapper-module__helperLink___Kfen4 {
|
|
1334
1361
|
font-size: 14px;
|
|
1335
1362
|
line-height: 20px;
|
|
1336
|
-
color: var(--
|
|
1363
|
+
color: var(--primary-500);
|
|
1337
1364
|
font-weight: 400;
|
|
1338
1365
|
font-family: "Golos UI", sans-serif;
|
|
1339
1366
|
font-stretch: normal;
|
|
@@ -1701,11 +1728,9 @@
|
|
|
1701
1728
|
\***************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
1702
1729
|
.SingleRangeField-module__SingleRangeField___suUvZ {
|
|
1703
1730
|
height: fit-content;
|
|
1704
|
-
position: relative;
|
|
1705
1731
|
}
|
|
1706
1732
|
.SingleRangeField-module__SingleRangeField___suUvZ .SingleRangeField-module__modalWindow___nioaP {
|
|
1707
1733
|
position: fixed;
|
|
1708
|
-
transform: translateY(4px);
|
|
1709
1734
|
z-index: 10;
|
|
1710
1735
|
}
|
|
1711
1736
|
.SingleRangeField-module__SingleRangeField___suUvZ.SingleRangeField-module__widthFill___rexD9 {
|
|
@@ -1743,8 +1768,8 @@
|
|
|
1743
1768
|
}
|
|
1744
1769
|
@media only screen and (min-width: 1024px) {
|
|
1745
1770
|
.CheckboxMark-module__checkboxMark___QsRbu:hover {
|
|
1746
|
-
background-color: var(--
|
|
1747
|
-
border: 1px solid var(--
|
|
1771
|
+
background-color: var(--primary-50);
|
|
1772
|
+
border: 1px solid var(--primary-200);
|
|
1748
1773
|
}
|
|
1749
1774
|
}
|
|
1750
1775
|
.CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__checkbox___hYxxO {
|
|
@@ -1760,34 +1785,34 @@
|
|
|
1760
1785
|
width: 8px;
|
|
1761
1786
|
height: 8px;
|
|
1762
1787
|
border-radius: 50%;
|
|
1763
|
-
background-color: var(--
|
|
1788
|
+
background-color: var(--primary-500);
|
|
1764
1789
|
}
|
|
1765
1790
|
.CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__checked___gV7SX {
|
|
1766
|
-
background-color: var(--
|
|
1767
|
-
border: 1px solid var(--
|
|
1791
|
+
background-color: var(--primary-50);
|
|
1792
|
+
border: 1px solid var(--primary-200);
|
|
1768
1793
|
}
|
|
1769
1794
|
.CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__checked___gV7SX svg * {
|
|
1770
|
-
stroke: var(--
|
|
1795
|
+
stroke: var(--primary-500);
|
|
1771
1796
|
}
|
|
1772
1797
|
.CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__checked___gV7SX:after {
|
|
1773
1798
|
display: block;
|
|
1774
1799
|
}
|
|
1775
1800
|
@media only screen and (min-width: 1024px) {
|
|
1776
1801
|
.CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__checked___gV7SX:hover {
|
|
1777
|
-
border: 1px solid var(--
|
|
1802
|
+
border: 1px solid var(--primary-400);
|
|
1778
1803
|
}
|
|
1779
1804
|
}
|
|
1780
1805
|
.CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__indeterminate___ZR_YC {
|
|
1781
|
-
background-color: var(--
|
|
1782
|
-
border: 1px solid var(--
|
|
1806
|
+
background-color: var(--primary-50);
|
|
1807
|
+
border: 1px solid var(--primary-200);
|
|
1783
1808
|
}
|
|
1784
1809
|
.CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__indeterminate___ZR_YC svg * {
|
|
1785
|
-
stroke: var(--
|
|
1810
|
+
stroke: var(--primary-500);
|
|
1786
1811
|
}
|
|
1787
1812
|
.CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__indeterminate___ZR_YC {
|
|
1788
1813
|
font-size: 14px;
|
|
1789
1814
|
line-height: 14px;
|
|
1790
|
-
color: var(--
|
|
1815
|
+
color: var(--primary-500);
|
|
1791
1816
|
font-weight: 500;
|
|
1792
1817
|
font-family: "Golos UI", sans-serif;
|
|
1793
1818
|
font-stretch: normal;
|
|
@@ -1796,7 +1821,7 @@
|
|
|
1796
1821
|
}
|
|
1797
1822
|
@media only screen and (min-width: 1024px) {
|
|
1798
1823
|
.CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__indeterminate___ZR_YC:hover {
|
|
1799
|
-
border: 1px solid var(--
|
|
1824
|
+
border: 1px solid var(--primary-400);
|
|
1800
1825
|
}
|
|
1801
1826
|
}
|
|
1802
1827
|
.CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__error___NJKGd {
|
|
@@ -1845,7 +1870,7 @@
|
|
|
1845
1870
|
}
|
|
1846
1871
|
}
|
|
1847
1872
|
.CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__correct___MLR9N.CheckboxMark-module__checked___gV7SX {
|
|
1848
|
-
background-color: var(--
|
|
1873
|
+
background-color: var(--primary-500);
|
|
1849
1874
|
border: transparent;
|
|
1850
1875
|
}
|
|
1851
1876
|
.CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__correct___MLR9N.CheckboxMark-module__checked___gV7SX {
|
|
@@ -1866,7 +1891,7 @@
|
|
|
1866
1891
|
}
|
|
1867
1892
|
@media only screen and (min-width: 1024px) {
|
|
1868
1893
|
.CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__correct___MLR9N.CheckboxMark-module__checked___gV7SX:hover {
|
|
1869
|
-
background-color: var(--
|
|
1894
|
+
background-color: var(--primary-600);
|
|
1870
1895
|
border: transparent;
|
|
1871
1896
|
}
|
|
1872
1897
|
}
|
|
@@ -1950,14 +1975,14 @@
|
|
|
1950
1975
|
}
|
|
1951
1976
|
@media only screen and (min-width: 1024px) {
|
|
1952
1977
|
.CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__hover___FWh19 {
|
|
1953
|
-
background-color: var(--
|
|
1954
|
-
border: 1px solid var(--
|
|
1978
|
+
background-color: var(--primary-50);
|
|
1979
|
+
border: 1px solid var(--primary-200);
|
|
1955
1980
|
}
|
|
1956
1981
|
.CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__hover___FWh19.CheckboxMark-module__checked___gV7SX {
|
|
1957
|
-
border: 1px solid var(--
|
|
1982
|
+
border: 1px solid var(--primary-400);
|
|
1958
1983
|
}
|
|
1959
1984
|
.CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__hover___FWh19.CheckboxMark-module__indeterminate___ZR_YC {
|
|
1960
|
-
border: 1px solid var(--
|
|
1985
|
+
border: 1px solid var(--primary-400);
|
|
1961
1986
|
}
|
|
1962
1987
|
.CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__hover___FWh19.CheckboxMark-module__error___NJKGd {
|
|
1963
1988
|
background-color: var(--error-50);
|
|
@@ -1974,7 +1999,7 @@
|
|
|
1974
1999
|
color: var(--gray-300);
|
|
1975
2000
|
}
|
|
1976
2001
|
.CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__hover___FWh19.CheckboxMark-module__correct___MLR9N.CheckboxMark-module__checked___gV7SX {
|
|
1977
|
-
background-color: var(--
|
|
2002
|
+
background-color: var(--primary-600);
|
|
1978
2003
|
border: transparent;
|
|
1979
2004
|
}
|
|
1980
2005
|
.CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__hover___FWh19.CheckboxMark-module__correct___MLR9N.CheckboxMark-module__checked___gV7SX.CheckboxMark-module__disabled___Ab4Hh {
|
|
@@ -2117,7 +2142,7 @@
|
|
|
2117
2142
|
flex-grow: 0;
|
|
2118
2143
|
}
|
|
2119
2144
|
.ToggleBase-module__toggleBase___Vkhhf.ToggleBase-module__active___q_Db4 {
|
|
2120
|
-
background-color: var(--
|
|
2145
|
+
background-color: var(--primary-500);
|
|
2121
2146
|
}
|
|
2122
2147
|
.ToggleBase-module__toggleBase___Vkhhf.ToggleBase-module__active___q_Db4 .ToggleBase-module__spacer___Ib4qu {
|
|
2123
2148
|
flex-grow: 1;
|
|
@@ -2152,7 +2177,7 @@
|
|
|
2152
2177
|
background-color: var(--error-300);
|
|
2153
2178
|
}
|
|
2154
2179
|
.ToggleBase-module__toggleBase___Vkhhf:not(.ToggleBase-module__disabled___Znl75).ToggleBase-module__hover___KiQjy.ToggleBase-module__active___q_Db4, .ToggleBase-module__toggleBase___Vkhhf:not(.ToggleBase-module__disabled___Znl75):hover.ToggleBase-module__active___q_Db4 {
|
|
2155
|
-
background-color: var(--
|
|
2180
|
+
background-color: var(--primary-600);
|
|
2156
2181
|
}
|
|
2157
2182
|
.ToggleBase-module__toggleBase___Vkhhf:not(.ToggleBase-module__disabled___Znl75).ToggleBase-module__hover___KiQjy.ToggleBase-module__active___q_Db4.ToggleBase-module__error___IfdU2, .ToggleBase-module__toggleBase___Vkhhf:not(.ToggleBase-module__disabled___Znl75):hover.ToggleBase-module__active___q_Db4.ToggleBase-module__error___IfdU2 {
|
|
2158
2183
|
background-color: var(--error-600);
|
|
@@ -2160,11 +2185,13 @@
|
|
|
2160
2185
|
}
|
|
2161
2186
|
.ToggleBase-module__toggleBase___Vkhhf.ToggleBase-module__disabled___Znl75 {
|
|
2162
2187
|
cursor: default;
|
|
2188
|
+
pointer-events: none;
|
|
2163
2189
|
opacity: 0.5;
|
|
2164
2190
|
}
|
|
2165
2191
|
@media only screen and (min-width: 1024px) {
|
|
2166
2192
|
.ToggleBase-module__toggleBase___Vkhhf.ToggleBase-module__disabled___Znl75.ToggleBase-module__hover___KiQjy, .ToggleBase-module__toggleBase___Vkhhf.ToggleBase-module__disabled___Znl75:hover {
|
|
2167
2193
|
cursor: default;
|
|
2194
|
+
pointer-events: none;
|
|
2168
2195
|
opacity: 0.5;
|
|
2169
2196
|
}
|
|
2170
2197
|
}
|
|
@@ -2333,21 +2360,21 @@
|
|
|
2333
2360
|
}
|
|
2334
2361
|
@media only screen and (min-width: 1024px) {
|
|
2335
2362
|
.TagCheckbox-module__tagCheckbox___MS2eW:hover {
|
|
2336
|
-
box-shadow: 0 0 0 1px var(--
|
|
2337
|
-
background-color: var(--
|
|
2363
|
+
box-shadow: 0 0 0 1px var(--primary-200);
|
|
2364
|
+
background-color: var(--primary-50);
|
|
2338
2365
|
}
|
|
2339
2366
|
}
|
|
2340
2367
|
.TagCheckbox-module__tagCheckbox___MS2eW.TagCheckbox-module__checked___fWLOu {
|
|
2341
|
-
box-shadow: 0 0 0 1px var(--
|
|
2342
|
-
background-color: var(--
|
|
2368
|
+
box-shadow: 0 0 0 1px var(--primary-500);
|
|
2369
|
+
background-color: var(--primary-500);
|
|
2343
2370
|
}
|
|
2344
2371
|
.TagCheckbox-module__tagCheckbox___MS2eW.TagCheckbox-module__checked___fWLOu svg {
|
|
2345
2372
|
opacity: 1;
|
|
2346
2373
|
}
|
|
2347
2374
|
@media only screen and (min-width: 1024px) {
|
|
2348
2375
|
.TagCheckbox-module__tagCheckbox___MS2eW.TagCheckbox-module__checked___fWLOu:hover {
|
|
2349
|
-
box-shadow: 0 0 0 1px var(--
|
|
2350
|
-
background-color: var(--
|
|
2376
|
+
box-shadow: 0 0 0 1px var(--primary-600);
|
|
2377
|
+
background-color: var(--primary-600);
|
|
2351
2378
|
}
|
|
2352
2379
|
}
|
|
2353
2380
|
.TagCheckbox-module__tagCheckbox___MS2eW.TagCheckbox-module__disabled___wQS0b {
|
|
@@ -2410,7 +2437,7 @@
|
|
|
2410
2437
|
background-color: var(--gray-100);
|
|
2411
2438
|
}
|
|
2412
2439
|
.TagCount-module__tagCount___tT9Gy.TagCount-module__color___SZmrc {
|
|
2413
|
-
background-color: var(--
|
|
2440
|
+
background-color: var(--primary-100);
|
|
2414
2441
|
}
|
|
2415
2442
|
.TagCount-module__tagCount___tT9Gy.TagCount-module__small___ejCLc {
|
|
2416
2443
|
padding: 2px 4px 2px 4px;
|
|
@@ -2477,16 +2504,16 @@
|
|
|
2477
2504
|
background-color: var(--gray-50);
|
|
2478
2505
|
}
|
|
2479
2506
|
.Tag-module__tag___z87CD.Tag-module__active___uw5nt {
|
|
2480
|
-
border: 1px solid var(--
|
|
2481
|
-
background-color: var(--
|
|
2507
|
+
border: 1px solid var(--primary-200);
|
|
2508
|
+
background-color: var(--primary-50);
|
|
2482
2509
|
}
|
|
2483
2510
|
.Tag-module__tag___z87CD.Tag-module__active___uw5nt:hover {
|
|
2484
|
-
border: 1px solid var(--
|
|
2485
|
-
background-color: var(--
|
|
2511
|
+
border: 1px solid var(--primary-300);
|
|
2512
|
+
background-color: var(--primary-100);
|
|
2486
2513
|
}
|
|
2487
2514
|
.Tag-module__tag___z87CD.Tag-module__active___uw5nt:hover {
|
|
2488
|
-
border: 1px solid var(--
|
|
2489
|
-
background-color: var(--
|
|
2515
|
+
border: 1px solid var(--primary-300);
|
|
2516
|
+
background-color: var(--primary-100);
|
|
2490
2517
|
}
|
|
2491
2518
|
.Tag-module__tag___z87CD.Tag-module__small___ob2Q8 {
|
|
2492
2519
|
padding: 2px 7px;
|
|
@@ -2922,7 +2949,7 @@
|
|
|
2922
2949
|
justify-content: center;
|
|
2923
2950
|
}
|
|
2924
2951
|
.DropdownItem-module__dropdownItem___N8ZNV .DropdownItem-module__check___e4EmQ svg * {
|
|
2925
|
-
stroke: var(--
|
|
2952
|
+
stroke: var(--primary-500);
|
|
2926
2953
|
}
|
|
2927
2954
|
.DropdownItem-module__dropdownItem___N8ZNV .DropdownItem-module__check___e4EmQ svg {
|
|
2928
2955
|
width: 20px;
|
|
@@ -2942,7 +2969,7 @@
|
|
|
2942
2969
|
}
|
|
2943
2970
|
}
|
|
2944
2971
|
.DropdownItem-module__dropdownItem___N8ZNV.DropdownItem-module__selected___gw70Z {
|
|
2945
|
-
background-color: var(--
|
|
2972
|
+
background-color: var(--primary-50);
|
|
2946
2973
|
}
|
|
2947
2974
|
.DropdownItem-module__dropdownItem___N8ZNV.DropdownItem-module__selected___gw70Z .DropdownItem-module__check___e4EmQ {
|
|
2948
2975
|
display: flex;
|
|
@@ -2950,12 +2977,12 @@
|
|
|
2950
2977
|
}
|
|
2951
2978
|
@media only screen and (min-width: 1024px) {
|
|
2952
2979
|
.DropdownItem-module__dropdownItem___N8ZNV.DropdownItem-module__selected___gw70Z:hover {
|
|
2953
|
-
background-color: var(--
|
|
2980
|
+
background-color: var(--primary-100);
|
|
2954
2981
|
}
|
|
2955
2982
|
}
|
|
2956
2983
|
@media only screen and (max-width: 1024px) {
|
|
2957
2984
|
.DropdownItem-module__dropdownItem___N8ZNV.DropdownItem-module__selected___gw70Z:active {
|
|
2958
|
-
background-color: var(--
|
|
2985
|
+
background-color: var(--primary-100);
|
|
2959
2986
|
}
|
|
2960
2987
|
}
|
|
2961
2988
|
.DropdownItem-module__dropdownItem___N8ZNV:disabled {
|
|
@@ -3064,13 +3091,13 @@
|
|
|
3064
3091
|
stroke: var(--gray-300);
|
|
3065
3092
|
}
|
|
3066
3093
|
.LoadingIndicator-module__LoadingIndicator___iELVb.LoadingIndicator-module__lineSimple___j3ypM .LoadingIndicator-module__icon___mgj_t svg path:last-child {
|
|
3067
|
-
stroke: var(--
|
|
3094
|
+
stroke: var(--primary-500);
|
|
3068
3095
|
}
|
|
3069
3096
|
.LoadingIndicator-module__LoadingIndicator___iELVb.LoadingIndicator-module__lineSpinner___A2m7Y .LoadingIndicator-module__icon___mgj_t svg path:first-child {
|
|
3070
3097
|
stroke: var(--gray-300);
|
|
3071
3098
|
}
|
|
3072
3099
|
.LoadingIndicator-module__LoadingIndicator___iELVb.LoadingIndicator-module__lineSpinner___A2m7Y .LoadingIndicator-module__icon___mgj_t svg path:last-child {
|
|
3073
|
-
stroke: var(--
|
|
3100
|
+
stroke: var(--primary-500);
|
|
3074
3101
|
}
|
|
3075
3102
|
.LoadingIndicator-module__LoadingIndicator___iELVb.LoadingIndicator-module__small___MXHKy {
|
|
3076
3103
|
gap: 16px;
|
|
@@ -3162,7 +3189,7 @@
|
|
|
3162
3189
|
position: absolute;
|
|
3163
3190
|
top: 0;
|
|
3164
3191
|
left: 0;
|
|
3165
|
-
background-color: var(--
|
|
3192
|
+
background-color: var(--primary-400);
|
|
3166
3193
|
}
|
|
3167
3194
|
.VideoProgressBar-module__videoProgressBar___QrnSp:not(.VideoProgressBar-module__dragging___eO_Va) .VideoProgressBar-module__progressBar___m_P6t {
|
|
3168
3195
|
transition: width linear 0.2s;
|
|
@@ -3356,7 +3383,7 @@
|
|
|
3356
3383
|
}
|
|
3357
3384
|
@media only screen and (min-width: 1024px) {
|
|
3358
3385
|
.PlayButton-module__PlayButton___JmGh_.PlayButton-module__light___UMWaJ:hover {
|
|
3359
|
-
background-color: var(--
|
|
3386
|
+
background-color: var(--primary-400);
|
|
3360
3387
|
}
|
|
3361
3388
|
}
|
|
3362
3389
|
.PlayButton-module__PlayButton___JmGh_.PlayButton-module__dark___BHsWx {
|
|
@@ -3414,7 +3441,7 @@
|
|
|
3414
3441
|
width: 4px;
|
|
3415
3442
|
height: 4px;
|
|
3416
3443
|
border-radius: 50%;
|
|
3417
|
-
background-color: var(--
|
|
3444
|
+
background-color: var(--primary-400);
|
|
3418
3445
|
}
|
|
3419
3446
|
.CalendarDay-module__CalendarDayWrapper___oK70p .CalendarDay-module__CalendarDay___VgFhj .CalendarDay-module__text___ft0zM, .CalendarDay-module__CalendarDayWrapper___oK70p .CalendarDay-module__CalendarDay___VgFhj .CalendarDay-module__info___MvJmM {
|
|
3420
3447
|
width: 100%;
|
|
@@ -3469,16 +3496,16 @@
|
|
|
3469
3496
|
}
|
|
3470
3497
|
}
|
|
3471
3498
|
.CalendarDay-module__CalendarDayWrapper___oK70p .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__currentDay___J6WB3 {
|
|
3472
|
-
background-color: var(--
|
|
3499
|
+
background-color: var(--primary-50);
|
|
3473
3500
|
}
|
|
3474
3501
|
@media only screen and (min-width: 1024px) {
|
|
3475
3502
|
.CalendarDay-module__CalendarDayWrapper___oK70p .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__currentDay___J6WB3:hover {
|
|
3476
|
-
background-color: var(--
|
|
3503
|
+
background-color: var(--primary-100);
|
|
3477
3504
|
}
|
|
3478
3505
|
}
|
|
3479
3506
|
@media only screen and (max-width: 1024px) {
|
|
3480
3507
|
.CalendarDay-module__CalendarDayWrapper___oK70p .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__currentDay___J6WB3:active {
|
|
3481
|
-
background-color: var(--
|
|
3508
|
+
background-color: var(--primary-100);
|
|
3482
3509
|
}
|
|
3483
3510
|
}
|
|
3484
3511
|
.CalendarDay-module__CalendarDayWrapper___oK70p .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__holiday___cQBoW .CalendarDay-module__text___ft0zM {
|
|
@@ -3518,7 +3545,7 @@
|
|
|
3518
3545
|
}
|
|
3519
3546
|
}
|
|
3520
3547
|
.CalendarDay-module__CalendarDayWrapper___oK70p .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__active___LxSGE {
|
|
3521
|
-
background-color: var(--
|
|
3548
|
+
background-color: var(--primary-500);
|
|
3522
3549
|
}
|
|
3523
3550
|
.CalendarDay-module__CalendarDayWrapper___oK70p .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__active___LxSGE .CalendarDay-module__mark___jB0aT:after {
|
|
3524
3551
|
background-color: var(--base-white);
|
|
@@ -3527,16 +3554,16 @@
|
|
|
3527
3554
|
color: var(--base-white);
|
|
3528
3555
|
}
|
|
3529
3556
|
.CalendarDay-module__CalendarDayWrapper___oK70p .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__active___LxSGE .CalendarDay-module__info___MvJmM {
|
|
3530
|
-
color: var(--
|
|
3557
|
+
color: var(--primary-300);
|
|
3531
3558
|
}
|
|
3532
3559
|
@media only screen and (min-width: 1024px) {
|
|
3533
3560
|
.CalendarDay-module__CalendarDayWrapper___oK70p .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__active___LxSGE:hover {
|
|
3534
|
-
background-color: var(--
|
|
3561
|
+
background-color: var(--primary-600);
|
|
3535
3562
|
}
|
|
3536
3563
|
}
|
|
3537
3564
|
@media only screen and (max-width: 1024px) {
|
|
3538
3565
|
.CalendarDay-module__CalendarDayWrapper___oK70p .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__active___LxSGE:active {
|
|
3539
|
-
background-color: var(--
|
|
3566
|
+
background-color: var(--primary-600);
|
|
3540
3567
|
}
|
|
3541
3568
|
}
|
|
3542
3569
|
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__filter___jE_gQ:before {
|
|
@@ -3595,10 +3622,10 @@
|
|
|
3595
3622
|
background-color: var(--gray-100);
|
|
3596
3623
|
}
|
|
3597
3624
|
.CalendarMonth-module__CalendarMonth___BVPk3.CalendarMonth-module__current___iR71C:not(.CalendarMonth-module__CalendarMonth___BVPk3.CalendarMonth-module__disabled___VNFpt) {
|
|
3598
|
-
background-color: var(--
|
|
3625
|
+
background-color: var(--primary-50);
|
|
3599
3626
|
}
|
|
3600
3627
|
.CalendarMonth-module__CalendarMonth___BVPk3.CalendarMonth-module__current___iR71C:not(.CalendarMonth-module__CalendarMonth___BVPk3.CalendarMonth-module__disabled___VNFpt):hover {
|
|
3601
|
-
background-color: var(--
|
|
3628
|
+
background-color: var(--primary-100);
|
|
3602
3629
|
}
|
|
3603
3630
|
.CalendarMonth-module__CalendarMonth___BVPk3.CalendarMonth-module__disabled___VNFpt {
|
|
3604
3631
|
color: var(--gray-400);
|
|
@@ -3635,10 +3662,10 @@
|
|
|
3635
3662
|
background-color: var(--gray-100);
|
|
3636
3663
|
}
|
|
3637
3664
|
.CalendarYear-module__CalendarYear___gMG1A.CalendarYear-module__current___aLXpm {
|
|
3638
|
-
background-color: var(--
|
|
3665
|
+
background-color: var(--primary-50);
|
|
3639
3666
|
}
|
|
3640
3667
|
.CalendarYear-module__CalendarYear___gMG1A.CalendarYear-module__current___aLXpm:hover {
|
|
3641
|
-
background-color: var(--
|
|
3668
|
+
background-color: var(--primary-100);
|
|
3642
3669
|
}
|
|
3643
3670
|
.CalendarYear-module__CalendarYear___gMG1A.CalendarYear-module__disabled___dIYvt {
|
|
3644
3671
|
color: var(--gray-400);
|
|
@@ -3663,7 +3690,7 @@
|
|
|
3663
3690
|
font-variant: normal;
|
|
3664
3691
|
}
|
|
3665
3692
|
.CalendarButton-module__CalendarButton___yVvoS.CalendarButton-module__black____RFmq:hover:not(.CalendarButton-module__CalendarButton___yVvoS.CalendarButton-module__black____RFmq:disabled) {
|
|
3666
|
-
color: var(--
|
|
3693
|
+
color: var(--primary-500);
|
|
3667
3694
|
}
|
|
3668
3695
|
.CalendarButton-module__CalendarButton___yVvoS.CalendarButton-module__gray___JG7y4 {
|
|
3669
3696
|
font-size: 18px;
|
|
@@ -3676,7 +3703,7 @@
|
|
|
3676
3703
|
font-variant: normal;
|
|
3677
3704
|
}
|
|
3678
3705
|
.CalendarButton-module__CalendarButton___yVvoS.CalendarButton-module__gray___JG7y4:hover:not(.CalendarButton-module__CalendarButton___yVvoS.CalendarButton-module__gray___JG7y4:disabled) {
|
|
3679
|
-
color: var(--
|
|
3706
|
+
color: var(--primary-500);
|
|
3680
3707
|
}
|
|
3681
3708
|
.CalendarButton-module__CalendarButton___yVvoS:disabled {
|
|
3682
3709
|
cursor: default;
|