indicator-ui 0.1.39 → 0.1.41
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 +1027 -21
- package/dist/index.css.map +1 -1
- package/dist/index.js +893 -333
- package/dist/index.js.map +1 -1
- package/dist/scss/ui/Buttons/styles/mixins/properties/index.scss +1 -0
- package/dist/scss/ui/Buttons/styles/mixins/properties/link-dark-theme.scss +48 -0
- package/dist/scss/ui/Buttons/styles/mixins/properties/primary.scss +18 -0
- package/dist/scss/ui/Buttons/styles/mixins/properties/secondary-color.scss +31 -0
- package/dist/scss/ui/Buttons/styles/mixins/properties/secondary-gray.scss +39 -0
- package/dist/scss/ui/Buttons/styles/mixins/properties/tertiary-color.scss +39 -0
- package/dist/scss/ui/Buttons/styles/mixins/properties/tertiary-white.scss +39 -0
- package/dist/scss/ui/MicroButton/styles/mixins/properties/index.scss +1 -0
- package/dist/scss/ui/MicroButton/styles/mixins/properties/rose.scss +21 -0
- package/dist/scss/ui/ToggleBase/styles/mixins/active.scss +6 -2
- package/dist/scss/ui/ToggleBase/styles/mixins/base.scss +7 -2
- package/dist/scss/ui/ToggleBase/styles/mixins/hover.scss +12 -4
- package/dist/types/src/hooks/index.d.ts +1 -0
- package/dist/types/src/hooks/modalWindows/useBackdropModal.d.ts +1 -1
- package/dist/types/src/hooks/simpleRefWork.d.ts +1 -1
- package/dist/types/src/hooks/ui-animations/assets/carouselAnimations.d.ts +9 -0
- package/dist/types/src/hooks/ui-animations/assets/index.d.ts +1 -0
- package/dist/types/src/hooks/ui-animations/index.d.ts +1 -0
- package/dist/types/src/hooks/ui-animations/useCarousel.d.ts +12 -0
- package/dist/types/src/hooks/useAsyncState.d.ts +17 -0
- package/dist/types/src/ui/Buttons/types/ButtonTypes.d.ts +3 -1
- package/dist/types/src/ui/Buttons/ui/Button.d.ts +1 -0
- package/dist/types/src/ui/DateTimePicker/types/DateTimePickerTypes.d.ts +1 -0
- package/dist/types/src/ui/DateTimePicker/types/components/CalendarButtonTypes.d.ts +1 -0
- package/dist/types/src/ui/DateTimePicker/types/components/CalendarDayTypes.d.ts +1 -0
- package/dist/types/src/ui/DateTimePicker/types/components/CalendarMonthTypes.d.ts +1 -0
- package/dist/types/src/ui/DateTimePicker/types/components/CalendarYearTypes.d.ts +1 -0
- package/dist/types/src/ui/DateTimePicker/types/components/TimePickerFeedTypes.d.ts +1 -0
- package/dist/types/src/ui/DateTimePicker/types/pickers/DatePickerTypes.d.ts +1 -0
- package/dist/types/src/ui/DateTimePicker/types/pickers/MonthPickerTypes.d.ts +1 -0
- package/dist/types/src/ui/DateTimePicker/types/pickers/TimePickerTypes.d.ts +1 -0
- package/dist/types/src/ui/DateTimePicker/types/pickers/YearPickerTypes.d.ts +1 -0
- package/dist/types/src/ui/DateTimePicker/ui/components/CalendarButton.d.ts +1 -1
- package/dist/types/src/ui/DateTimePicker/ui/components/CalendarDay.d.ts +1 -1
- package/dist/types/src/ui/DateTimePicker/ui/components/CalendarMonth.d.ts +1 -1
- package/dist/types/src/ui/DateTimePicker/ui/components/CalendarYear.d.ts +1 -1
- package/dist/types/src/ui/DateTimePicker/ui/components/TimePickerFeed.d.ts +1 -1
- package/dist/types/src/ui/DateTimePicker/ui/pickers/DatePicker.d.ts +1 -1
- package/dist/types/src/ui/DateTimePicker/ui/pickers/MonthPicker.d.ts +1 -1
- package/dist/types/src/ui/DateTimePicker/ui/pickers/TimePicker.d.ts +1 -1
- package/dist/types/src/ui/DateTimePicker/ui/pickers/YearPicker.d.ts +1 -1
- package/dist/types/src/ui/Dropdown/types/DropdownTypes.d.ts +1 -0
- package/dist/types/src/ui/DropdownItem/types/DropdownItemTypes.d.ts +1 -0
- package/dist/types/src/ui/FormBuilder/ui/FormBuilder.d.ts +11 -1
- package/dist/types/src/ui/InputFields/DateTimeField/types/DateTimeFieldTypes.d.ts +1 -0
- 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/DateTimeFieldMask/types/index.d.ts +4 -0
- package/dist/types/src/ui/InputFields/DateTimeFieldMask/ui/DateTimeFieldMask.d.ts +1 -1
- package/dist/types/src/ui/InputFields/DateTimeRangeField/types/DateRangeFieldTypes.d.ts +1 -0
- package/dist/types/src/ui/InputFields/DateTimeRangeField/types/TimeRangeFieldTypes.d.ts +1 -0
- package/dist/types/src/ui/InputFields/DateTimeRangeField/ui/DateRangeField.d.ts +1 -1
- package/dist/types/src/ui/InputFields/DateTimeRangeField/ui/DateTimeRangeField.d.ts +1 -1
- package/dist/types/src/ui/InputFields/DateTimeRangeField/ui/TimeRangeField.d.ts +1 -1
- package/dist/types/src/ui/InputFields/FlexField/types/FlexFieldTypes.d.ts +4 -0
- package/dist/types/src/ui/InputFields/FlexField/ui/FlexField.d.ts +1 -0
- package/dist/types/src/ui/InputFields/InputFieldWrapper/types/InputFieldWrapperTypes.d.ts +1 -0
- package/dist/types/src/ui/InputFields/InputFieldWrapper/ui/InputFieldWrapper.d.ts +1 -1
- package/dist/types/src/ui/InputFields/SelectField/types/SelectFieldTypes.d.ts +1 -0
- package/dist/types/src/ui/MediaViewer/ui/MediaViewer.d.ts +6 -1
- package/dist/types/src/ui/MicroButton/types/MicroButtonTypes.d.ts +1 -1
- package/dist/types/src/ui/PaginationBar/types/PageSwitcherTypes.d.ts +1 -0
- package/dist/types/src/ui/PaginationBar/types/PaginationBarTypes.d.ts +1 -0
- package/dist/types/src/ui/PaginationBar/ui/PageSwitcher.d.ts +1 -1
- package/dist/types/src/ui/PaginationBar/ui/PaginationBar.d.ts +1 -1
- package/dist/types/src/ui/TabButtons/types/TabButtonsTypes.d.ts +1 -0
- package/dist/types/src/ui/TabButtons/ui/TabButtons.d.ts +1 -1
- package/dist/types/src/ui/TabFrame/types/TabFrameTypes.d.ts +1 -0
- package/dist/types/src/ui/TabFrame/ui/TabFrame.d.ts +1 -1
- package/dist/types/src/ui/Toggle/types/ToggleTypes.d.ts +1 -0
- package/dist/types/src/ui/ToggleBase/types/ToggleBaseTypes.d.ts +1 -0
- package/dist/types/src/ui/ToggleBase/ui/ToggleBase.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -69,6 +69,45 @@
|
|
|
69
69
|
--success-800: #085D3A;
|
|
70
70
|
--success-900: #074D31;
|
|
71
71
|
--success-950: #053321;
|
|
72
|
+
|
|
73
|
+
--gray-iron-25: #FCFCFC;
|
|
74
|
+
--gray-iron-50: #FAFAFA;
|
|
75
|
+
--gray-iron-100: #F4F4F5;
|
|
76
|
+
--gray-iron-200: #E4E4E7;
|
|
77
|
+
--gray-iron-300: #D1D1D6;
|
|
78
|
+
--gray-iron-400: #A0A0AB;
|
|
79
|
+
--gray-iron-500: #70707B;
|
|
80
|
+
--gray-iron-600: #51525C;
|
|
81
|
+
--gray-iron-700: #3F3F46;
|
|
82
|
+
--gray-iron-800: #26272B;
|
|
83
|
+
--gray-iron-900: #18181B;
|
|
84
|
+
--gray-iron-950: #131316;
|
|
85
|
+
|
|
86
|
+
--rose-25: #FFF5F6;
|
|
87
|
+
--rose-50: #FFF1F3;
|
|
88
|
+
--rose-100: #FFE4E8;
|
|
89
|
+
--rose-200: #FECDD6;
|
|
90
|
+
--rose-300: #FEA3B4;
|
|
91
|
+
--rose-400: #FD6F8E;
|
|
92
|
+
--rose-500: #F63D68;
|
|
93
|
+
--rose-600: #E31B54;
|
|
94
|
+
--rose-700: #C01048;
|
|
95
|
+
--rose-800: #A11043;
|
|
96
|
+
--rose-900: #89123E;
|
|
97
|
+
--rose-950: #510B24;
|
|
98
|
+
|
|
99
|
+
--pink-25: #FEF6FB;
|
|
100
|
+
--pink-50: #FDF2FA;
|
|
101
|
+
--pink-100: #FCE7F6;
|
|
102
|
+
--pink-200: #FCCEEE;
|
|
103
|
+
--pink-300: #FAA7E0;
|
|
104
|
+
--pink-400: #F670C7;
|
|
105
|
+
--pink-500: #EE46BC;
|
|
106
|
+
--pink-600: #DD2590;
|
|
107
|
+
--pink-700: #C11574;
|
|
108
|
+
--pink-800: #9E165F;
|
|
109
|
+
--pink-900: #851651;
|
|
110
|
+
--pink-950: #4E0D30;
|
|
72
111
|
}
|
|
73
112
|
|
|
74
113
|
/*!*****************************************************************************************************!*\
|
|
@@ -331,6 +370,19 @@
|
|
|
331
370
|
.Buttons-module__button___I3yLe.Buttons-module__primary____crHN:disabled, .Buttons-module__button___I3yLe.Buttons-module__primary____crHN.Buttons-module__disabled___INiFx {
|
|
332
371
|
opacity: 0.3;
|
|
333
372
|
}
|
|
373
|
+
.Buttons-module__button___I3yLe.Buttons-module__primaryDarkTheme___hud24 {
|
|
374
|
+
background-color: var(--rose-500);
|
|
375
|
+
}
|
|
376
|
+
@media only screen and (min-width: 1024px) {
|
|
377
|
+
.Buttons-module__button___I3yLe.Buttons-module__primaryDarkTheme___hud24:not(.Buttons-module__disabled___INiFx):not(:disabled):hover {
|
|
378
|
+
background-color: var(--rose-600);
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
@media (min-width: 481px) and (max-width: 1279px) {
|
|
382
|
+
.Buttons-module__button___I3yLe.Buttons-module__primaryDarkTheme___hud24:not(.Buttons-module__disabled___INiFx):not(:disabled):active {
|
|
383
|
+
background-color: var(--rose-600);
|
|
384
|
+
}
|
|
385
|
+
}
|
|
334
386
|
.Buttons-module__button___I3yLe.Buttons-module__secondaryColor___GONLZ {
|
|
335
387
|
border-radius: 8px;
|
|
336
388
|
background-color: var(--base-white);
|
|
@@ -358,6 +410,28 @@
|
|
|
358
410
|
.Buttons-module__button___I3yLe.Buttons-module__secondaryColor___GONLZ:disabled, .Buttons-module__button___I3yLe.Buttons-module__secondaryColor___GONLZ.Buttons-module__disabled___INiFx {
|
|
359
411
|
opacity: 0.5;
|
|
360
412
|
}
|
|
413
|
+
.Buttons-module__button___I3yLe.Buttons-module__secondaryColorDarkTheme___NelUU {
|
|
414
|
+
background-color: var(--base-black);
|
|
415
|
+
border: 1px solid var(--rose-900);
|
|
416
|
+
}
|
|
417
|
+
.Buttons-module__button___I3yLe.Buttons-module__secondaryColorDarkTheme___NelUU .Buttons-module__icon___U2AOU svg * {
|
|
418
|
+
stroke: var(--rose-500);
|
|
419
|
+
}
|
|
420
|
+
.Buttons-module__button___I3yLe.Buttons-module__secondaryColorDarkTheme___NelUU .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__secondaryColorDarkTheme___NelUU .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
421
|
+
color: var(--rose-500);
|
|
422
|
+
}
|
|
423
|
+
@media only screen and (min-width: 1024px) {
|
|
424
|
+
.Buttons-module__button___I3yLe.Buttons-module__secondaryColorDarkTheme___NelUU:not(.Buttons-module__disabled___INiFx):not(:disabled):hover {
|
|
425
|
+
background-color: var(--rose-950);
|
|
426
|
+
border: 1px solid var(--rose-700);
|
|
427
|
+
}
|
|
428
|
+
}
|
|
429
|
+
@media (min-width: 481px) and (max-width: 1279px) {
|
|
430
|
+
.Buttons-module__button___I3yLe.Buttons-module__secondaryColorDarkTheme___NelUU:not(.Buttons-module__disabled___INiFx):not(:disabled):active {
|
|
431
|
+
background-color: var(--rose-950);
|
|
432
|
+
border: 1px solid var(--rose-700);
|
|
433
|
+
}
|
|
434
|
+
}
|
|
361
435
|
.Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne {
|
|
362
436
|
border-radius: 8px;
|
|
363
437
|
background-color: var(--base-white);
|
|
@@ -391,6 +465,34 @@
|
|
|
391
465
|
.Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne:disabled, .Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne.Buttons-module__disabled___INiFx {
|
|
392
466
|
opacity: 0.5;
|
|
393
467
|
}
|
|
468
|
+
.Buttons-module__button___I3yLe.Buttons-module__secondaryGrayDarkTheme___tBYCy {
|
|
469
|
+
background-color: var(--gray-iron-950);
|
|
470
|
+
border: 1px solid var(--gray-iron-700);
|
|
471
|
+
}
|
|
472
|
+
.Buttons-module__button___I3yLe.Buttons-module__secondaryGrayDarkTheme___tBYCy .Buttons-module__icon___U2AOU svg * {
|
|
473
|
+
stroke: var(--gray-iron-200);
|
|
474
|
+
}
|
|
475
|
+
.Buttons-module__button___I3yLe.Buttons-module__secondaryGrayDarkTheme___tBYCy .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__secondaryGrayDarkTheme___tBYCy .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
476
|
+
color: var(--gray-iron-200);
|
|
477
|
+
}
|
|
478
|
+
@media only screen and (min-width: 1024px) {
|
|
479
|
+
.Buttons-module__button___I3yLe.Buttons-module__secondaryGrayDarkTheme___tBYCy:not(.Buttons-module__disabled___INiFx):not(:disabled):hover {
|
|
480
|
+
background-color: var(--gray-iron-800);
|
|
481
|
+
border: 1px solid var(--gray-iron-700);
|
|
482
|
+
}
|
|
483
|
+
.Buttons-module__button___I3yLe.Buttons-module__secondaryGrayDarkTheme___tBYCy:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__text___htxqX {
|
|
484
|
+
color: var(--gray-iron-200);
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
@media (min-width: 481px) and (max-width: 1279px) {
|
|
488
|
+
.Buttons-module__button___I3yLe.Buttons-module__secondaryGrayDarkTheme___tBYCy:not(.Buttons-module__disabled___INiFx):not(:disabled):active {
|
|
489
|
+
background-color: var(--gray-iron-800);
|
|
490
|
+
border: 1px solid var(--gray-iron-700);
|
|
491
|
+
}
|
|
492
|
+
.Buttons-module__button___I3yLe.Buttons-module__secondaryGrayDarkTheme___tBYCy:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__text___htxqX {
|
|
493
|
+
color: var(--gray-iron-200);
|
|
494
|
+
}
|
|
495
|
+
}
|
|
394
496
|
.Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq {
|
|
395
497
|
border: 1px solid transparent;
|
|
396
498
|
}
|
|
@@ -419,6 +521,28 @@
|
|
|
419
521
|
.Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq:disabled, .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq.Buttons-module__disabled___INiFx {
|
|
420
522
|
opacity: 0.5;
|
|
421
523
|
}
|
|
524
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryWhiteDarkTheme___hDj84 .Buttons-module__icon___U2AOU svg * {
|
|
525
|
+
stroke: var(--rose-100);
|
|
526
|
+
}
|
|
527
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryWhiteDarkTheme___hDj84 .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhiteDarkTheme___hDj84 .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
528
|
+
color: var(--rose-100);
|
|
529
|
+
}
|
|
530
|
+
@media only screen and (min-width: 1024px) {
|
|
531
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryWhiteDarkTheme___hDj84:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhiteDarkTheme___hDj84:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
532
|
+
color: var(--base-white);
|
|
533
|
+
}
|
|
534
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryWhiteDarkTheme___hDj84:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__icon___U2AOU svg * {
|
|
535
|
+
stroke: var(--base-white);
|
|
536
|
+
}
|
|
537
|
+
}
|
|
538
|
+
@media (min-width: 481px) and (max-width: 1279px) {
|
|
539
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryWhiteDarkTheme___hDj84:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhiteDarkTheme___hDj84:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
540
|
+
color: var(--base-white);
|
|
541
|
+
}
|
|
542
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryWhiteDarkTheme___hDj84:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__icon___U2AOU svg * {
|
|
543
|
+
stroke: var(--base-white);
|
|
544
|
+
}
|
|
545
|
+
}
|
|
422
546
|
.Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw {
|
|
423
547
|
border: 1px solid transparent;
|
|
424
548
|
}
|
|
@@ -447,6 +571,28 @@
|
|
|
447
571
|
.Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw:disabled, .Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw.Buttons-module__disabled___INiFx {
|
|
448
572
|
opacity: 0.5;
|
|
449
573
|
}
|
|
574
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryColorDarkTheme___MTRDk .Buttons-module__icon___U2AOU svg * {
|
|
575
|
+
stroke: var(--rose-500);
|
|
576
|
+
}
|
|
577
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryColorDarkTheme___MTRDk .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__tertiaryColorDarkTheme___MTRDk .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
578
|
+
color: var(--rose-500);
|
|
579
|
+
}
|
|
580
|
+
@media only screen and (min-width: 1024px) {
|
|
581
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryColorDarkTheme___MTRDk:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__tertiaryColorDarkTheme___MTRDk:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
582
|
+
color: var(--rose-700);
|
|
583
|
+
}
|
|
584
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryColorDarkTheme___MTRDk:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__icon___U2AOU svg * {
|
|
585
|
+
stroke: var(--rose-700);
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
@media (min-width: 481px) and (max-width: 1279px) {
|
|
589
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryColorDarkTheme___MTRDk:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__tertiaryColorDarkTheme___MTRDk:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
590
|
+
color: var(--rose-700);
|
|
591
|
+
}
|
|
592
|
+
.Buttons-module__button___I3yLe.Buttons-module__tertiaryColorDarkTheme___MTRDk:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__icon___U2AOU svg * {
|
|
593
|
+
stroke: var(--rose-700);
|
|
594
|
+
}
|
|
595
|
+
}
|
|
450
596
|
.Buttons-module__button___I3yLe.Buttons-module__tertiaryGray___y75cu {
|
|
451
597
|
border: 1px solid transparent;
|
|
452
598
|
}
|
|
@@ -571,6 +717,38 @@
|
|
|
571
717
|
.Buttons-module__button___I3yLe.Buttons-module__linkGray___CQYUd:disabled, .Buttons-module__button___I3yLe.Buttons-module__linkGray___CQYUd.Buttons-module__disabled___INiFx {
|
|
572
718
|
opacity: 0.5;
|
|
573
719
|
}
|
|
720
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd {
|
|
721
|
+
padding: 0 !important;
|
|
722
|
+
gap: 4px;
|
|
723
|
+
}
|
|
724
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd .Buttons-module__icon___U2AOU svg * {
|
|
725
|
+
stroke: var(--gray-iron-400);
|
|
726
|
+
}
|
|
727
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd .Buttons-module__content___lPb5_ {
|
|
728
|
+
padding: 0 !important;
|
|
729
|
+
}
|
|
730
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
731
|
+
color: var(--gray-iron-400);
|
|
732
|
+
}
|
|
733
|
+
@media only screen and (min-width: 1024px) {
|
|
734
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
735
|
+
color: var(--base-white);
|
|
736
|
+
}
|
|
737
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd:not(.Buttons-module__disabled___INiFx):not(:disabled):hover .Buttons-module__icon___U2AOU svg * {
|
|
738
|
+
stroke: var(--base-white);
|
|
739
|
+
}
|
|
740
|
+
}
|
|
741
|
+
@media (min-width: 481px) and (max-width: 1279px) {
|
|
742
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__content___lPb5_ .Buttons-module__text___htxqX, .Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__content___lPb5_ .Buttons-module__textSecondary___zZocr {
|
|
743
|
+
color: var(--base-white);
|
|
744
|
+
}
|
|
745
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd:not(.Buttons-module__disabled___INiFx):not(:disabled):active .Buttons-module__icon___U2AOU svg * {
|
|
746
|
+
stroke: var(--base-white);
|
|
747
|
+
}
|
|
748
|
+
}
|
|
749
|
+
.Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd:disabled, .Buttons-module__button___I3yLe.Buttons-module__linkDarkTheme___hAQhd.Buttons-module__disabled___INiFx {
|
|
750
|
+
opacity: 0.5;
|
|
751
|
+
}
|
|
574
752
|
.Buttons-module__button___I3yLe.Buttons-module__tabActive___chlqq {
|
|
575
753
|
border-radius: 6px;
|
|
576
754
|
background-color: var(--base-white);
|
|
@@ -852,6 +1030,29 @@
|
|
|
852
1030
|
stroke: var(--primary-500);
|
|
853
1031
|
}
|
|
854
1032
|
}
|
|
1033
|
+
.MicroButton-module__button___QMj95.MicroButton-module__rose___zhyPL {
|
|
1034
|
+
background: none;
|
|
1035
|
+
border: 1px solid transparent;
|
|
1036
|
+
}
|
|
1037
|
+
.MicroButton-module__button___QMj95.MicroButton-module__rose___zhyPL svg * {
|
|
1038
|
+
stroke: var(--rose-600);
|
|
1039
|
+
}
|
|
1040
|
+
@media only screen and (min-width: 1024px) {
|
|
1041
|
+
.MicroButton-module__button___QMj95.MicroButton-module__rose___zhyPL:not(.MicroButton-module__button___QMj95.MicroButton-module__rose___zhyPL:disabled):hover {
|
|
1042
|
+
background-color: var(--rose-900);
|
|
1043
|
+
}
|
|
1044
|
+
.MicroButton-module__button___QMj95.MicroButton-module__rose___zhyPL:not(.MicroButton-module__button___QMj95.MicroButton-module__rose___zhyPL:disabled):hover svg * {
|
|
1045
|
+
stroke: var(--rose-500);
|
|
1046
|
+
}
|
|
1047
|
+
}
|
|
1048
|
+
@media (min-width: 481px) and (max-width: 1279px) {
|
|
1049
|
+
.MicroButton-module__button___QMj95.MicroButton-module__rose___zhyPL:active {
|
|
1050
|
+
background-color: var(--rose-900);
|
|
1051
|
+
}
|
|
1052
|
+
.MicroButton-module__button___QMj95.MicroButton-module__rose___zhyPL:active svg * {
|
|
1053
|
+
stroke: var(--rose-500);
|
|
1054
|
+
}
|
|
1055
|
+
}
|
|
855
1056
|
.MicroButton-module__button___QMj95.MicroButton-module__redHover____WGXq {
|
|
856
1057
|
background: none;
|
|
857
1058
|
border: 1px solid transparent;
|
|
@@ -1011,10 +1212,10 @@
|
|
|
1011
1212
|
padding: 9px 11px;
|
|
1012
1213
|
border-radius: 8px;
|
|
1013
1214
|
gap: 12px;
|
|
1215
|
+
box-sizing: border-box;
|
|
1014
1216
|
background-color: var(--base-white);
|
|
1015
1217
|
border: 1px solid var(--gray-300);
|
|
1016
1218
|
box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.0509803922);
|
|
1017
|
-
box-sizing: border-box;
|
|
1018
1219
|
}
|
|
1019
1220
|
.FlexField-module__flexField___bQEfy {
|
|
1020
1221
|
display: flex;
|
|
@@ -1210,6 +1411,106 @@
|
|
|
1210
1411
|
font-style: normal;
|
|
1211
1412
|
font-variant: normal;
|
|
1212
1413
|
}
|
|
1414
|
+
.FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD {
|
|
1415
|
+
background-color: var(--gray-iron-950);
|
|
1416
|
+
border: 1px solid var(--gray-iron-800);
|
|
1417
|
+
}
|
|
1418
|
+
.FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD .FlexField-module__inputField___ckUI1 {
|
|
1419
|
+
font-size: 16px;
|
|
1420
|
+
line-height: 24px;
|
|
1421
|
+
color: var(--gray-iron-25);
|
|
1422
|
+
font-weight: 400;
|
|
1423
|
+
font-family: var(--golos-ui);
|
|
1424
|
+
font-stretch: normal;
|
|
1425
|
+
font-style: normal;
|
|
1426
|
+
font-variant: normal;
|
|
1427
|
+
}
|
|
1428
|
+
.FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD .FlexField-module__inputField___ckUI1::placeholder, .FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD .FlexField-module__inputField___ckUI1.FlexField-module__placeholder___LYS5Z {
|
|
1429
|
+
font-size: 16px;
|
|
1430
|
+
line-height: 24px;
|
|
1431
|
+
color: var(--gray-iron-500);
|
|
1432
|
+
font-weight: 400;
|
|
1433
|
+
font-family: var(--golos-ui);
|
|
1434
|
+
font-stretch: normal;
|
|
1435
|
+
font-style: normal;
|
|
1436
|
+
font-variant: normal;
|
|
1437
|
+
}
|
|
1438
|
+
.FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD .FlexField-module__icon___pHmKh svg * {
|
|
1439
|
+
stroke: var(--gray-iron-500);
|
|
1440
|
+
}
|
|
1441
|
+
.FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD .FlexField-module__textSupport___WGMzj {
|
|
1442
|
+
font-size: 16px;
|
|
1443
|
+
line-height: 24px;
|
|
1444
|
+
color: var(--gray-iron-500);
|
|
1445
|
+
font-weight: 400;
|
|
1446
|
+
font-family: var(--golos-ui);
|
|
1447
|
+
font-stretch: normal;
|
|
1448
|
+
font-style: normal;
|
|
1449
|
+
font-variant: normal;
|
|
1450
|
+
}
|
|
1451
|
+
.FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD .FlexField-module__help___ORoT_ svg * {
|
|
1452
|
+
stroke: var(--gray-iron-500);
|
|
1453
|
+
}
|
|
1454
|
+
.FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD .FlexField-module__dropdown___BqdfG svg * {
|
|
1455
|
+
stroke: var(--gray-iron-500);
|
|
1456
|
+
}
|
|
1457
|
+
.FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD .FlexField-module__button___TjLHK.FlexField-module__red___BY7NK svg * {
|
|
1458
|
+
stroke: var(--error-400);
|
|
1459
|
+
}
|
|
1460
|
+
.FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD .FlexField-module__button___TjLHK.FlexField-module__red___BY7NK:hover svg * {
|
|
1461
|
+
stroke: var(--error-500);
|
|
1462
|
+
}
|
|
1463
|
+
.FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD .FlexField-module__button___TjLHK.FlexField-module__gray___sjpVp svg * {
|
|
1464
|
+
stroke: var(--gray-iron-400);
|
|
1465
|
+
}
|
|
1466
|
+
.FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD .FlexField-module__button___TjLHK.FlexField-module__gray___sjpVp:hover svg * {
|
|
1467
|
+
stroke: var(--gray-iron-500);
|
|
1468
|
+
}
|
|
1469
|
+
.FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD.FlexField-module__focus___pkwN6 {
|
|
1470
|
+
border: 1px solid var(--gray-iron-700);
|
|
1471
|
+
}
|
|
1472
|
+
.FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD.FlexField-module__isError___VljDQ {
|
|
1473
|
+
border: 1px solid var(--error-900);
|
|
1474
|
+
}
|
|
1475
|
+
.FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD.FlexField-module__isError___VljDQ .FlexField-module__help___ORoT_ svg * {
|
|
1476
|
+
stroke: var(--error-500);
|
|
1477
|
+
}
|
|
1478
|
+
.FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD.FlexField-module__isError___VljDQ.FlexField-module__focus___pkwN6 {
|
|
1479
|
+
border: 1px solid var(--error-700);
|
|
1480
|
+
}
|
|
1481
|
+
.FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD.FlexField-module__disabled___lN8Vv {
|
|
1482
|
+
background-color: var(--gray-iron-950);
|
|
1483
|
+
}
|
|
1484
|
+
.FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD.FlexField-module__disabled___lN8Vv .FlexField-module__inputField___ckUI1 {
|
|
1485
|
+
font-size: 16px;
|
|
1486
|
+
line-height: 24px;
|
|
1487
|
+
color: var(--gray-iron-500);
|
|
1488
|
+
font-weight: 400;
|
|
1489
|
+
font-family: var(--golos-ui);
|
|
1490
|
+
font-stretch: normal;
|
|
1491
|
+
font-style: normal;
|
|
1492
|
+
font-variant: normal;
|
|
1493
|
+
}
|
|
1494
|
+
.FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD.FlexField-module__smallDisplay___y_Y9l .FlexField-module__inputField___ckUI1 {
|
|
1495
|
+
font-size: 16px;
|
|
1496
|
+
line-height: 24px;
|
|
1497
|
+
color: var(--gray-iron-25);
|
|
1498
|
+
font-weight: 400;
|
|
1499
|
+
font-family: var(--golos-ui);
|
|
1500
|
+
font-stretch: normal;
|
|
1501
|
+
font-style: normal;
|
|
1502
|
+
font-variant: normal;
|
|
1503
|
+
}
|
|
1504
|
+
.FlexField-module__flexField___bQEfy.FlexField-module__darkTheme___VCwjD.FlexField-module__largeDisplay___I3LHo .FlexField-module__inputField___ckUI1 {
|
|
1505
|
+
font-size: 20px;
|
|
1506
|
+
line-height: 24px;
|
|
1507
|
+
color: var(--gray-iron-25);
|
|
1508
|
+
font-weight: 400;
|
|
1509
|
+
font-family: var(--golos-ui);
|
|
1510
|
+
font-stretch: normal;
|
|
1511
|
+
font-style: normal;
|
|
1512
|
+
font-variant: normal;
|
|
1513
|
+
}
|
|
1213
1514
|
/*!***************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
1214
1515
|
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/InputFields/SelectField/styles/SelectField.module.scss ***!
|
|
1215
1516
|
\***************************************************************************************************************************************************************************************************************************************************************************************/
|
|
@@ -1336,6 +1637,84 @@
|
|
|
1336
1637
|
.InputFieldWrapper-module__inputFieldWrapper___QKhWg.InputFieldWrapper-module__display___EN4pl .InputFieldWrapper-module__helperLink___Kfen4 {
|
|
1337
1638
|
padding: 0;
|
|
1338
1639
|
}
|
|
1640
|
+
.InputFieldWrapper-module__inputFieldWrapper___QKhWg.InputFieldWrapper-module__darkTheme___lGNSp .InputFieldWrapper-module__labelText___n0EsW {
|
|
1641
|
+
font-size: 14px;
|
|
1642
|
+
line-height: 20px;
|
|
1643
|
+
color: var(--gray-iron-400);
|
|
1644
|
+
font-weight: 500;
|
|
1645
|
+
font-family: var(--golos-ui);
|
|
1646
|
+
font-stretch: normal;
|
|
1647
|
+
font-style: normal;
|
|
1648
|
+
font-variant: normal;
|
|
1649
|
+
}
|
|
1650
|
+
.InputFieldWrapper-module__inputFieldWrapper___QKhWg.InputFieldWrapper-module__darkTheme___lGNSp .InputFieldWrapper-module__labelText___n0EsW .InputFieldWrapper-module__required___SDv6c {
|
|
1651
|
+
font-size: 14px;
|
|
1652
|
+
line-height: 20px;
|
|
1653
|
+
color: var(--error-500);
|
|
1654
|
+
font-weight: 500;
|
|
1655
|
+
font-family: var(--golos-ui);
|
|
1656
|
+
font-stretch: normal;
|
|
1657
|
+
font-style: normal;
|
|
1658
|
+
font-variant: normal;
|
|
1659
|
+
}
|
|
1660
|
+
.InputFieldWrapper-module__inputFieldWrapper___QKhWg.InputFieldWrapper-module__darkTheme___lGNSp .InputFieldWrapper-module__hintText___Utfgx {
|
|
1661
|
+
font-size: 14px;
|
|
1662
|
+
line-height: 20px;
|
|
1663
|
+
color: var(--gray-iron-500);
|
|
1664
|
+
font-weight: 400;
|
|
1665
|
+
font-family: var(--golos-ui);
|
|
1666
|
+
font-stretch: normal;
|
|
1667
|
+
font-style: normal;
|
|
1668
|
+
font-variant: normal;
|
|
1669
|
+
}
|
|
1670
|
+
.InputFieldWrapper-module__inputFieldWrapper___QKhWg.InputFieldWrapper-module__darkTheme___lGNSp .InputFieldWrapper-module__hintError___v4J5W {
|
|
1671
|
+
font-size: 14px;
|
|
1672
|
+
line-height: 20px;
|
|
1673
|
+
color: var(--error-500);
|
|
1674
|
+
font-weight: 400;
|
|
1675
|
+
font-family: var(--golos-ui);
|
|
1676
|
+
font-stretch: normal;
|
|
1677
|
+
font-style: normal;
|
|
1678
|
+
font-variant: normal;
|
|
1679
|
+
}
|
|
1680
|
+
.InputFieldWrapper-module__inputFieldWrapper___QKhWg.InputFieldWrapper-module__darkTheme___lGNSp .InputFieldWrapper-module__helperLink___Kfen4 svg {
|
|
1681
|
+
width: 20px;
|
|
1682
|
+
height: 20px;
|
|
1683
|
+
flex: none;
|
|
1684
|
+
}
|
|
1685
|
+
.InputFieldWrapper-module__inputFieldWrapper___QKhWg.InputFieldWrapper-module__darkTheme___lGNSp .InputFieldWrapper-module__helperLink___Kfen4 svg * {
|
|
1686
|
+
stroke: var(--rose-500);
|
|
1687
|
+
}
|
|
1688
|
+
.InputFieldWrapper-module__inputFieldWrapper___QKhWg.InputFieldWrapper-module__darkTheme___lGNSp .InputFieldWrapper-module__helperLink___Kfen4 {
|
|
1689
|
+
font-size: 14px;
|
|
1690
|
+
line-height: 20px;
|
|
1691
|
+
color: var(--rose-500);
|
|
1692
|
+
font-weight: 400;
|
|
1693
|
+
font-family: var(--golos-ui);
|
|
1694
|
+
font-stretch: normal;
|
|
1695
|
+
font-style: normal;
|
|
1696
|
+
font-variant: normal;
|
|
1697
|
+
}
|
|
1698
|
+
.InputFieldWrapper-module__inputFieldWrapper___QKhWg.InputFieldWrapper-module__darkTheme___lGNSp.InputFieldWrapper-module__display___EN4pl .InputFieldWrapper-module__labelText___n0EsW {
|
|
1699
|
+
font-size: 14px;
|
|
1700
|
+
line-height: 20px;
|
|
1701
|
+
color: var(--gray-iron-400);
|
|
1702
|
+
font-weight: 500;
|
|
1703
|
+
font-family: var(--golos-ui);
|
|
1704
|
+
font-stretch: normal;
|
|
1705
|
+
font-style: normal;
|
|
1706
|
+
font-variant: normal;
|
|
1707
|
+
}
|
|
1708
|
+
.InputFieldWrapper-module__inputFieldWrapper___QKhWg.InputFieldWrapper-module__darkTheme___lGNSp.InputFieldWrapper-module__display___EN4pl .InputFieldWrapper-module__hintText___Utfgx {
|
|
1709
|
+
font-size: 14px;
|
|
1710
|
+
line-height: 20px;
|
|
1711
|
+
color: var(--gray-iron-500);
|
|
1712
|
+
font-weight: 400;
|
|
1713
|
+
font-family: var(--golos-ui);
|
|
1714
|
+
font-stretch: normal;
|
|
1715
|
+
font-style: normal;
|
|
1716
|
+
font-variant: normal;
|
|
1717
|
+
}
|
|
1339
1718
|
/*!*******************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
1340
1719
|
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/InputFields/TextareaField/styles/TextareaField.module.scss ***!
|
|
1341
1720
|
\*******************************************************************************************************************************************************************************************************************************************************************************************/
|
|
@@ -1511,6 +1890,44 @@
|
|
|
1511
1890
|
.DateTimeFieldMask-module__DateTimeFieldMask___uYDVO.DateTimeFieldMask-module__widthHug___UJyI8 .DateTimeFieldMask-module__item___LHghw, .DateTimeFieldMask-module__DateTimeFieldMask___uYDVO.DateTimeFieldMask-module__widthHug___UJyI8 .DateTimeFieldMask-module__item___LHghw .DateTimeFieldMask-module__content___KUAL7 {
|
|
1512
1891
|
flex: none;
|
|
1513
1892
|
}
|
|
1893
|
+
.DateTimeFieldMask-module__DateTimeFieldMask___uYDVO.DateTimeFieldMask-module__darkTheme___uxObk {
|
|
1894
|
+
border: 1px solid var(--gray-iron-800);
|
|
1895
|
+
background-color: var(--gray-iron-950);
|
|
1896
|
+
}
|
|
1897
|
+
.DateTimeFieldMask-module__DateTimeFieldMask___uYDVO.DateTimeFieldMask-module__darkTheme___uxObk .DateTimeFieldMask-module__item___LHghw .DateTimeFieldMask-module__icon___w5Oda svg * {
|
|
1898
|
+
stroke: var(--gray-iron-500);
|
|
1899
|
+
}
|
|
1900
|
+
.DateTimeFieldMask-module__DateTimeFieldMask___uYDVO.DateTimeFieldMask-module__darkTheme___uxObk .DateTimeFieldMask-module__item___LHghw .DateTimeFieldMask-module__text___cfGtj {
|
|
1901
|
+
font-size: 16px;
|
|
1902
|
+
line-height: 24px;
|
|
1903
|
+
color: var(--gray-iron-500);
|
|
1904
|
+
font-weight: 400;
|
|
1905
|
+
font-family: var(--golos-ui);
|
|
1906
|
+
font-stretch: normal;
|
|
1907
|
+
font-style: normal;
|
|
1908
|
+
font-variant: normal;
|
|
1909
|
+
}
|
|
1910
|
+
.DateTimeFieldMask-module__DateTimeFieldMask___uYDVO.DateTimeFieldMask-module__darkTheme___uxObk .DateTimeFieldMask-module__xCloseButton___SiUGK svg * {
|
|
1911
|
+
stroke: var(--gray-iron-500);
|
|
1912
|
+
}
|
|
1913
|
+
@media only screen and (min-width: 1024px) {
|
|
1914
|
+
.DateTimeFieldMask-module__DateTimeFieldMask___uYDVO.DateTimeFieldMask-module__darkTheme___uxObk .DateTimeFieldMask-module__xCloseButton___SiUGK:hover svg * {
|
|
1915
|
+
stroke: var(--gray-iron-600);
|
|
1916
|
+
}
|
|
1917
|
+
}
|
|
1918
|
+
.DateTimeFieldMask-module__DateTimeFieldMask___uYDVO.DateTimeFieldMask-module__darkTheme___uxObk.DateTimeFieldMask-module__isFocus___rZ3KJ {
|
|
1919
|
+
border: 1px solid var(--gray-iron-700);
|
|
1920
|
+
}
|
|
1921
|
+
.DateTimeFieldMask-module__DateTimeFieldMask___uYDVO.DateTimeFieldMask-module__darkTheme___uxObk.DateTimeFieldMask-module__isError___c1m4S {
|
|
1922
|
+
border: 1px solid var(--error-950);
|
|
1923
|
+
}
|
|
1924
|
+
.DateTimeFieldMask-module__DateTimeFieldMask___uYDVO.DateTimeFieldMask-module__darkTheme___uxObk.DateTimeFieldMask-module__isError___c1m4S.DateTimeFieldMask-module__isFocus___rZ3KJ {
|
|
1925
|
+
border: 1px solid var(--error-800);
|
|
1926
|
+
}
|
|
1927
|
+
.DateTimeFieldMask-module__DateTimeFieldMask___uYDVO.DateTimeFieldMask-module__darkTheme___uxObk.DateTimeFieldMask-module__disabled___xrbuV {
|
|
1928
|
+
border: 1px solid var(--gray-iron-800);
|
|
1929
|
+
background-color: var(--gray-iron-950);
|
|
1930
|
+
}
|
|
1514
1931
|
/*!*******************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
1515
1932
|
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/InputFields/DateTimeField/styles/DateTimeField.module.scss ***!
|
|
1516
1933
|
\*******************************************************************************************************************************************************************************************************************************************************************************************/
|
|
@@ -1574,22 +1991,52 @@
|
|
|
1574
1991
|
font-style: normal;
|
|
1575
1992
|
font-variant: normal;
|
|
1576
1993
|
}
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
gap: 12px;
|
|
1587
|
-
background-color: var(--base-white);
|
|
1588
|
-
border: 1px solid var(--gray-300);
|
|
1589
|
-
box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.0509803922);
|
|
1590
|
-
box-sizing: border-box;
|
|
1994
|
+
.DateTimeField-module__flexField___gDZ5r.DateTimeField-module__darkTheme___wmpps {
|
|
1995
|
+
font-size: 16px;
|
|
1996
|
+
line-height: 24px;
|
|
1997
|
+
color: var(--gray-iron-25);
|
|
1998
|
+
font-weight: 400;
|
|
1999
|
+
font-family: var(--golos-ui);
|
|
2000
|
+
font-stretch: normal;
|
|
2001
|
+
font-style: normal;
|
|
2002
|
+
font-variant: normal;
|
|
1591
2003
|
}
|
|
1592
|
-
.
|
|
2004
|
+
.DateTimeField-module__flexField___gDZ5r.DateTimeField-module__darkTheme___wmpps::placeholder {
|
|
2005
|
+
font-size: 16px;
|
|
2006
|
+
line-height: 24px;
|
|
2007
|
+
color: var(--gray-iron-500);
|
|
2008
|
+
font-weight: 400;
|
|
2009
|
+
font-family: var(--golos-ui);
|
|
2010
|
+
font-stretch: normal;
|
|
2011
|
+
font-style: normal;
|
|
2012
|
+
font-variant: normal;
|
|
2013
|
+
}
|
|
2014
|
+
.DateTimeField-module__flexField___gDZ5r.DateTimeField-module__darkTheme___wmpps.DateTimeField-module__disabled___Gk46h, .DateTimeField-module__flexField___gDZ5r.DateTimeField-module__darkTheme___wmpps.DateTimeField-module__disabled___Gk46h::placeholder {
|
|
2015
|
+
font-size: 16px;
|
|
2016
|
+
line-height: 24px;
|
|
2017
|
+
color: var(--gray-iron-500);
|
|
2018
|
+
font-weight: 400;
|
|
2019
|
+
font-family: var(--golos-ui);
|
|
2020
|
+
font-stretch: normal;
|
|
2021
|
+
font-style: normal;
|
|
2022
|
+
font-variant: normal;
|
|
2023
|
+
}
|
|
2024
|
+
/*!***************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
2025
|
+
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/InputFields/DateTimeField/styles/DateField.module.scss ***!
|
|
2026
|
+
\***************************************************************************************************************************************************************************************************************************************************************************************/
|
|
2027
|
+
.DateField-module__flexField___N5kNa {
|
|
2028
|
+
width: 100%;
|
|
2029
|
+
height: fit-content;
|
|
2030
|
+
min-width: 0;
|
|
2031
|
+
padding: 9px 11px;
|
|
2032
|
+
border-radius: 8px;
|
|
2033
|
+
gap: 12px;
|
|
2034
|
+
background-color: var(--base-white);
|
|
2035
|
+
border: 1px solid var(--gray-300);
|
|
2036
|
+
box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.0509803922);
|
|
2037
|
+
box-sizing: border-box;
|
|
2038
|
+
}
|
|
2039
|
+
.DateField-module__flexField___N5kNa {
|
|
1593
2040
|
display: flex;
|
|
1594
2041
|
align-items: center;
|
|
1595
2042
|
justify-content: center;
|
|
@@ -2057,6 +2504,7 @@
|
|
|
2057
2504
|
\*************************************************************************************************************************************************************************************************************************************************************************/
|
|
2058
2505
|
.ToggleBase-module__toggleBase___Vkhhf {
|
|
2059
2506
|
transition: all ease-out 0.2s;
|
|
2507
|
+
--toggle-theme: "light";
|
|
2060
2508
|
border-radius: 12px;
|
|
2061
2509
|
padding: 1px;
|
|
2062
2510
|
border: 1px solid transparent;
|
|
@@ -2131,6 +2579,27 @@
|
|
|
2131
2579
|
opacity: 0.5;
|
|
2132
2580
|
}
|
|
2133
2581
|
}
|
|
2582
|
+
.ToggleBase-module__toggleBase___Vkhhf.ToggleBase-module__dark___dcBYN {
|
|
2583
|
+
border-radius: 12px;
|
|
2584
|
+
padding: 1px;
|
|
2585
|
+
border: 1px solid transparent;
|
|
2586
|
+
background-color: var(--gray-iron-500);
|
|
2587
|
+
}
|
|
2588
|
+
.ToggleBase-module__toggleBase___Vkhhf.ToggleBase-module__dark___dcBYN {
|
|
2589
|
+
display: flex;
|
|
2590
|
+
align-items: center;
|
|
2591
|
+
}
|
|
2592
|
+
.ToggleBase-module__toggleBase___Vkhhf.ToggleBase-module__dark___dcBYN.ToggleBase-module__active___q_Db4 {
|
|
2593
|
+
background-color: var(--rose-500);
|
|
2594
|
+
}
|
|
2595
|
+
@media only screen and (min-width: 1024px) {
|
|
2596
|
+
.ToggleBase-module__toggleBase___Vkhhf.ToggleBase-module__dark___dcBYN:not(.ToggleBase-module__disabled___Znl75).ToggleBase-module__hover___KiQjy, .ToggleBase-module__toggleBase___Vkhhf.ToggleBase-module__dark___dcBYN:not(.ToggleBase-module__disabled___Znl75):hover {
|
|
2597
|
+
background-color: var(--gray-iron-600);
|
|
2598
|
+
}
|
|
2599
|
+
.ToggleBase-module__toggleBase___Vkhhf.ToggleBase-module__dark___dcBYN:not(.ToggleBase-module__disabled___Znl75).ToggleBase-module__hover___KiQjy.ToggleBase-module__active___q_Db4, .ToggleBase-module__toggleBase___Vkhhf.ToggleBase-module__dark___dcBYN:not(.ToggleBase-module__disabled___Znl75):hover.ToggleBase-module__active___q_Db4 {
|
|
2600
|
+
background-color: var(--rose-600);
|
|
2601
|
+
}
|
|
2602
|
+
}
|
|
2134
2603
|
/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
|
|
2135
2604
|
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/Toggle/styles/Toggle.module.scss ***!
|
|
2136
2605
|
\*****************************************************************************************************************************************************************************************************************************************************************/
|
|
@@ -2223,6 +2692,26 @@
|
|
|
2223
2692
|
.Toggle-module__toggle___v6vwY.Toggle-module__heightHug___fFSTL {
|
|
2224
2693
|
height: fit-content;
|
|
2225
2694
|
}
|
|
2695
|
+
.Toggle-module__toggle___v6vwY.Toggle-module__dark___ogO9H .Toggle-module__text___i2f7B {
|
|
2696
|
+
color: var(--gray-iron-300) !important;
|
|
2697
|
+
}
|
|
2698
|
+
.Toggle-module__toggle___v6vwY.Toggle-module__dark___ogO9H .Toggle-module__description___hvDOL {
|
|
2699
|
+
color: var(--gray-iron-400) !important;
|
|
2700
|
+
}
|
|
2701
|
+
.Toggle-module__toggle___v6vwY.Toggle-module__dark___ogO9H.Toggle-module__active___Skxl4 .Toggle-module__textBlock___KUwlm .Toggle-module__text___i2f7B {
|
|
2702
|
+
color: var(--gray-iron-50) !important;
|
|
2703
|
+
}
|
|
2704
|
+
.Toggle-module__toggle___v6vwY.Toggle-module__dark___ogO9H.Toggle-module__active___Skxl4 .Toggle-module__textBlock___KUwlm .Toggle-module__description___hvDOL {
|
|
2705
|
+
color: var(--gray-iron-500) !important;
|
|
2706
|
+
}
|
|
2707
|
+
@media only screen and (min-width: 1024px) {
|
|
2708
|
+
.Toggle-module__toggle___v6vwY.Toggle-module__dark___ogO9H:not(.Toggle-module__disabled___ME0Wv).Toggle-module__hover___Ws4WL .Toggle-module__textBlock___KUwlm .Toggle-module__text___i2f7B {
|
|
2709
|
+
color: var(--gray-iron-50) !important;
|
|
2710
|
+
}
|
|
2711
|
+
.Toggle-module__toggle___v6vwY.Toggle-module__dark___ogO9H:not(.Toggle-module__disabled___ME0Wv).Toggle-module__hover___Ws4WL .Toggle-module__textBlock___KUwlm .Toggle-module__description___hvDOL {
|
|
2712
|
+
color: var(--gray-iron-500) !important;
|
|
2713
|
+
}
|
|
2714
|
+
}
|
|
2226
2715
|
/*!********************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
2227
2716
|
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/CascadeSelector/styles/CascadeBlock.module.scss ***!
|
|
2228
2717
|
\********************************************************************************************************************************************************************************************************************************************************************************/
|
|
@@ -2572,6 +3061,9 @@
|
|
|
2572
3061
|
.TabFrame-module__tabFrame___Ppzzz.TabFrame-module__widthHug___wokCP {
|
|
2573
3062
|
width: fit-content;
|
|
2574
3063
|
}
|
|
3064
|
+
.TabFrame-module__tabFrame___Ppzzz.TabFrame-module__dark___uBrHA {
|
|
3065
|
+
background-color: var(--gray-iron-950);
|
|
3066
|
+
}
|
|
2575
3067
|
/*!*************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
2576
3068
|
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/TabButtons/styles/TabButtons.module.scss ***!
|
|
2577
3069
|
\*************************************************************************************************************************************************************************************************************************************************************************/
|
|
@@ -2690,6 +3182,84 @@
|
|
|
2690
3182
|
.TabButtons-module__tabButtons___vSLsZ.TabButtons-module__heightFill____mxL8 {
|
|
2691
3183
|
height: 100%;
|
|
2692
3184
|
}
|
|
3185
|
+
.TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg {
|
|
3186
|
+
background-color: var(--gray-iron-950);
|
|
3187
|
+
}
|
|
3188
|
+
.TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg .TabButtons-module__rightIcon___Vllb5 svg * {
|
|
3189
|
+
stroke: var(--gray-iron-600);
|
|
3190
|
+
}
|
|
3191
|
+
.TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg .TabButtons-module__leftIcon___yDOkS svg * {
|
|
3192
|
+
stroke: var(--gray-iron-600);
|
|
3193
|
+
}
|
|
3194
|
+
.TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg .TabButtons-module__text___EbNMB {
|
|
3195
|
+
font-size: 14px;
|
|
3196
|
+
line-height: 16px;
|
|
3197
|
+
color: var(--gray-iron-400);
|
|
3198
|
+
font-weight: 500;
|
|
3199
|
+
font-family: var(--golos-ui);
|
|
3200
|
+
font-stretch: normal;
|
|
3201
|
+
font-style: normal;
|
|
3202
|
+
font-variant: normal;
|
|
3203
|
+
}
|
|
3204
|
+
@media only screen and (min-width: 1024px) {
|
|
3205
|
+
.TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg:hover {
|
|
3206
|
+
background-color: var(--gray-iron-900);
|
|
3207
|
+
}
|
|
3208
|
+
.TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg:hover .TabButtons-module__text___EbNMB {
|
|
3209
|
+
color: var(--gray-iron-200);
|
|
3210
|
+
}
|
|
3211
|
+
}
|
|
3212
|
+
@media (min-width: 481px) and (max-width: 1279px) {
|
|
3213
|
+
.TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg:active {
|
|
3214
|
+
background-color: var(--gray-iron-900);
|
|
3215
|
+
}
|
|
3216
|
+
.TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg:active .TabButtons-module__text___EbNMB {
|
|
3217
|
+
color: var(--gray-iron-200);
|
|
3218
|
+
}
|
|
3219
|
+
.TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg:active .TabButtons-module__rightIcon___Vllb5 svg * {
|
|
3220
|
+
stroke: var(--gray-iron-500);
|
|
3221
|
+
}
|
|
3222
|
+
.TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg:active .TabButtons-module__leftIcon___yDOkS svg * {
|
|
3223
|
+
stroke: var(--gray-iron-500);
|
|
3224
|
+
}
|
|
3225
|
+
}
|
|
3226
|
+
.TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg.TabButtons-module__active___ShP43 {
|
|
3227
|
+
border: 1px solid var(--gray-iron-800);
|
|
3228
|
+
background-color: var(--gray-iron-900);
|
|
3229
|
+
box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.0509803922);
|
|
3230
|
+
}
|
|
3231
|
+
.TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg.TabButtons-module__active___ShP43 .TabButtons-module__rightIcon___Vllb5 svg * {
|
|
3232
|
+
stroke: var(--gray-iron-500);
|
|
3233
|
+
}
|
|
3234
|
+
.TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg.TabButtons-module__active___ShP43 .TabButtons-module__leftIcon___yDOkS svg * {
|
|
3235
|
+
stroke: var(--gray-iron-500);
|
|
3236
|
+
}
|
|
3237
|
+
.TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg.TabButtons-module__active___ShP43 .TabButtons-module__text___EbNMB {
|
|
3238
|
+
color: var(--gray-iron-200);
|
|
3239
|
+
}
|
|
3240
|
+
@media only screen and (min-width: 1024px) {
|
|
3241
|
+
.TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg.TabButtons-module__active___ShP43:hover {
|
|
3242
|
+
background-color: var(--gray--iron-800);
|
|
3243
|
+
border: 1px solid var(--gray-iron-700);
|
|
3244
|
+
}
|
|
3245
|
+
}
|
|
3246
|
+
@media (min-width: 481px) and (max-width: 1279px) {
|
|
3247
|
+
.TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg.TabButtons-module__active___ShP43:active {
|
|
3248
|
+
background-color: var(--gray--iron-800);
|
|
3249
|
+
}
|
|
3250
|
+
}
|
|
3251
|
+
.TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg.TabButtons-module__disabled___MlvE9, .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg:disabled {
|
|
3252
|
+
background-color: var(--gray--iron-900);
|
|
3253
|
+
}
|
|
3254
|
+
.TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg.TabButtons-module__disabled___MlvE9 .TabButtons-module__rightIcon___Vllb5 svg *, .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg:disabled .TabButtons-module__rightIcon___Vllb5 svg * {
|
|
3255
|
+
stroke: var(--gray-iron-700);
|
|
3256
|
+
}
|
|
3257
|
+
.TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg.TabButtons-module__disabled___MlvE9 .TabButtons-module__leftIcon___yDOkS svg *, .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg:disabled .TabButtons-module__leftIcon___yDOkS svg * {
|
|
3258
|
+
stroke: var(--gray-iron-700);
|
|
3259
|
+
}
|
|
3260
|
+
.TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg.TabButtons-module__disabled___MlvE9 .TabButtons-module__text___EbNMB, .TabButtons-module__tabButtons___vSLsZ.TabButtons-module__dark___E1fGg:disabled .TabButtons-module__text___EbNMB {
|
|
3261
|
+
color: var(--gray-iron-600);
|
|
3262
|
+
}
|
|
2693
3263
|
/*!******************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
2694
3264
|
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/PaginationBar/styles/PageSwitcher.module.scss ***!
|
|
2695
3265
|
\******************************************************************************************************************************************************************************************************************************************************************************/
|
|
@@ -2807,6 +3377,36 @@
|
|
|
2807
3377
|
.PageSwitcher-module__pageSwitcher___PGQPI.PageSwitcher-module__smallVersion___YJr68 {
|
|
2808
3378
|
justify-content: space-between;
|
|
2809
3379
|
}
|
|
3380
|
+
.PageSwitcher-module__pageSwitcher___PGQPI.PageSwitcher-module__dark___kWpZ9 .PageSwitcher-module__buttonsList___dxvZB .PageSwitcher-module__plug___vUKSL {
|
|
3381
|
+
font-size: 14px;
|
|
3382
|
+
line-height: 20px;
|
|
3383
|
+
color: var(--gray-iron-500);
|
|
3384
|
+
font-weight: 500;
|
|
3385
|
+
font-family: var(--golos-ui);
|
|
3386
|
+
font-stretch: normal;
|
|
3387
|
+
font-style: normal;
|
|
3388
|
+
font-variant: normal;
|
|
3389
|
+
}
|
|
3390
|
+
.PageSwitcher-module__pageSwitcher___PGQPI.PageSwitcher-module__dark___kWpZ9 .PageSwitcher-module__buttonsList___dxvZB .PageSwitcher-module__numberButton___TgDNV {
|
|
3391
|
+
font-size: 14px;
|
|
3392
|
+
line-height: 20px;
|
|
3393
|
+
color: var(--gray-iron-500);
|
|
3394
|
+
font-weight: 500;
|
|
3395
|
+
font-family: var(--golos-ui);
|
|
3396
|
+
font-stretch: normal;
|
|
3397
|
+
font-style: normal;
|
|
3398
|
+
font-variant: normal;
|
|
3399
|
+
}
|
|
3400
|
+
@media only screen and (min-width: 1024px) {
|
|
3401
|
+
.PageSwitcher-module__pageSwitcher___PGQPI.PageSwitcher-module__dark___kWpZ9 .PageSwitcher-module__buttonsList___dxvZB .PageSwitcher-module__numberButton___TgDNV:hover {
|
|
3402
|
+
color: var(--gray-iron-400);
|
|
3403
|
+
background-color: var(--gray-iron-800);
|
|
3404
|
+
}
|
|
3405
|
+
}
|
|
3406
|
+
.PageSwitcher-module__pageSwitcher___PGQPI.PageSwitcher-module__dark___kWpZ9 .PageSwitcher-module__buttonsList___dxvZB .PageSwitcher-module__numberButton___TgDNV.PageSwitcher-module__active___Mx_1z {
|
|
3407
|
+
color: var(--gray-iron-400);
|
|
3408
|
+
background-color: var(--gray-iron-800);
|
|
3409
|
+
}
|
|
2810
3410
|
/*!*******************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
2811
3411
|
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/PaginationBar/styles/PaginationBar.module.scss ***!
|
|
2812
3412
|
\*******************************************************************************************************************************************************************************************************************************************************************************/
|
|
@@ -2999,6 +3599,123 @@
|
|
|
2999
3599
|
.DropdownItem-module__dropdownItem___N8ZNV.DropdownItem-module__widthHug___HJMle {
|
|
3000
3600
|
width: fit-content;
|
|
3001
3601
|
}
|
|
3602
|
+
|
|
3603
|
+
.DropdownItem-module__dark___nHP0y .DropdownItem-module__showIcon___Dg7F4 svg * {
|
|
3604
|
+
stroke: var(--gray-iron-500);
|
|
3605
|
+
}
|
|
3606
|
+
.DropdownItem-module__dark___nHP0y .DropdownItem-module__main___Lhu3D .DropdownItem-module__text___ASNww {
|
|
3607
|
+
color: var(--gray-iron-200);
|
|
3608
|
+
}
|
|
3609
|
+
.DropdownItem-module__dark___nHP0y .DropdownItem-module__main___Lhu3D .DropdownItem-module__supportText___UEw04 {
|
|
3610
|
+
color: var(--gray-iron-500);
|
|
3611
|
+
}
|
|
3612
|
+
.DropdownItem-module__dark___nHP0y .DropdownItem-module__check___e4EmQ svg * {
|
|
3613
|
+
stroke: var(--rose-500);
|
|
3614
|
+
}
|
|
3615
|
+
@media only screen and (min-width: 1024px) {
|
|
3616
|
+
.DropdownItem-module__dark___nHP0y:hover {
|
|
3617
|
+
background-color: var(--gray-iron-800);
|
|
3618
|
+
}
|
|
3619
|
+
}
|
|
3620
|
+
@media (min-width: 481px) and (max-width: 1279px) {
|
|
3621
|
+
.DropdownItem-module__dark___nHP0y:active {
|
|
3622
|
+
background-color: var(--gray-iron-800);
|
|
3623
|
+
}
|
|
3624
|
+
}
|
|
3625
|
+
.DropdownItem-module__dark___nHP0y.DropdownItem-module__selected___gw70Z {
|
|
3626
|
+
background-color: var(--rose-950);
|
|
3627
|
+
}
|
|
3628
|
+
@media only screen and (min-width: 1024px) {
|
|
3629
|
+
.DropdownItem-module__dark___nHP0y.DropdownItem-module__selected___gw70Z:hover {
|
|
3630
|
+
background-color: var(--rose-900);
|
|
3631
|
+
}
|
|
3632
|
+
}
|
|
3633
|
+
@media (min-width: 481px) and (max-width: 1279px) {
|
|
3634
|
+
.DropdownItem-module__dark___nHP0y.DropdownItem-module__selected___gw70Z:active {
|
|
3635
|
+
background-color: var(--rose-900);
|
|
3636
|
+
}
|
|
3637
|
+
}
|
|
3638
|
+
.DropdownItem-module__dark___nHP0y.DropdownItem-module__selected___gw70Z .DropdownItem-module__showIcon___Dg7F4 svg * {
|
|
3639
|
+
stroke: var(--rose-600);
|
|
3640
|
+
}
|
|
3641
|
+
.DropdownItem-module__dark___nHP0y.DropdownItem-module__selected___gw70Z .DropdownItem-module__main___Lhu3D .DropdownItem-module__supportText___UEw04 {
|
|
3642
|
+
color: var(--rose-600);
|
|
3643
|
+
}
|
|
3644
|
+
.DropdownItem-module__dark___nHP0y:disabled, .DropdownItem-module__dark___nHP0y.DropdownItem-module__disabled___hI0kb {
|
|
3645
|
+
cursor: default;
|
|
3646
|
+
pointer-events: none;
|
|
3647
|
+
opacity: 0.5;
|
|
3648
|
+
}
|
|
3649
|
+
.DropdownItem-module__dark___nHP0y:disabled .DropdownItem-module__showIcon___Dg7F4 svg *, .DropdownItem-module__dark___nHP0y.DropdownItem-module__disabled___hI0kb .DropdownItem-module__showIcon___Dg7F4 svg * {
|
|
3650
|
+
stroke: var(--rose-600);
|
|
3651
|
+
}
|
|
3652
|
+
.DropdownItem-module__dark___nHP0y:disabled .DropdownItem-module__main___Lhu3D .DropdownItem-module__text___ASNww, .DropdownItem-module__dark___nHP0y.DropdownItem-module__disabled___hI0kb .DropdownItem-module__main___Lhu3D .DropdownItem-module__text___ASNww {
|
|
3653
|
+
color: var(--gray-iron-200);
|
|
3654
|
+
}
|
|
3655
|
+
.DropdownItem-module__dark___nHP0y:disabled .DropdownItem-module__userIcon___MATjB, .DropdownItem-module__dark___nHP0y.DropdownItem-module__disabled___hI0kb .DropdownItem-module__userIcon___MATjB {
|
|
3656
|
+
opacity: 1;
|
|
3657
|
+
}
|
|
3658
|
+
.DropdownItem-module__dark___nHP0y:disabled .DropdownItem-module__main___Lhu3D .DropdownItem-module__supportText___UEw04, .DropdownItem-module__dark___nHP0y.DropdownItem-module__disabled___hI0kb .DropdownItem-module__main___Lhu3D .DropdownItem-module__supportText___UEw04 {
|
|
3659
|
+
color: var(--gray-iron-200);
|
|
3660
|
+
}
|
|
3661
|
+
.DropdownItem-module__dark___nHP0y:disabled .DropdownItem-module__check___e4EmQ svg *, .DropdownItem-module__dark___nHP0y.DropdownItem-module__disabled___hI0kb .DropdownItem-module__check___e4EmQ svg * {
|
|
3662
|
+
stroke: var(--rose-600);
|
|
3663
|
+
}
|
|
3664
|
+
.DropdownItem-module__dark___nHP0y:disabled.DropdownItem-module__selected___gw70Z, .DropdownItem-module__dark___nHP0y.DropdownItem-module__disabled___hI0kb.DropdownItem-module__selected___gw70Z {
|
|
3665
|
+
background-color: var(--rose-950);
|
|
3666
|
+
}
|
|
3667
|
+
.DropdownItem-module__dark___nHP0y.DropdownItem-module__small___IbHXt {
|
|
3668
|
+
padding: 8px 8px 8px 16px;
|
|
3669
|
+
}
|
|
3670
|
+
.DropdownItem-module__dark___nHP0y.DropdownItem-module__small___IbHXt .DropdownItem-module__text___ASNww {
|
|
3671
|
+
font-size: 14px;
|
|
3672
|
+
line-height: 20px;
|
|
3673
|
+
color: var(--gray-iron-200);
|
|
3674
|
+
font-weight: 400;
|
|
3675
|
+
font-family: var(--golos-ui);
|
|
3676
|
+
font-stretch: normal;
|
|
3677
|
+
font-style: normal;
|
|
3678
|
+
font-variant: normal;
|
|
3679
|
+
}
|
|
3680
|
+
.DropdownItem-module__dark___nHP0y.DropdownItem-module__small___IbHXt .DropdownItem-module__supportText___UEw04 {
|
|
3681
|
+
font-size: 14px;
|
|
3682
|
+
line-height: 20px;
|
|
3683
|
+
color: var(--gray-iron-500);
|
|
3684
|
+
font-weight: 400;
|
|
3685
|
+
font-family: var(--golos-ui);
|
|
3686
|
+
font-stretch: normal;
|
|
3687
|
+
font-style: normal;
|
|
3688
|
+
font-variant: normal;
|
|
3689
|
+
}
|
|
3690
|
+
.DropdownItem-module__dark___nHP0y.DropdownItem-module__medium___bm3mg {
|
|
3691
|
+
padding: 10px 10px 10px 16px;
|
|
3692
|
+
}
|
|
3693
|
+
.DropdownItem-module__dark___nHP0y.DropdownItem-module__medium___bm3mg .DropdownItem-module__text___ASNww {
|
|
3694
|
+
font-size: 16px;
|
|
3695
|
+
line-height: 24px;
|
|
3696
|
+
color: var(--gray-iron-200);
|
|
3697
|
+
font-weight: 400;
|
|
3698
|
+
font-family: var(--golos-ui);
|
|
3699
|
+
font-stretch: normal;
|
|
3700
|
+
font-style: normal;
|
|
3701
|
+
font-variant: normal;
|
|
3702
|
+
}
|
|
3703
|
+
.DropdownItem-module__dark___nHP0y.DropdownItem-module__medium___bm3mg .DropdownItem-module__supportText___UEw04 {
|
|
3704
|
+
font-size: 16px;
|
|
3705
|
+
line-height: 24px;
|
|
3706
|
+
color: var(--gray-iron-500);
|
|
3707
|
+
font-weight: 400;
|
|
3708
|
+
font-family: var(--golos-ui);
|
|
3709
|
+
font-stretch: normal;
|
|
3710
|
+
font-style: normal;
|
|
3711
|
+
font-variant: normal;
|
|
3712
|
+
}
|
|
3713
|
+
.DropdownItem-module__dark___nHP0y.DropdownItem-module__widthFill___m3eb0 {
|
|
3714
|
+
width: 100%;
|
|
3715
|
+
}
|
|
3716
|
+
.DropdownItem-module__dark___nHP0y.DropdownItem-module__widthHug___HJMle {
|
|
3717
|
+
width: fit-content;
|
|
3718
|
+
}
|
|
3002
3719
|
/*!****************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
3003
3720
|
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/Loaders/styles/LoadingIndicator.module.scss ***!
|
|
3004
3721
|
\****************************************************************************************************************************************************************************************************************************************************************************/
|
|
@@ -3145,10 +3862,10 @@
|
|
|
3145
3862
|
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/MediaViewer/styles/components/VideoViewer.module.scss ***!
|
|
3146
3863
|
\**************************************************************************************************************************************************************************************************************************************************************************************/
|
|
3147
3864
|
.VideoViewer-module__VideoViewer___DnYgG {
|
|
3148
|
-
flex: none;
|
|
3149
3865
|
width: fit-content;
|
|
3150
3866
|
height: 100%;
|
|
3151
3867
|
position: relative;
|
|
3868
|
+
overflow: hidden;
|
|
3152
3869
|
}
|
|
3153
3870
|
.VideoViewer-module__VideoViewer___DnYgG {
|
|
3154
3871
|
display: flex;
|
|
@@ -3193,8 +3910,9 @@
|
|
|
3193
3910
|
}
|
|
3194
3911
|
.VideoViewer-module__VideoViewer___DnYgG .VideoViewer-module__content___jnFwK {
|
|
3195
3912
|
flex: none;
|
|
3913
|
+
max-width: 100%;
|
|
3196
3914
|
height: 100%;
|
|
3197
|
-
object-fit:
|
|
3915
|
+
object-fit: scale-down;
|
|
3198
3916
|
}
|
|
3199
3917
|
.VideoViewer-module__VideoViewer___DnYgG .VideoViewer-module__playButton___Sb91y {
|
|
3200
3918
|
display: none;
|
|
@@ -3227,8 +3945,8 @@
|
|
|
3227
3945
|
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/MediaViewer/styles/components/ImageViewer.module.scss ***!
|
|
3228
3946
|
\**************************************************************************************************************************************************************************************************************************************************************************************/
|
|
3229
3947
|
.ImageViewer-module__ImageViewer___lH_sP {
|
|
3230
|
-
flex: none;
|
|
3231
3948
|
width: fit-content;
|
|
3949
|
+
max-width: 100%;
|
|
3232
3950
|
height: 100%;
|
|
3233
3951
|
object-fit: scale-down;
|
|
3234
3952
|
}
|
|
@@ -3246,11 +3964,18 @@
|
|
|
3246
3964
|
justify-content: center;
|
|
3247
3965
|
}
|
|
3248
3966
|
.MediaViewer-module__MediaViewer___DsL4T .MediaViewer-module__content___e14vI {
|
|
3249
|
-
flex: 1;
|
|
3250
3967
|
width: 100%;
|
|
3251
3968
|
height: 100%;
|
|
3252
3969
|
}
|
|
3253
|
-
.MediaViewer-module__MediaViewer___DsL4T .MediaViewer-module__content___e14vI {
|
|
3970
|
+
.MediaViewer-module__MediaViewer___DsL4T .MediaViewer-module__content___e14vI .MediaViewer-module__track___eU8q_ {
|
|
3971
|
+
height: 100%;
|
|
3972
|
+
}
|
|
3973
|
+
.MediaViewer-module__MediaViewer___DsL4T .MediaViewer-module__content___e14vI .MediaViewer-module__track___eU8q_ .MediaViewer-module__el___D3St0 {
|
|
3974
|
+
width: 100%;
|
|
3975
|
+
height: 100%;
|
|
3976
|
+
overflow: hidden;
|
|
3977
|
+
}
|
|
3978
|
+
.MediaViewer-module__MediaViewer___DsL4T .MediaViewer-module__content___e14vI .MediaViewer-module__track___eU8q_ .MediaViewer-module__el___D3St0 {
|
|
3254
3979
|
display: flex;
|
|
3255
3980
|
align-items: center;
|
|
3256
3981
|
justify-content: center;
|
|
@@ -3534,6 +4259,116 @@
|
|
|
3534
4259
|
right: 0;
|
|
3535
4260
|
transform: translateX(10px);
|
|
3536
4261
|
}
|
|
4262
|
+
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj .CalendarDay-module__mark___jB0aT:after {
|
|
4263
|
+
background-color: var(--rose-600);
|
|
4264
|
+
}
|
|
4265
|
+
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj .CalendarDay-module__text___ft0zM {
|
|
4266
|
+
font-size: 16px;
|
|
4267
|
+
line-height: 16px;
|
|
4268
|
+
color: var(--gray-iron-300);
|
|
4269
|
+
font-weight: 400;
|
|
4270
|
+
font-family: var(--golos-ui);
|
|
4271
|
+
font-stretch: normal;
|
|
4272
|
+
font-style: normal;
|
|
4273
|
+
font-variant: normal;
|
|
4274
|
+
}
|
|
4275
|
+
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj .CalendarDay-module__info___MvJmM {
|
|
4276
|
+
font-size: 10px;
|
|
4277
|
+
line-height: 10px;
|
|
4278
|
+
color: var(--gray-iron-600);
|
|
4279
|
+
font-weight: 400;
|
|
4280
|
+
font-family: var(--golos-ui);
|
|
4281
|
+
font-stretch: normal;
|
|
4282
|
+
font-style: normal;
|
|
4283
|
+
font-variant: normal;
|
|
4284
|
+
}
|
|
4285
|
+
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj {
|
|
4286
|
+
background-color: var(--gray-iron-900);
|
|
4287
|
+
}
|
|
4288
|
+
@media only screen and (min-width: 1024px) {
|
|
4289
|
+
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj:hover {
|
|
4290
|
+
background-color: var(--gray-iron-800);
|
|
4291
|
+
}
|
|
4292
|
+
}
|
|
4293
|
+
@media (min-width: 481px) and (max-width: 1279px) {
|
|
4294
|
+
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj:active {
|
|
4295
|
+
background-color: var(--rose-500);
|
|
4296
|
+
}
|
|
4297
|
+
}
|
|
4298
|
+
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__currentDay___J6WB3 {
|
|
4299
|
+
background-color: var(--rose-950);
|
|
4300
|
+
}
|
|
4301
|
+
@media only screen and (min-width: 1024px) {
|
|
4302
|
+
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__currentDay___J6WB3:hover {
|
|
4303
|
+
background-color: var(--rose-900);
|
|
4304
|
+
}
|
|
4305
|
+
}
|
|
4306
|
+
@media (min-width: 481px) and (max-width: 1279px) {
|
|
4307
|
+
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__currentDay___J6WB3:active {
|
|
4308
|
+
background-color: var(--rose-500);
|
|
4309
|
+
}
|
|
4310
|
+
}
|
|
4311
|
+
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__holiday___cQBoW .CalendarDay-module__text___ft0zM {
|
|
4312
|
+
color: var(--error-500);
|
|
4313
|
+
}
|
|
4314
|
+
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__disabled___H7Y64 {
|
|
4315
|
+
background-color: var(--gray-iron-900);
|
|
4316
|
+
}
|
|
4317
|
+
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__disabled___H7Y64 .CalendarDay-module__mark___jB0aT:after {
|
|
4318
|
+
background-color: var(--gray-iron-700);
|
|
4319
|
+
}
|
|
4320
|
+
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__disabled___H7Y64 .CalendarDay-module__text___ft0zM {
|
|
4321
|
+
color: var(--gray-iron-600);
|
|
4322
|
+
}
|
|
4323
|
+
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__disabled___H7Y64 .CalendarDay-module__info___MvJmM {
|
|
4324
|
+
color: var(--gray-iron-700);
|
|
4325
|
+
}
|
|
4326
|
+
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__disabled___H7Y64:hover {
|
|
4327
|
+
background-color: var(--gray-iron-800);
|
|
4328
|
+
}
|
|
4329
|
+
@media (min-width: 481px) and (max-width: 1279px) {
|
|
4330
|
+
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__disabled___H7Y64:active {
|
|
4331
|
+
background-color: var(--gray-100);
|
|
4332
|
+
}
|
|
4333
|
+
}
|
|
4334
|
+
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__filter___jE_gQ {
|
|
4335
|
+
background-color: var(--gray-iron-800);
|
|
4336
|
+
}
|
|
4337
|
+
@media only screen and (min-width: 1024px) {
|
|
4338
|
+
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__filter___jE_gQ:hover {
|
|
4339
|
+
background-color: var(--gray-iron-700);
|
|
4340
|
+
}
|
|
4341
|
+
}
|
|
4342
|
+
@media (min-width: 481px) and (max-width: 1279px) {
|
|
4343
|
+
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__filter___jE_gQ:active {
|
|
4344
|
+
background-color: var(--rose-500);
|
|
4345
|
+
}
|
|
4346
|
+
}
|
|
4347
|
+
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__active___LxSGE {
|
|
4348
|
+
background-color: var(--rose-500);
|
|
4349
|
+
}
|
|
4350
|
+
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__active___LxSGE .CalendarDay-module__mark___jB0aT:after {
|
|
4351
|
+
background-color: var(--base-white);
|
|
4352
|
+
}
|
|
4353
|
+
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__active___LxSGE .CalendarDay-module__text___ft0zM {
|
|
4354
|
+
color: var(--base-white);
|
|
4355
|
+
}
|
|
4356
|
+
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__active___LxSGE .CalendarDay-module__info___MvJmM {
|
|
4357
|
+
color: var(--rose-700);
|
|
4358
|
+
}
|
|
4359
|
+
@media only screen and (min-width: 1024px) {
|
|
4360
|
+
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__active___LxSGE:hover {
|
|
4361
|
+
background-color: var(--rose-600);
|
|
4362
|
+
}
|
|
4363
|
+
}
|
|
4364
|
+
@media (min-width: 481px) and (max-width: 1279px) {
|
|
4365
|
+
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz .CalendarDay-module__CalendarDay___VgFhj.CalendarDay-module__active___LxSGE:active {
|
|
4366
|
+
background-color: var(--rose-600);
|
|
4367
|
+
}
|
|
4368
|
+
}
|
|
4369
|
+
.CalendarDay-module__CalendarDayWrapper___oK70p.CalendarDay-module__darkTheme___lJnHz.CalendarDay-module__filter___jE_gQ:before {
|
|
4370
|
+
background-color: var(--gray-iron-800);
|
|
4371
|
+
}
|
|
3537
4372
|
/*!*******************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
3538
4373
|
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/DateTimePicker/styles/components/CalendarMonth.module.scss ***!
|
|
3539
4374
|
\*******************************************************************************************************************************************************************************************************************************************************************************************/
|
|
@@ -3574,6 +4409,31 @@
|
|
|
3574
4409
|
.CalendarMonth-module__CalendarMonth___BVPk3.CalendarMonth-module__disabled___VNFpt {
|
|
3575
4410
|
color: var(--gray-400);
|
|
3576
4411
|
}
|
|
4412
|
+
.CalendarMonth-module__CalendarMonth___BVPk3.CalendarMonth-module__darkTheme___k7jgU {
|
|
4413
|
+
background-color: var(--gray-iron-900);
|
|
4414
|
+
}
|
|
4415
|
+
.CalendarMonth-module__CalendarMonth___BVPk3.CalendarMonth-module__darkTheme___k7jgU {
|
|
4416
|
+
font-size: 16px;
|
|
4417
|
+
line-height: 20px;
|
|
4418
|
+
color: var(--gray-iron-300);
|
|
4419
|
+
font-weight: 400;
|
|
4420
|
+
font-family: var(--golos);
|
|
4421
|
+
font-stretch: normal;
|
|
4422
|
+
font-style: normal;
|
|
4423
|
+
font-variant: normal;
|
|
4424
|
+
}
|
|
4425
|
+
.CalendarMonth-module__CalendarMonth___BVPk3.CalendarMonth-module__darkTheme___k7jgU:hover {
|
|
4426
|
+
background-color: var(--gray-iron-800);
|
|
4427
|
+
}
|
|
4428
|
+
.CalendarMonth-module__CalendarMonth___BVPk3.CalendarMonth-module__darkTheme___k7jgU.CalendarMonth-module__current___iR71C:not(.CalendarMonth-module__CalendarMonth___BVPk3.CalendarMonth-module__darkTheme___k7jgU.CalendarMonth-module__disabled___VNFpt) {
|
|
4429
|
+
background-color: var(--rose-950);
|
|
4430
|
+
}
|
|
4431
|
+
.CalendarMonth-module__CalendarMonth___BVPk3.CalendarMonth-module__darkTheme___k7jgU.CalendarMonth-module__current___iR71C:not(.CalendarMonth-module__CalendarMonth___BVPk3.CalendarMonth-module__darkTheme___k7jgU.CalendarMonth-module__disabled___VNFpt):hover {
|
|
4432
|
+
background-color: var(--rose-900);
|
|
4433
|
+
}
|
|
4434
|
+
.CalendarMonth-module__CalendarMonth___BVPk3.CalendarMonth-module__darkTheme___k7jgU.CalendarMonth-module__disabled___VNFpt {
|
|
4435
|
+
color: var(--gray-iron-600);
|
|
4436
|
+
}
|
|
3577
4437
|
/*!******************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
3578
4438
|
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/DateTimePicker/styles/components/CalendarYear.module.scss ***!
|
|
3579
4439
|
\******************************************************************************************************************************************************************************************************************************************************************************************/
|
|
@@ -3614,6 +4474,31 @@
|
|
|
3614
4474
|
.CalendarYear-module__CalendarYear___gMG1A.CalendarYear-module__disabled___dIYvt {
|
|
3615
4475
|
color: var(--gray-400);
|
|
3616
4476
|
}
|
|
4477
|
+
.CalendarYear-module__CalendarYear___gMG1A.CalendarYear-module__darkTheme___rr4Oy {
|
|
4478
|
+
background-color: var(--gray-iron-900);
|
|
4479
|
+
}
|
|
4480
|
+
.CalendarYear-module__CalendarYear___gMG1A.CalendarYear-module__darkTheme___rr4Oy {
|
|
4481
|
+
font-size: 16px;
|
|
4482
|
+
line-height: 20px;
|
|
4483
|
+
color: var(--gray-iron-300);
|
|
4484
|
+
font-weight: 400;
|
|
4485
|
+
font-family: var(--golos);
|
|
4486
|
+
font-stretch: normal;
|
|
4487
|
+
font-style: normal;
|
|
4488
|
+
font-variant: normal;
|
|
4489
|
+
}
|
|
4490
|
+
.CalendarYear-module__CalendarYear___gMG1A.CalendarYear-module__darkTheme___rr4Oy:hover {
|
|
4491
|
+
background-color: var(--gray-iron-800);
|
|
4492
|
+
}
|
|
4493
|
+
.CalendarYear-module__CalendarYear___gMG1A.CalendarYear-module__darkTheme___rr4Oy.CalendarYear-module__current___aLXpm {
|
|
4494
|
+
background-color: var(--rose-950);
|
|
4495
|
+
}
|
|
4496
|
+
.CalendarYear-module__CalendarYear___gMG1A.CalendarYear-module__darkTheme___rr4Oy.CalendarYear-module__current___aLXpm:hover {
|
|
4497
|
+
background-color: var(--rose-900);
|
|
4498
|
+
}
|
|
4499
|
+
.CalendarYear-module__CalendarYear___gMG1A.CalendarYear-module__darkTheme___rr4Oy.CalendarYear-module__disabled___dIYvt {
|
|
4500
|
+
color: var(--gray-iron-600);
|
|
4501
|
+
}
|
|
3617
4502
|
/*!********************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
3618
4503
|
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/DateTimePicker/styles/components/CalendarButton.module.scss ***!
|
|
3619
4504
|
\********************************************************************************************************************************************************************************************************************************************************************************************/
|
|
@@ -3652,6 +4537,32 @@
|
|
|
3652
4537
|
.CalendarButton-module__CalendarButton___yVvoS:disabled {
|
|
3653
4538
|
cursor: default;
|
|
3654
4539
|
}
|
|
4540
|
+
.CalendarButton-module__CalendarButton___yVvoS.CalendarButton-module__dark___h_NGD.CalendarButton-module__black____RFmq {
|
|
4541
|
+
font-size: 18px;
|
|
4542
|
+
line-height: 28px;
|
|
4543
|
+
color: var(--gray-iron-100);
|
|
4544
|
+
font-weight: 400;
|
|
4545
|
+
font-family: var(--golos);
|
|
4546
|
+
font-stretch: normal;
|
|
4547
|
+
font-style: normal;
|
|
4548
|
+
font-variant: normal;
|
|
4549
|
+
}
|
|
4550
|
+
.CalendarButton-module__CalendarButton___yVvoS.CalendarButton-module__dark___h_NGD.CalendarButton-module__black____RFmq:hover:not(.CalendarButton-module__CalendarButton___yVvoS.CalendarButton-module__dark___h_NGD.CalendarButton-module__black____RFmq:disabled) {
|
|
4551
|
+
color: var(--rose-500);
|
|
4552
|
+
}
|
|
4553
|
+
.CalendarButton-module__CalendarButton___yVvoS.CalendarButton-module__dark___h_NGD.CalendarButton-module__gray___JG7y4 {
|
|
4554
|
+
font-size: 18px;
|
|
4555
|
+
line-height: 28px;
|
|
4556
|
+
color: var(--gray-iron-600);
|
|
4557
|
+
font-weight: 400;
|
|
4558
|
+
font-family: var(--golos);
|
|
4559
|
+
font-stretch: normal;
|
|
4560
|
+
font-style: normal;
|
|
4561
|
+
font-variant: normal;
|
|
4562
|
+
}
|
|
4563
|
+
.CalendarButton-module__CalendarButton___yVvoS.CalendarButton-module__dark___h_NGD.CalendarButton-module__gray___JG7y4:hover:not(.CalendarButton-module__CalendarButton___yVvoS.CalendarButton-module__dark___h_NGD.CalendarButton-module__gray___JG7y4:disabled) {
|
|
4564
|
+
color: var(--rose-500);
|
|
4565
|
+
}
|
|
3655
4566
|
/*!*******************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
3656
4567
|
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/DateTimePicker/styles/components/TimePickerTag.module.scss ***!
|
|
3657
4568
|
\*******************************************************************************************************************************************************************************************************************************************************************************************/
|
|
@@ -3787,6 +4698,49 @@
|
|
|
3787
4698
|
font-style: normal;
|
|
3788
4699
|
font-variant: normal;
|
|
3789
4700
|
}
|
|
4701
|
+
.TimePickerFeed-module__wrapper___BiInJ.TimePickerFeed-module__darkTheme___LUnBx .TimePickerFeed-module__viewContent___NiSmH {
|
|
4702
|
+
background-color: transparent;
|
|
4703
|
+
}
|
|
4704
|
+
.TimePickerFeed-module__wrapper___BiInJ.TimePickerFeed-module__darkTheme___LUnBx .TimePickerFeed-module__item___SczLD .TimePickerFeed-module__content___Qb5A3 {
|
|
4705
|
+
font-size: 20px;
|
|
4706
|
+
line-height: 32px;
|
|
4707
|
+
color: var(--gray-iron-700);
|
|
4708
|
+
font-weight: 400;
|
|
4709
|
+
font-family: var(--golos);
|
|
4710
|
+
font-stretch: normal;
|
|
4711
|
+
font-style: normal;
|
|
4712
|
+
font-variant: normal;
|
|
4713
|
+
}
|
|
4714
|
+
.TimePickerFeed-module__wrapper___BiInJ.TimePickerFeed-module__darkTheme___LUnBx .TimePickerFeed-module__item___SczLD.TimePickerFeed-module__center___skogb .TimePickerFeed-module__content___Qb5A3 {
|
|
4715
|
+
font-size: 20px;
|
|
4716
|
+
line-height: 32px;
|
|
4717
|
+
color: var(--gray-iron-300);
|
|
4718
|
+
font-weight: 400;
|
|
4719
|
+
font-family: var(--golos);
|
|
4720
|
+
font-stretch: normal;
|
|
4721
|
+
font-style: normal;
|
|
4722
|
+
font-variant: normal;
|
|
4723
|
+
}
|
|
4724
|
+
.TimePickerFeed-module__wrapper___BiInJ.TimePickerFeed-module__darkTheme___LUnBx .TimePickerFeed-module__item___SczLD.TimePickerFeed-module__floor1___Lu5VV .TimePickerFeed-module__content___Qb5A3 {
|
|
4725
|
+
font-size: 20px;
|
|
4726
|
+
line-height: 32px;
|
|
4727
|
+
color: var(--gray-iron-600);
|
|
4728
|
+
font-weight: 400;
|
|
4729
|
+
font-family: var(--golos);
|
|
4730
|
+
font-stretch: normal;
|
|
4731
|
+
font-style: normal;
|
|
4732
|
+
font-variant: normal;
|
|
4733
|
+
}
|
|
4734
|
+
.TimePickerFeed-module__wrapper___BiInJ.TimePickerFeed-module__darkTheme___LUnBx .TimePickerFeed-module__item___SczLD.TimePickerFeed-module__floor1___Lu5VV .TimePickerFeed-module__content___Qb5A3 {
|
|
4735
|
+
font-size: 20px;
|
|
4736
|
+
line-height: 32px;
|
|
4737
|
+
color: var(--gray-iron-700);
|
|
4738
|
+
font-weight: 400;
|
|
4739
|
+
font-family: var(--golos);
|
|
4740
|
+
font-stretch: normal;
|
|
4741
|
+
font-style: normal;
|
|
4742
|
+
font-variant: normal;
|
|
4743
|
+
}
|
|
3790
4744
|
/*!*************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
3791
4745
|
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/DateTimePicker/styles/pickers/DatePicker.module.scss ***!
|
|
3792
4746
|
\*************************************************************************************************************************************************************************************************************************************************************************************/
|
|
@@ -3851,6 +4805,19 @@
|
|
|
3851
4805
|
grid-template-rows: auto;
|
|
3852
4806
|
gap: 2px;
|
|
3853
4807
|
}
|
|
4808
|
+
.DatePicker-module__datePicker___rIs4v.DatePicker-module__dark___iQSm7 {
|
|
4809
|
+
background-color: var(--gray-iron-900);
|
|
4810
|
+
}
|
|
4811
|
+
.DatePicker-module__datePicker___rIs4v.DatePicker-module__dark___iQSm7 .DatePicker-module__weekDaysList___ozEzA .DatePicker-module__weekDay___hC8So {
|
|
4812
|
+
font-size: 14px;
|
|
4813
|
+
line-height: 16px;
|
|
4814
|
+
color: var(--gray-iron-500);
|
|
4815
|
+
font-weight: 400;
|
|
4816
|
+
font-family: var(--golos-ui);
|
|
4817
|
+
font-stretch: normal;
|
|
4818
|
+
font-style: normal;
|
|
4819
|
+
font-variant: normal;
|
|
4820
|
+
}
|
|
3854
4821
|
/*!******************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
3855
4822
|
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/DateTimePicker/styles/pickers/YearMonthPicker.module.scss ***!
|
|
3856
4823
|
\******************************************************************************************************************************************************************************************************************************************************************************************/
|
|
@@ -3887,6 +4854,9 @@
|
|
|
3887
4854
|
grid-template-columns: repeat(3, 1fr);
|
|
3888
4855
|
gap: 4px;
|
|
3889
4856
|
}
|
|
4857
|
+
.YearMonthPicker-module__YearMonthPicker___jd8KA.YearMonthPicker-module__dark___TnpR3 {
|
|
4858
|
+
background-color: var(--gray-iron-900);
|
|
4859
|
+
}
|
|
3890
4860
|
/*!*************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
3891
4861
|
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/DateTimePicker/styles/pickers/TimePicker.module.scss ***!
|
|
3892
4862
|
\*************************************************************************************************************************************************************************************************************************************************************************************/
|
|
@@ -3958,6 +4928,22 @@
|
|
|
3958
4928
|
height: 1px;
|
|
3959
4929
|
background-color: var(--gray-300);
|
|
3960
4930
|
}
|
|
4931
|
+
.TimePicker-module__TimePicker___iT3kM.TimePicker-module__dark___p_dkO .TimePicker-module__timer___c3ZIO .TimePicker-module__main___A3N1w .TimePicker-module__divider___PbRR9 {
|
|
4932
|
+
font-size: 20px;
|
|
4933
|
+
line-height: 32px;
|
|
4934
|
+
color: var(--gray-iron-300);
|
|
4935
|
+
font-weight: 400;
|
|
4936
|
+
font-family: var(--golos);
|
|
4937
|
+
font-stretch: normal;
|
|
4938
|
+
font-style: normal;
|
|
4939
|
+
font-variant: normal;
|
|
4940
|
+
}
|
|
4941
|
+
.TimePicker-module__TimePicker___iT3kM.TimePicker-module__dark___p_dkO .TimePicker-module__timer___c3ZIO .TimePicker-module__main___A3N1w:before {
|
|
4942
|
+
background-color: var(--gray-iron-800);
|
|
4943
|
+
}
|
|
4944
|
+
.TimePicker-module__TimePicker___iT3kM.TimePicker-module__dark___p_dkO .TimePicker-module__timer___c3ZIO .TimePicker-module__line___wOgTS {
|
|
4945
|
+
background-color: var(--gray-iron-700);
|
|
4946
|
+
}
|
|
3961
4947
|
/*!*********************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
3962
4948
|
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/DateTimePicker/styles/DateTimePicker.module.scss ***!
|
|
3963
4949
|
\*********************************************************************************************************************************************************************************************************************************************************************************/
|
|
@@ -4029,6 +5015,18 @@
|
|
|
4029
5015
|
.DateTimePicker-module__DateTimePicker___qMYhM .DateTimePicker-module__actions___bHZxf {
|
|
4030
5016
|
display: flex;
|
|
4031
5017
|
}
|
|
5018
|
+
.DateTimePicker-module__DateTimePicker___qMYhM.DateTimePicker-module__dark___uSir3 {
|
|
5019
|
+
background-color: var(--gray-iron-900);
|
|
5020
|
+
}
|
|
5021
|
+
.DateTimePicker-module__DateTimePicker___qMYhM.DateTimePicker-module__dark___uSir3 .DateTimePicker-module__header___I8wlx .DateTimePicker-module__title___o52hs {
|
|
5022
|
+
color: var(--gray-iron-100);
|
|
5023
|
+
}
|
|
5024
|
+
.DateTimePicker-module__DateTimePicker___qMYhM.DateTimePicker-module__dark___uSir3 .DateTimePicker-module__header___I8wlx .DateTimePicker-module__subtitle___qRFKk {
|
|
5025
|
+
color: var(--gray-iron-500);
|
|
5026
|
+
}
|
|
5027
|
+
.DateTimePicker-module__DateTimePicker___qMYhM.DateTimePicker-module__dark___uSir3 .DateTimePicker-module__actions___bHZxf {
|
|
5028
|
+
border-top: 1px solid var(--gray-iron-800);
|
|
5029
|
+
}
|
|
4032
5030
|
/*!*******************************************************************************************************************************************************************************************************************************************************************!*\
|
|
4033
5031
|
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/Tooltip/styles/Tooltip.module.scss ***!
|
|
4034
5032
|
\*******************************************************************************************************************************************************************************************************************************************************************/
|
|
@@ -4165,5 +5163,13 @@
|
|
|
4165
5163
|
font-style: normal;
|
|
4166
5164
|
font-variant: normal;
|
|
4167
5165
|
}
|
|
5166
|
+
.Dropdown-module__Dropdown___qWoW1.Dropdown-module__DropdownDark___P5WL1 {
|
|
5167
|
+
border: 1px solid var(--gray-iron-800);
|
|
5168
|
+
background-color: var(--gray-iron-900);
|
|
5169
|
+
box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.2509803922);
|
|
5170
|
+
}
|
|
5171
|
+
.Dropdown-module__Dropdown___qWoW1.Dropdown-module__DropdownDark___P5WL1 .Dropdown-module__header___Ct_Nh {
|
|
5172
|
+
color: var(--gray-iron-500);
|
|
5173
|
+
}
|
|
4168
5174
|
|
|
4169
5175
|
/*# sourceMappingURL=index.css.map*/
|