@epam/uui 4.11.0-alpha.1 → 5.0.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/styles/buttonLayout.scss +4 -2
- package/assets/styles/typography-mixins.scss +1 -1
- package/components/buttons/TabButton.d.ts.map +1 -1
- package/components/datePickers/RangeDatePicker.d.ts.map +1 -1
- package/components/filters/FilterPanelItemToggler.d.ts.map +1 -1
- package/components/filters/FilterPickerBody.d.ts.map +1 -1
- package/components/filters/FiltersPanel.d.ts +2 -3
- package/components/filters/FiltersPanel.d.ts.map +1 -1
- package/components/filters/FiltersPanelItem.d.ts.map +1 -1
- package/components/filters/PresetPanel/PresetsPanel.d.ts +4 -4
- package/components/filters/PresetPanel/PresetsPanel.d.ts.map +1 -1
- package/components/layout/FlexItems/FlexRow.d.ts +1 -2
- package/components/layout/FlexItems/FlexRow.d.ts.map +1 -1
- package/components/layout/FlexItems/index.d.ts +1 -1
- package/components/layout/FlexItems/index.d.ts.map +1 -1
- package/components/navigation/Anchor.d.ts +3 -0
- package/components/navigation/Anchor.d.ts.map +1 -0
- package/components/navigation/MainMenu/GlobalMenu.d.ts +2 -2
- package/components/navigation/MainMenu/GlobalMenu.d.ts.map +1 -1
- package/components/navigation/MainMenu/MainMenuAvatar.d.ts +1 -1
- package/components/navigation/MainMenu/MainMenuAvatar.d.ts.map +1 -1
- package/components/navigation/MainMenu/MainMenuDropdown.d.ts.map +1 -1
- package/components/navigation/index.d.ts +1 -0
- package/components/navigation/index.d.ts.map +1 -1
- package/components/overlays/DropdownMenu.d.ts.map +1 -1
- package/components/overlays/NotificationCard.d.ts.map +1 -1
- package/components/overlays/index.d.ts +1 -0
- package/components/overlays/index.d.ts.map +1 -1
- package/components/pickers/DataPickerHeader.d.ts.map +1 -1
- package/components/pickers/PickerInput.d.ts.map +1 -1
- package/components/pickers/PickerList.d.ts +2 -2
- package/components/pickers/PickerList.d.ts.map +1 -1
- package/components/tables/DataTableCell.d.ts.map +1 -1
- package/components/tables/DataTableRow.d.ts.map +1 -1
- package/components/tables/types.d.ts +0 -4
- package/components/tables/types.d.ts.map +1 -1
- package/components/types.d.ts +2 -0
- package/components/types.d.ts.map +1 -1
- package/components/widgets/AvatarStack.d.ts +4 -0
- package/components/widgets/AvatarStack.d.ts.map +1 -0
- package/components/widgets/Paginator.d.ts +3 -0
- package/components/widgets/Paginator.d.ts.map +1 -0
- package/components/widgets/index.d.ts +2 -0
- package/components/widgets/index.d.ts.map +1 -1
- package/index.esm.js +6362 -0
- package/index.esm.js.map +1 -0
- package/index.js +3422 -640
- package/index.js.map +1 -1
- package/package.json +12 -13
- package/readme.md +2 -2
- package/stats.html +19 -1
- package/styles.css +640 -499
- package/styles.css.map +1 -1
- package/components/layout/FlexItems/FlexSpacer.d.ts +0 -5
- package/components/layout/FlexItems/FlexSpacer.d.ts.map +0 -1
package/styles.css
CHANGED
|
@@ -125,6 +125,7 @@
|
|
|
125
125
|
display: inline-flex;
|
|
126
126
|
align-items: center;
|
|
127
127
|
color: var(--uui-primary);
|
|
128
|
+
text-decoration: underline;
|
|
128
129
|
}
|
|
129
130
|
.Button_typography-inline__rkIhO a:visited {
|
|
130
131
|
color: #5214CC;
|
|
@@ -133,7 +134,6 @@
|
|
|
133
134
|
color: #3F0F9E;
|
|
134
135
|
}
|
|
135
136
|
.Button_typography-inline__rkIhO a:hover {
|
|
136
|
-
text-decoration: underline;
|
|
137
137
|
color: var(--uui-primary-dark);
|
|
138
138
|
}
|
|
139
139
|
.Button_typography-inline__rkIhO code {
|
|
@@ -165,7 +165,6 @@
|
|
|
165
165
|
.Button_root__uIzk9.uui-button-box {
|
|
166
166
|
border-style: solid;
|
|
167
167
|
justify-content: center;
|
|
168
|
-
min-width: inherit;
|
|
169
168
|
border-radius: var(--uui-btn-border-radius);
|
|
170
169
|
}
|
|
171
170
|
.Button_root__uIzk9 .uui-caption {
|
|
@@ -174,7 +173,7 @@
|
|
|
174
173
|
min-width: 0;
|
|
175
174
|
text-align: center;
|
|
176
175
|
flex: 1 1 auto;
|
|
177
|
-
font-family: var(--font
|
|
176
|
+
font-family: var(--uui-btn-font);
|
|
178
177
|
font-weight: normal;
|
|
179
178
|
user-select: none;
|
|
180
179
|
}
|
|
@@ -301,6 +300,26 @@
|
|
|
301
300
|
border-color: transparent;
|
|
302
301
|
}
|
|
303
302
|
|
|
303
|
+
.Button_size-18__Tawje {
|
|
304
|
+
min-width: 18px;
|
|
305
|
+
padding-left: 2px;
|
|
306
|
+
padding-right: 2px;
|
|
307
|
+
}
|
|
308
|
+
.Button_size-18__Tawje .uui-caption {
|
|
309
|
+
padding-left: 3px;
|
|
310
|
+
padding-right: 3px;
|
|
311
|
+
}
|
|
312
|
+
.Button_size-18__Tawje.uui-button-box {
|
|
313
|
+
min-height: 18px;
|
|
314
|
+
border-width: 1px;
|
|
315
|
+
}
|
|
316
|
+
.Button_size-18__Tawje .uui-caption {
|
|
317
|
+
line-height: 12px;
|
|
318
|
+
font-size: 10px;
|
|
319
|
+
padding-top: 2px;
|
|
320
|
+
padding-bottom: 2px;
|
|
321
|
+
}
|
|
322
|
+
|
|
304
323
|
.Button_size-24__8SJZp {
|
|
305
324
|
min-width: 24px;
|
|
306
325
|
padding-left: 5px;
|
|
@@ -379,7 +398,7 @@
|
|
|
379
398
|
font-size: 16px;
|
|
380
399
|
padding-top: 8px;
|
|
381
400
|
padding-bottom: 8px;
|
|
382
|
-
font-size:
|
|
401
|
+
font-size: 16px;
|
|
383
402
|
}
|
|
384
403
|
.Button_size-42__h3Y-0 .uui-caption {
|
|
385
404
|
font-family: var(--font-primary);
|
|
@@ -404,7 +423,7 @@
|
|
|
404
423
|
font-size: 16px;
|
|
405
424
|
padding-top: 11px;
|
|
406
425
|
padding-bottom: 11px;
|
|
407
|
-
font-size:
|
|
426
|
+
font-size: 16px;
|
|
408
427
|
}
|
|
409
428
|
.Button_size-48__VaI4- .uui-caption {
|
|
410
429
|
font-family: var(--font-primary);
|
|
@@ -453,7 +472,7 @@
|
|
|
453
472
|
background-color: transparent;
|
|
454
473
|
}
|
|
455
474
|
.LinkButton_root__SWC7c .uui-caption {
|
|
456
|
-
font-family: var(--font
|
|
475
|
+
font-family: var(--uui-link-button-font);
|
|
457
476
|
font-weight: normal;
|
|
458
477
|
}
|
|
459
478
|
.LinkButton_root__SWC7c.LinkButton_size-18__XI44N {
|
|
@@ -555,7 +574,7 @@
|
|
|
555
574
|
font-size: 16px;
|
|
556
575
|
padding-top: 9px;
|
|
557
576
|
padding-bottom: 9px;
|
|
558
|
-
font-size:
|
|
577
|
+
font-size: 16px;
|
|
559
578
|
}
|
|
560
579
|
.LinkButton_root__SWC7c.LinkButton_size-42__apHCj .uui-caption {
|
|
561
580
|
font-family: var(--font-primary);
|
|
@@ -580,7 +599,7 @@
|
|
|
580
599
|
font-size: 16px;
|
|
581
600
|
padding-top: 12px;
|
|
582
601
|
padding-bottom: 12px;
|
|
583
|
-
font-size:
|
|
602
|
+
font-size: 16px;
|
|
584
603
|
}
|
|
585
604
|
.LinkButton_root__SWC7c.LinkButton_size-48__7zgFe .uui-caption {
|
|
586
605
|
font-family: var(--font-primary);
|
|
@@ -678,6 +697,7 @@
|
|
|
678
697
|
display: inline-flex;
|
|
679
698
|
align-items: center;
|
|
680
699
|
color: var(--uui-primary);
|
|
700
|
+
text-decoration: underline;
|
|
681
701
|
}
|
|
682
702
|
.TabButton_typography-inline__JMTQP a:visited {
|
|
683
703
|
color: #5214CC;
|
|
@@ -686,7 +706,6 @@
|
|
|
686
706
|
color: #3F0F9E;
|
|
687
707
|
}
|
|
688
708
|
.TabButton_typography-inline__JMTQP a:hover {
|
|
689
|
-
text-decoration: underline;
|
|
690
709
|
color: var(--uui-primary-dark);
|
|
691
710
|
}
|
|
692
711
|
.TabButton_typography-inline__JMTQP code {
|
|
@@ -727,7 +746,7 @@
|
|
|
727
746
|
bottom: -1px;
|
|
728
747
|
display: flex;
|
|
729
748
|
align-items: center;
|
|
730
|
-
font-family: var(--font
|
|
749
|
+
font-family: var(--uui-tab-button-font);
|
|
731
750
|
font-weight: normal;
|
|
732
751
|
border-bottom: 3px solid transparent;
|
|
733
752
|
}
|
|
@@ -746,9 +765,6 @@
|
|
|
746
765
|
fill: var(--uui-tab-button-text-active);
|
|
747
766
|
border-color: var(--uui-tab-button-text-active);
|
|
748
767
|
}
|
|
749
|
-
.TabButton_root__WwWmb.uui-active {
|
|
750
|
-
border-color: var(--uui-tab-button-text-active);
|
|
751
|
-
}
|
|
752
768
|
.TabButton_root__WwWmb.uui-disabled {
|
|
753
769
|
color: var(--uui-tab-button-text-disabled);
|
|
754
770
|
fill: var(--uui-tab-button-text-disabled);
|
|
@@ -778,8 +794,8 @@
|
|
|
778
794
|
padding-top: 3px;
|
|
779
795
|
padding-bottom: 3px;
|
|
780
796
|
letter-spacing: 0;
|
|
781
|
-
color: var(--uui-
|
|
782
|
-
background-color: var(--uui-
|
|
797
|
+
color: var(--uui-informer-caption);
|
|
798
|
+
background-color: var(--uui-informer-bg);
|
|
783
799
|
padding: 0 6px;
|
|
784
800
|
margin-left: 6px;
|
|
785
801
|
margin-right: 3px;
|
|
@@ -892,6 +908,7 @@
|
|
|
892
908
|
display: inline-flex;
|
|
893
909
|
align-items: center;
|
|
894
910
|
color: var(--uui-primary);
|
|
911
|
+
text-decoration: underline;
|
|
895
912
|
}
|
|
896
913
|
.VerticalTabButton_typography-inline__evOKQ a:visited {
|
|
897
914
|
color: #5214CC;
|
|
@@ -900,7 +917,6 @@
|
|
|
900
917
|
color: #3F0F9E;
|
|
901
918
|
}
|
|
902
919
|
.VerticalTabButton_typography-inline__evOKQ a:hover {
|
|
903
|
-
text-decoration: underline;
|
|
904
920
|
color: var(--uui-primary-dark);
|
|
905
921
|
}
|
|
906
922
|
.VerticalTabButton_typography-inline__evOKQ code {
|
|
@@ -1025,6 +1041,7 @@
|
|
|
1025
1041
|
display: inline-flex;
|
|
1026
1042
|
align-items: center;
|
|
1027
1043
|
color: var(--uui-primary);
|
|
1044
|
+
text-decoration: underline;
|
|
1028
1045
|
}
|
|
1029
1046
|
.Checkbox_typography-inline__v0o42 a:visited {
|
|
1030
1047
|
color: #5214CC;
|
|
@@ -1033,7 +1050,6 @@
|
|
|
1033
1050
|
color: #3F0F9E;
|
|
1034
1051
|
}
|
|
1035
1052
|
.Checkbox_typography-inline__v0o42 a:hover {
|
|
1036
|
-
text-decoration: underline;
|
|
1037
1053
|
color: var(--uui-primary-dark);
|
|
1038
1054
|
}
|
|
1039
1055
|
.Checkbox_typography-inline__v0o42 code {
|
|
@@ -1074,7 +1090,7 @@
|
|
|
1074
1090
|
border-radius: var(--uui-checkbox-border-radius);
|
|
1075
1091
|
}
|
|
1076
1092
|
.Checkbox_root__-oMf6 .uui-input-label {
|
|
1077
|
-
font-family: var(--font
|
|
1093
|
+
font-family: var(--uui-checkbox-font);
|
|
1078
1094
|
color: var(--uui-checkbox-label);
|
|
1079
1095
|
margin-left: 12px;
|
|
1080
1096
|
flex-grow: 1;
|
|
@@ -1127,6 +1143,7 @@
|
|
|
1127
1143
|
color: var(--uui-checkbox-error);
|
|
1128
1144
|
}
|
|
1129
1145
|
.Checkbox_root__-oMf6.Checkbox_size-18__BzbEk .uui-checkbox {
|
|
1146
|
+
box-sizing: border-box;
|
|
1130
1147
|
width: 18px;
|
|
1131
1148
|
height: 18px;
|
|
1132
1149
|
}
|
|
@@ -1138,6 +1155,7 @@
|
|
|
1138
1155
|
line-height: 18px;
|
|
1139
1156
|
}
|
|
1140
1157
|
.Checkbox_root__-oMf6.Checkbox_size-12__ASr3R .uui-checkbox {
|
|
1158
|
+
box-sizing: border-box;
|
|
1141
1159
|
width: 12px;
|
|
1142
1160
|
height: 12px;
|
|
1143
1161
|
}
|
|
@@ -1246,6 +1264,7 @@
|
|
|
1246
1264
|
display: inline-flex;
|
|
1247
1265
|
align-items: center;
|
|
1248
1266
|
color: var(--uui-primary);
|
|
1267
|
+
text-decoration: underline;
|
|
1249
1268
|
}
|
|
1250
1269
|
.RadioInput_typography-inline__9Q7fd a:visited {
|
|
1251
1270
|
color: #5214CC;
|
|
@@ -1254,7 +1273,6 @@
|
|
|
1254
1273
|
color: #3F0F9E;
|
|
1255
1274
|
}
|
|
1256
1275
|
.RadioInput_typography-inline__9Q7fd a:hover {
|
|
1257
|
-
text-decoration: underline;
|
|
1258
1276
|
color: var(--uui-primary-dark);
|
|
1259
1277
|
}
|
|
1260
1278
|
.RadioInput_typography-inline__9Q7fd code {
|
|
@@ -1315,7 +1333,7 @@
|
|
|
1315
1333
|
.RadioInput_root__wxJgt .uui-input-label {
|
|
1316
1334
|
color: var(--uui-radio-input-label);
|
|
1317
1335
|
flex-grow: 1;
|
|
1318
|
-
font-family: var(--font
|
|
1336
|
+
font-family: var(--uui-radio-input-font);
|
|
1319
1337
|
margin-left: 12px;
|
|
1320
1338
|
display: flex;
|
|
1321
1339
|
align-items: center;
|
|
@@ -1467,7 +1485,7 @@
|
|
|
1467
1485
|
transition: 0.1s transform cubic-bezier(0.4, 0, 0.2, 1);
|
|
1468
1486
|
}
|
|
1469
1487
|
.Switch_root__q-6Iy .uui-input-label {
|
|
1470
|
-
font-family: var(--font
|
|
1488
|
+
font-family: var(--uui-switch-font);
|
|
1471
1489
|
color: var(--uui-switch-label);
|
|
1472
1490
|
margin-left: 11px;
|
|
1473
1491
|
}
|
|
@@ -1609,6 +1627,7 @@
|
|
|
1609
1627
|
display: inline-flex;
|
|
1610
1628
|
align-items: center;
|
|
1611
1629
|
color: var(--uui-primary);
|
|
1630
|
+
text-decoration: underline;
|
|
1612
1631
|
}
|
|
1613
1632
|
.TextInput_typography-inline__DAwAE a:visited {
|
|
1614
1633
|
color: #5214CC;
|
|
@@ -1617,7 +1636,6 @@
|
|
|
1617
1636
|
color: #3F0F9E;
|
|
1618
1637
|
}
|
|
1619
1638
|
.TextInput_typography-inline__DAwAE a:hover {
|
|
1620
|
-
text-decoration: underline;
|
|
1621
1639
|
color: var(--uui-primary-dark);
|
|
1622
1640
|
}
|
|
1623
1641
|
.TextInput_typography-inline__DAwAE code {
|
|
@@ -1656,7 +1674,7 @@
|
|
|
1656
1674
|
}
|
|
1657
1675
|
.TextInput_root__UKzkT .uui-input {
|
|
1658
1676
|
color: var(--uui-text-input-text);
|
|
1659
|
-
font-family: var(--font
|
|
1677
|
+
font-family: var(--uui-text-input-font);
|
|
1660
1678
|
padding-left: 6px;
|
|
1661
1679
|
padding-right: 6px;
|
|
1662
1680
|
}
|
|
@@ -1802,20 +1820,22 @@
|
|
|
1802
1820
|
border-width: 1px;
|
|
1803
1821
|
}
|
|
1804
1822
|
.Accordion_root__fTEyW .uui-accordion-toggler {
|
|
1805
|
-
font-family: var(--font
|
|
1823
|
+
font-family: var(--uui-accordion-toggler-font);
|
|
1806
1824
|
color: var(--uui-accordion-text);
|
|
1807
1825
|
cursor: pointer;
|
|
1808
1826
|
}
|
|
1809
1827
|
.Accordion_root__fTEyW .uui-accordion-body {
|
|
1810
|
-
font-family: var(--font
|
|
1828
|
+
font-family: var(--uui-accordion-body-font);
|
|
1811
1829
|
color: var(--uui-accordion-text);
|
|
1812
1830
|
}
|
|
1831
|
+
.Accordion_root__fTEyW.uui-accordion-container.Accordion_mode-block__WJ0h9 {
|
|
1832
|
+
box-shadow: var(--uui-accordion-shadow);
|
|
1833
|
+
}
|
|
1813
1834
|
.Accordion_root__fTEyW.Accordion_mode-block__WJ0h9 {
|
|
1814
1835
|
border-radius: var(--uui-accordion-border-radius);
|
|
1815
1836
|
}
|
|
1816
1837
|
.Accordion_root__fTEyW.Accordion_mode-block__WJ0h9 .uui-accordion-toggler {
|
|
1817
1838
|
background: var(--uui-accordion-bg);
|
|
1818
|
-
box-shadow: var(--uui-accordion-shadow);
|
|
1819
1839
|
fill: var(--uui-accordion-icon);
|
|
1820
1840
|
line-height: 24px;
|
|
1821
1841
|
font-size: 18px;
|
|
@@ -1838,26 +1858,27 @@
|
|
|
1838
1858
|
line-height: 24px;
|
|
1839
1859
|
letter-spacing: 0;
|
|
1840
1860
|
background: var(--uui-accordion-bg);
|
|
1841
|
-
box-shadow: var(--uui-accordion-shadow);
|
|
1842
1861
|
border-top: 1px solid var(--uui-accordion-border);
|
|
1843
1862
|
border-radius: 0 0 var(--uui-accordion-border-radius) var(--uui-accordion-border-radius);
|
|
1844
1863
|
}
|
|
1845
1864
|
.Accordion_root__fTEyW.Accordion_mode-block__WJ0h9.uui-opened .uui-accordion-toggler {
|
|
1846
1865
|
border-radius: var(--uui-accordion-border-radius) var(--uui-accordion-border-radius) 0 0;
|
|
1847
|
-
box-shadow: var(--uui-accordion-shadow);
|
|
1848
1866
|
}
|
|
1849
1867
|
.Accordion_root__fTEyW.Accordion_mode-block__WJ0h9.uui-opened .uui-accordion-toggler:hover, .Accordion_root__fTEyW.Accordion_mode-block__WJ0h9.uui-opened .uui-accordion-toggler:focus {
|
|
1850
|
-
border-color: var(--uui-accordion-
|
|
1868
|
+
border-color: var(--uui-accordion-shadow-hovered);
|
|
1851
1869
|
}
|
|
1852
1870
|
.Accordion_root__fTEyW.Accordion_mode-block__WJ0h9.uui-disabled .uui-accordion-toggler {
|
|
1853
1871
|
cursor: default;
|
|
1854
1872
|
fill: var(--uui-accordion-icon-disabled);
|
|
1855
1873
|
}
|
|
1874
|
+
.Accordion_root__fTEyW.Accordion_mode-block__WJ0h9.uui-disabled .uui-accordion-toggler.uui-opened {
|
|
1875
|
+
border-radius: var(--uui-accordion-border-radius) var(--uui-accordion-border-radius) 0 0;
|
|
1876
|
+
}
|
|
1856
1877
|
.Accordion_root__fTEyW.Accordion_mode-block__WJ0h9.uui-disabled .uui-accordion-toggler .uui-accordion-title {
|
|
1857
1878
|
color: var(--uui-accordion-text-disabled);
|
|
1858
1879
|
}
|
|
1859
1880
|
.Accordion_root__fTEyW.Accordion_mode-block__WJ0h9.uui-disabled .uui-accordion-toggler:hover, .Accordion_root__fTEyW.Accordion_mode-block__WJ0h9.uui-disabled .uui-accordion-toggler:focus {
|
|
1860
|
-
box-shadow:
|
|
1881
|
+
box-shadow: none;
|
|
1861
1882
|
}
|
|
1862
1883
|
.Accordion_root__fTEyW.Accordion_mode-inline__2zs0- .uui-accordion-toggler {
|
|
1863
1884
|
border-bottom: 1px solid var(--uui-accordion-border);
|
|
@@ -1877,12 +1898,14 @@
|
|
|
1877
1898
|
border-bottom: 1px solid var(--uui-accordion-border);
|
|
1878
1899
|
}
|
|
1879
1900
|
.Accordion_root__fTEyW.Accordion_mode-inline__2zs0-.uui-opened .uui-accordion-toggler {
|
|
1880
|
-
border-bottom:
|
|
1901
|
+
border-bottom: none;
|
|
1881
1902
|
}
|
|
1882
1903
|
.Accordion_root__fTEyW.Accordion_mode-inline__2zs0-.uui-disabled .uui-accordion-toggler {
|
|
1883
1904
|
cursor: default;
|
|
1884
1905
|
fill: var(--uui-accordion-icon-disabled);
|
|
1885
|
-
|
|
1906
|
+
}
|
|
1907
|
+
.Accordion_root__fTEyW.Accordion_mode-inline__2zs0-.uui-disabled .uui-accordion-toggler.uui-opened {
|
|
1908
|
+
border-bottom: none;
|
|
1886
1909
|
}
|
|
1887
1910
|
.Accordion_root__fTEyW.Accordion_mode-inline__2zs0-.uui-disabled .uui-accordion-toggler .uui-accordion-title {
|
|
1888
1911
|
color: var(--uui-accordion-text-disabled);
|
|
@@ -2006,6 +2029,7 @@
|
|
|
2006
2029
|
display: inline-flex;
|
|
2007
2030
|
align-items: center;
|
|
2008
2031
|
color: var(--uui-primary);
|
|
2032
|
+
text-decoration: underline;
|
|
2009
2033
|
}
|
|
2010
2034
|
.FlexRow_typography-inline__br3BL a:visited {
|
|
2011
2035
|
color: #5214CC;
|
|
@@ -2014,7 +2038,6 @@
|
|
|
2014
2038
|
color: #3F0F9E;
|
|
2015
2039
|
}
|
|
2016
2040
|
.FlexRow_typography-inline__br3BL a:hover {
|
|
2017
|
-
text-decoration: underline;
|
|
2018
2041
|
color: var(--uui-primary-dark);
|
|
2019
2042
|
}
|
|
2020
2043
|
.FlexRow_typography-inline__br3BL code {
|
|
@@ -2045,10 +2068,10 @@
|
|
|
2045
2068
|
|
|
2046
2069
|
.FlexRow_root__8pevZ {
|
|
2047
2070
|
box-sizing: content-box;
|
|
2071
|
+
background-color: var(--uui-flex-row-bg);
|
|
2048
2072
|
}
|
|
2049
|
-
.FlexRow_root__8pevZ
|
|
2050
|
-
|
|
2051
|
-
cursor: pointer;
|
|
2073
|
+
.FlexRow_root__8pevZ.FlexRow_border-bottom__5L1Xk {
|
|
2074
|
+
border-bottom: var(--uui-flex-row-border-bottom);
|
|
2052
2075
|
}
|
|
2053
2076
|
.FlexRow_root__8pevZ.FlexRow_top-shadow__yLJfa {
|
|
2054
2077
|
box-shadow: inset 0 10px 5px -10px rgba(51, 51, 51, 0.2);
|
|
@@ -2128,9 +2151,6 @@
|
|
|
2128
2151
|
.FlexRow_root__8pevZ.FlexRow_spacing-18__QdC3L > *:not(:first-child) {
|
|
2129
2152
|
margin-left: 9px;
|
|
2130
2153
|
}
|
|
2131
|
-
.FlexRow_root__8pevZ.FlexRow_border-bottom__5L1Xk {
|
|
2132
|
-
border-bottom: 1px solid var(--uui-divider);
|
|
2133
|
-
}
|
|
2134
2154
|
.Panel_root__Ue9u5 {
|
|
2135
2155
|
overflow: hidden;
|
|
2136
2156
|
border-radius: var(--uui-panel-border-radius);
|
|
@@ -2176,13 +2196,19 @@
|
|
|
2176
2196
|
display: flex;
|
|
2177
2197
|
}
|
|
2178
2198
|
|
|
2199
|
+
.Alert_action-icon__GhtYo {
|
|
2200
|
+
min-height: 30px;
|
|
2201
|
+
}
|
|
2202
|
+
|
|
2179
2203
|
.Alert_action-link__Hj-D2:not(:last-child) {
|
|
2180
2204
|
margin-right: 12px;
|
|
2181
2205
|
}
|
|
2182
2206
|
|
|
2183
2207
|
.Alert_close-icon__brCPM {
|
|
2184
|
-
height: 100%;
|
|
2185
2208
|
margin-left: 17px;
|
|
2209
|
+
min-height: 30px;
|
|
2210
|
+
min-width: fit-content;
|
|
2211
|
+
align-self: flex-start;
|
|
2186
2212
|
}
|
|
2187
2213
|
|
|
2188
2214
|
.Alert_main-path__jHhJZ {
|
|
@@ -2357,6 +2383,7 @@
|
|
|
2357
2383
|
display: inline-flex;
|
|
2358
2384
|
align-items: center;
|
|
2359
2385
|
color: var(--uui-primary);
|
|
2386
|
+
text-decoration: underline;
|
|
2360
2387
|
}
|
|
2361
2388
|
.DropdownMenu_typography-inline__QTz-3 a:visited {
|
|
2362
2389
|
color: #5214CC;
|
|
@@ -2365,7 +2392,6 @@
|
|
|
2365
2392
|
color: #3F0F9E;
|
|
2366
2393
|
}
|
|
2367
2394
|
.DropdownMenu_typography-inline__QTz-3 a:hover {
|
|
2368
|
-
text-decoration: underline;
|
|
2369
2395
|
color: var(--uui-primary-dark);
|
|
2370
2396
|
}
|
|
2371
2397
|
.DropdownMenu_typography-inline__QTz-3 code {
|
|
@@ -2405,10 +2431,10 @@
|
|
|
2405
2431
|
.DropdownMenu_bodyRoot__hAgqI {
|
|
2406
2432
|
color: var(--uui-text-primary);
|
|
2407
2433
|
fill: var(--uui-icon);
|
|
2408
|
-
font-family: var(--font
|
|
2434
|
+
font-family: var(--uui-dropdown-menu-body-font);
|
|
2409
2435
|
font-size: 14px;
|
|
2410
2436
|
padding: 0.5em 0;
|
|
2411
|
-
background-color: var(--uui-
|
|
2437
|
+
background-color: var(--uui-dropdown-menu-bg);
|
|
2412
2438
|
box-shadow: var(--uui-shadow);
|
|
2413
2439
|
}
|
|
2414
2440
|
.DropdownMenu_bodyRoot__hAgqI .uui-icon svg {
|
|
@@ -2432,7 +2458,7 @@
|
|
|
2432
2458
|
.DropdownMenu_splitterRoot__mJGU2 .DropdownMenu_splitter__7AuFo {
|
|
2433
2459
|
width: 100%;
|
|
2434
2460
|
border: 0;
|
|
2435
|
-
border-top: 1px solid var(--uui-
|
|
2461
|
+
border-top: 1px solid var(--uui-dropdown-menu-splitter);
|
|
2436
2462
|
height: 0;
|
|
2437
2463
|
}
|
|
2438
2464
|
|
|
@@ -2444,7 +2470,7 @@
|
|
|
2444
2470
|
font-size: 14px;
|
|
2445
2471
|
box-sizing: border-box;
|
|
2446
2472
|
width: 100%;
|
|
2447
|
-
font-family: var(--font
|
|
2473
|
+
font-family: var(--uui-dropdown-menu-item-font);
|
|
2448
2474
|
cursor: default;
|
|
2449
2475
|
font-size: 0.9em;
|
|
2450
2476
|
}
|
|
@@ -2458,7 +2484,7 @@
|
|
|
2458
2484
|
font-size: 14px;
|
|
2459
2485
|
box-sizing: border-box;
|
|
2460
2486
|
width: 100%;
|
|
2461
|
-
font-family: var(--font
|
|
2487
|
+
font-family: var(--uui-dropdown-menu-item-font);
|
|
2462
2488
|
color: var(--uui-text-primary);
|
|
2463
2489
|
fill: var(--uui-icon);
|
|
2464
2490
|
}
|
|
@@ -2516,7 +2542,7 @@
|
|
|
2516
2542
|
outline: none;
|
|
2517
2543
|
}
|
|
2518
2544
|
.DropdownMenu_itemRoot__mBMPU.-clickable:not(.uui-disabled):hover, .DropdownMenu_itemRoot__mBMPU.-clickable:not(.uui-disabled):focus {
|
|
2519
|
-
background-color: var(--uui-
|
|
2545
|
+
background-color: var(--uui-dropdown-menu-item-hover);
|
|
2520
2546
|
fill: var(--uui-icon-active);
|
|
2521
2547
|
cursor: pointer;
|
|
2522
2548
|
}
|
|
@@ -2529,7 +2555,7 @@
|
|
|
2529
2555
|
cursor: default;
|
|
2530
2556
|
}
|
|
2531
2557
|
.DropdownMenu_itemRoot__mBMPU.uui-opened {
|
|
2532
|
-
background-color: var(--uui-
|
|
2558
|
+
background-color: var(--uui-dropdown-menu-item-active);
|
|
2533
2559
|
fill: var(--uui-text-primary);
|
|
2534
2560
|
}
|
|
2535
2561
|
.DropdownMenu_itemRoot__mBMPU > *:not(:last-child) {
|
|
@@ -2773,6 +2799,7 @@
|
|
|
2773
2799
|
display: inline-flex;
|
|
2774
2800
|
align-items: center;
|
|
2775
2801
|
color: var(--uui-primary);
|
|
2802
|
+
text-decoration: underline;
|
|
2776
2803
|
}
|
|
2777
2804
|
.typography_typography-inline__EbQN2 a:visited {
|
|
2778
2805
|
color: #5214CC;
|
|
@@ -2781,7 +2808,6 @@
|
|
|
2781
2808
|
color: #3F0F9E;
|
|
2782
2809
|
}
|
|
2783
2810
|
.typography_typography-inline__EbQN2 a:hover {
|
|
2784
|
-
text-decoration: underline;
|
|
2785
2811
|
color: var(--uui-primary-dark);
|
|
2786
2812
|
}
|
|
2787
2813
|
.typography_typography-inline__EbQN2 code {
|
|
@@ -2901,6 +2927,7 @@
|
|
|
2901
2927
|
display: inline-flex;
|
|
2902
2928
|
align-items: center;
|
|
2903
2929
|
color: var(--uui-primary);
|
|
2930
|
+
text-decoration: underline;
|
|
2904
2931
|
}
|
|
2905
2932
|
.Modals_typography-inline__ZDBk- a:visited {
|
|
2906
2933
|
color: #5214CC;
|
|
@@ -2909,7 +2936,6 @@
|
|
|
2909
2936
|
color: #3F0F9E;
|
|
2910
2937
|
}
|
|
2911
2938
|
.Modals_typography-inline__ZDBk- a:hover {
|
|
2912
|
-
text-decoration: underline;
|
|
2913
2939
|
color: var(--uui-primary-dark);
|
|
2914
2940
|
}
|
|
2915
2941
|
.Modals_typography-inline__ZDBk- code {
|
|
@@ -3082,6 +3108,7 @@
|
|
|
3082
3108
|
display: inline-flex;
|
|
3083
3109
|
align-items: center;
|
|
3084
3110
|
color: var(--uui-primary);
|
|
3111
|
+
text-decoration: underline;
|
|
3085
3112
|
}
|
|
3086
3113
|
.NotificationCard_typography-inline__BO1HG a:visited {
|
|
3087
3114
|
color: #5214CC;
|
|
@@ -3090,7 +3117,6 @@
|
|
|
3090
3117
|
color: #3F0F9E;
|
|
3091
3118
|
}
|
|
3092
3119
|
.NotificationCard_typography-inline__BO1HG a:hover {
|
|
3093
|
-
text-decoration: underline;
|
|
3094
3120
|
color: var(--uui-primary-dark);
|
|
3095
3121
|
}
|
|
3096
3122
|
.NotificationCard_typography-inline__BO1HG code {
|
|
@@ -3121,12 +3147,12 @@
|
|
|
3121
3147
|
|
|
3122
3148
|
.NotificationCard_root__HP4NM {
|
|
3123
3149
|
border-style: solid;
|
|
3124
|
-
border-color: var(--uui-notification-card-border);
|
|
3150
|
+
border-color: var(--uui-notification-card-border, transparent);
|
|
3125
3151
|
border-width: var(--uui-notification-card-border-width);
|
|
3126
3152
|
border-top-width: var(--uui-notification-card-border-top-width);
|
|
3127
3153
|
padding: 6px 18px;
|
|
3128
3154
|
width: 360px;
|
|
3129
|
-
background: var(--uui-notification-card-bg);
|
|
3155
|
+
background: var(--uui-notification-card-bg, var(--uui-surface));
|
|
3130
3156
|
display: flex;
|
|
3131
3157
|
overflow: hidden;
|
|
3132
3158
|
border-radius: var(--uui-notification-card-border-radius);
|
|
@@ -3266,6 +3292,7 @@
|
|
|
3266
3292
|
display: inline-flex;
|
|
3267
3293
|
align-items: center;
|
|
3268
3294
|
color: var(--uui-primary);
|
|
3295
|
+
text-decoration: underline;
|
|
3269
3296
|
}
|
|
3270
3297
|
.Tooltip_typography-inline__PWbqK a:visited {
|
|
3271
3298
|
color: #5214CC;
|
|
@@ -3274,7 +3301,6 @@
|
|
|
3274
3301
|
color: #3F0F9E;
|
|
3275
3302
|
}
|
|
3276
3303
|
.Tooltip_typography-inline__PWbqK a:hover {
|
|
3277
|
-
text-decoration: underline;
|
|
3278
3304
|
color: var(--uui-primary-dark);
|
|
3279
3305
|
}
|
|
3280
3306
|
.Tooltip_typography-inline__PWbqK code {
|
|
@@ -3307,7 +3333,7 @@
|
|
|
3307
3333
|
padding: 3px 12px;
|
|
3308
3334
|
line-height: 24px;
|
|
3309
3335
|
font-size: 14px;
|
|
3310
|
-
font-family: var(--font
|
|
3336
|
+
font-family: var(--uui-tooltip-font);
|
|
3311
3337
|
box-shadow: var(--uui-tooltip-shadow);
|
|
3312
3338
|
max-width: 300px;
|
|
3313
3339
|
word-wrap: break-word;
|
|
@@ -3428,6 +3454,7 @@
|
|
|
3428
3454
|
display: inline-flex;
|
|
3429
3455
|
align-items: center;
|
|
3430
3456
|
color: var(--uui-primary);
|
|
3457
|
+
text-decoration: underline;
|
|
3431
3458
|
}
|
|
3432
3459
|
.LabeledInput_typography-inline__iNLix a:visited {
|
|
3433
3460
|
color: #5214CC;
|
|
@@ -3436,7 +3463,6 @@
|
|
|
3436
3463
|
color: #3F0F9E;
|
|
3437
3464
|
}
|
|
3438
3465
|
.LabeledInput_typography-inline__iNLix a:hover {
|
|
3439
|
-
text-decoration: underline;
|
|
3440
3466
|
color: var(--uui-primary-dark);
|
|
3441
3467
|
}
|
|
3442
3468
|
.LabeledInput_typography-inline__iNLix code {
|
|
@@ -3471,7 +3497,7 @@
|
|
|
3471
3497
|
.LabeledInput_root__xDC2q .uui-label {
|
|
3472
3498
|
overflow: hidden;
|
|
3473
3499
|
text-overflow: ellipsis;
|
|
3474
|
-
font-family: var(--font
|
|
3500
|
+
font-family: var(--uui-labeled-input-font);
|
|
3475
3501
|
color: var(--uui-labeled-input);
|
|
3476
3502
|
}
|
|
3477
3503
|
.LabeledInput_root__xDC2q .uui-label .uui-labeled-input-info-icon {
|
|
@@ -3483,7 +3509,7 @@
|
|
|
3483
3509
|
color: var(--uui-labeled-input-asterisk);
|
|
3484
3510
|
}
|
|
3485
3511
|
.LabeledInput_root__xDC2q .uui-label .uui-labeled-input-optional {
|
|
3486
|
-
font-family: var(--font
|
|
3512
|
+
font-family: var(--uui-labeled-input-optional-font);
|
|
3487
3513
|
font-size: 12px;
|
|
3488
3514
|
line-height: 18px;
|
|
3489
3515
|
color: var(--uui-labeled-input-optional-text);
|
|
@@ -3495,7 +3521,7 @@
|
|
|
3495
3521
|
line-height: 18px;
|
|
3496
3522
|
font-size: 12px;
|
|
3497
3523
|
color: var(--uui-labeled-input-error);
|
|
3498
|
-
font-family: var(--font
|
|
3524
|
+
font-family: var(--uui-labeled-input-invalid-msg-font);
|
|
3499
3525
|
margin-top: 3px;
|
|
3500
3526
|
}
|
|
3501
3527
|
.LabeledInput_root__xDC2q.LabeledInput_size-24__0LWBQ .uui-label-top > .uui-label {
|
|
@@ -3533,11 +3559,8 @@
|
|
|
3533
3559
|
font-size: 14px;
|
|
3534
3560
|
line-height: 18px;
|
|
3535
3561
|
}
|
|
3536
|
-
.RadioGroup_root__uLWIn.uui-horizontal-direction
|
|
3537
|
-
|
|
3538
|
-
}
|
|
3539
|
-
.RadioGroup_root__uLWIn.uui-horizontal-direction :first-child {
|
|
3540
|
-
margin-left: 0;
|
|
3562
|
+
.RadioGroup_root__uLWIn.uui-horizontal-direction {
|
|
3563
|
+
gap: 12px 18px;
|
|
3541
3564
|
}
|
|
3542
3565
|
.RadioGroup_root__uLWIn.uui-vertical-direction > * {
|
|
3543
3566
|
margin-bottom: 12px;
|
|
@@ -3775,6 +3798,7 @@
|
|
|
3775
3798
|
display: inline-flex;
|
|
3776
3799
|
align-items: center;
|
|
3777
3800
|
color: var(--uui-primary);
|
|
3801
|
+
text-decoration: underline;
|
|
3778
3802
|
}
|
|
3779
3803
|
.NumericInput_typography-inline__i-mmY a:visited {
|
|
3780
3804
|
color: #5214CC;
|
|
@@ -3783,7 +3807,6 @@
|
|
|
3783
3807
|
color: #3F0F9E;
|
|
3784
3808
|
}
|
|
3785
3809
|
.NumericInput_typography-inline__i-mmY a:hover {
|
|
3786
|
-
text-decoration: underline;
|
|
3787
3810
|
color: var(--uui-primary-dark);
|
|
3788
3811
|
}
|
|
3789
3812
|
.NumericInput_typography-inline__i-mmY code {
|
|
@@ -3962,6 +3985,7 @@
|
|
|
3962
3985
|
display: inline-flex;
|
|
3963
3986
|
align-items: center;
|
|
3964
3987
|
color: var(--uui-primary);
|
|
3988
|
+
text-decoration: underline;
|
|
3965
3989
|
}
|
|
3966
3990
|
.TextArea_typography-inline__Y5s6o a:visited {
|
|
3967
3991
|
color: #5214CC;
|
|
@@ -3970,7 +3994,6 @@
|
|
|
3970
3994
|
color: #3F0F9E;
|
|
3971
3995
|
}
|
|
3972
3996
|
.TextArea_typography-inline__Y5s6o a:hover {
|
|
3973
|
-
text-decoration: underline;
|
|
3974
3997
|
color: var(--uui-primary-dark);
|
|
3975
3998
|
}
|
|
3976
3999
|
.TextArea_typography-inline__Y5s6o code {
|
|
@@ -4004,7 +4027,7 @@
|
|
|
4004
4027
|
fill: var(--uui-text-area-icon);
|
|
4005
4028
|
border-style: solid;
|
|
4006
4029
|
border-radius: var(--uui-text-area-border-radius);
|
|
4007
|
-
font-family: var(--font
|
|
4030
|
+
font-family: var(--uui-text-area-font);
|
|
4008
4031
|
box-sizing: border-box;
|
|
4009
4032
|
padding-right: 18px;
|
|
4010
4033
|
padding-left: 12px;
|
|
@@ -4106,7 +4129,7 @@
|
|
|
4106
4129
|
line-height: 18px;
|
|
4107
4130
|
font-size: 12px;
|
|
4108
4131
|
color: var(--uui-text-area-icon);
|
|
4109
|
-
font-family: var(--font
|
|
4132
|
+
font-family: var(--uui-text-area-counter-font);
|
|
4110
4133
|
}
|
|
4111
4134
|
.TextArea_root__rb0Et.TextArea_size-24__-1cgl {
|
|
4112
4135
|
min-width: 24px;
|
|
@@ -4250,6 +4273,7 @@
|
|
|
4250
4273
|
display: inline-flex;
|
|
4251
4274
|
align-items: center;
|
|
4252
4275
|
color: var(--uui-primary);
|
|
4276
|
+
text-decoration: underline;
|
|
4253
4277
|
}
|
|
4254
4278
|
.DatePicker_typography-inline__uM5kg a:visited {
|
|
4255
4279
|
color: #5214CC;
|
|
@@ -4258,7 +4282,6 @@
|
|
|
4258
4282
|
color: #3F0F9E;
|
|
4259
4283
|
}
|
|
4260
4284
|
.DatePicker_typography-inline__uM5kg a:hover {
|
|
4261
|
-
text-decoration: underline;
|
|
4262
4285
|
color: var(--uui-primary-dark);
|
|
4263
4286
|
}
|
|
4264
4287
|
.DatePicker_typography-inline__uM5kg code {
|
|
@@ -4301,7 +4324,7 @@
|
|
|
4301
4324
|
padding: 0 18px 12px;
|
|
4302
4325
|
}
|
|
4303
4326
|
.DatePicker_root__kqFyh .uui-datepickerheader-nav-title {
|
|
4304
|
-
font-family: var(--font
|
|
4327
|
+
font-family: var(--uui-dtp_header-font);
|
|
4305
4328
|
color: var(--uui-dtp-text-selected);
|
|
4306
4329
|
font-size: 14px;
|
|
4307
4330
|
padding: 3px 10px;
|
|
@@ -4333,7 +4356,7 @@
|
|
|
4333
4356
|
transform: rotate(90deg);
|
|
4334
4357
|
}
|
|
4335
4358
|
.DatePicker_root__kqFyh .uui-monthselection-content, .DatePicker_root__kqFyh .uui-yearselection-content {
|
|
4336
|
-
font-family: var(--font
|
|
4359
|
+
font-family: var(--uui-dtp_body-content-font);
|
|
4337
4360
|
}
|
|
4338
4361
|
.DatePicker_root__kqFyh .uui-monthselection-month-container {
|
|
4339
4362
|
margin: 0 0 12px;
|
|
@@ -4485,6 +4508,7 @@
|
|
|
4485
4508
|
display: inline-flex;
|
|
4486
4509
|
align-items: center;
|
|
4487
4510
|
color: var(--uui-primary);
|
|
4511
|
+
text-decoration: underline;
|
|
4488
4512
|
}
|
|
4489
4513
|
.Calendar_typography-inline__NGFRU a:visited {
|
|
4490
4514
|
color: #5214CC;
|
|
@@ -4493,7 +4517,6 @@
|
|
|
4493
4517
|
color: #3F0F9E;
|
|
4494
4518
|
}
|
|
4495
4519
|
.Calendar_typography-inline__NGFRU a:hover {
|
|
4496
|
-
text-decoration: underline;
|
|
4497
4520
|
color: var(--uui-primary-dark);
|
|
4498
4521
|
}
|
|
4499
4522
|
.Calendar_typography-inline__NGFRU code {
|
|
@@ -4523,10 +4546,10 @@
|
|
|
4523
4546
|
}
|
|
4524
4547
|
|
|
4525
4548
|
.Calendar_root__Vh71D .uui-calendar-content {
|
|
4526
|
-
font-family: var(--font
|
|
4549
|
+
font-family: var(--uui-calendar-content-font);
|
|
4527
4550
|
}
|
|
4528
4551
|
.Calendar_root__Vh71D .uui-calendar-weekday {
|
|
4529
|
-
font-family: var(--font
|
|
4552
|
+
font-family: var(--uui-calendar-weekday-font);
|
|
4530
4553
|
color: var(--uui-calendar-weekends-weekdates);
|
|
4531
4554
|
width: 34px;
|
|
4532
4555
|
font-size: 12px;
|
|
@@ -4578,7 +4601,7 @@
|
|
|
4578
4601
|
}
|
|
4579
4602
|
.Calendar_root__Vh71D .uui-calendar-current-day.uui-calendar-day-wrapper {
|
|
4580
4603
|
color: var(--uui-calendar-start-end-selected);
|
|
4581
|
-
font-family: var(--font
|
|
4604
|
+
font-family: var(--uui-calendar-selected_day-font);
|
|
4582
4605
|
}
|
|
4583
4606
|
.Calendar_root__Vh71D .uui-calendar-current-day.uui-calendar-day-wrapper .uui-calendar-day::after {
|
|
4584
4607
|
position: absolute;
|
|
@@ -4610,65 +4633,65 @@
|
|
|
4610
4633
|
cursor: default;
|
|
4611
4634
|
background-color: transparent;
|
|
4612
4635
|
}
|
|
4613
|
-
.
|
|
4636
|
+
.RangeDatePickerBody_typography-header__yuzZD .hero-header, .RangeDatePickerBody_typography-header__yuzZD h1, .RangeDatePickerBody_typography-header__yuzZD h2, .RangeDatePickerBody_typography-header__yuzZD h3, .RangeDatePickerBody_typography-header__yuzZD h4, .RangeDatePickerBody_typography-header__yuzZD h5, .RangeDatePickerBody_typography-header__yuzZD h6 {
|
|
4614
4637
|
margin: 0;
|
|
4615
4638
|
}
|
|
4616
|
-
.
|
|
4639
|
+
.RangeDatePickerBody_typography-header__yuzZD .hero-header {
|
|
4617
4640
|
font-family: var(--font-promo);
|
|
4618
4641
|
margin: 30px 0;
|
|
4619
4642
|
font-size: 66px;
|
|
4620
4643
|
line-height: 72px;
|
|
4621
4644
|
}
|
|
4622
|
-
.
|
|
4645
|
+
.RangeDatePickerBody_typography-header__yuzZD .hero-header, .RangeDatePickerBody_typography-header__yuzZD .promo-header {
|
|
4623
4646
|
color: var(--uui-text-brand);
|
|
4624
4647
|
text-align: center;
|
|
4625
4648
|
}
|
|
4626
|
-
.
|
|
4649
|
+
.RangeDatePickerBody_typography-header__yuzZD .promo-header, .RangeDatePickerBody_typography-header__yuzZD h1, .RangeDatePickerBody_typography-header__yuzZD h2, .RangeDatePickerBody_typography-header__yuzZD h3 {
|
|
4627
4650
|
font-family: var(--font-primary);
|
|
4628
4651
|
}
|
|
4629
|
-
.
|
|
4652
|
+
.RangeDatePickerBody_typography-header__yuzZD .promo-header {
|
|
4630
4653
|
text-transform: uppercase;
|
|
4631
4654
|
}
|
|
4632
|
-
.
|
|
4655
|
+
.RangeDatePickerBody_typography-header__yuzZD h4, .RangeDatePickerBody_typography-header__yuzZD h5, .RangeDatePickerBody_typography-header__yuzZD h6 {
|
|
4633
4656
|
font-family: var(--font-semibold);
|
|
4634
4657
|
}
|
|
4635
|
-
.
|
|
4658
|
+
.RangeDatePickerBody_typography-header__yuzZD h1, .RangeDatePickerBody_typography-header__yuzZD h2, .RangeDatePickerBody_typography-header__yuzZD h3, .RangeDatePickerBody_typography-header__yuzZD h4, .RangeDatePickerBody_typography-header__yuzZD h5, .RangeDatePickerBody_typography-header__yuzZD h6 {
|
|
4636
4659
|
margin-bottom: 0.5em;
|
|
4637
4660
|
margin-top: 1.2em;
|
|
4638
4661
|
line-height: 1.35em;
|
|
4639
4662
|
}
|
|
4640
|
-
.
|
|
4663
|
+
.RangeDatePickerBody_typography-header__yuzZD h1 {
|
|
4641
4664
|
font-size: 36px;
|
|
4642
4665
|
}
|
|
4643
|
-
.
|
|
4666
|
+
.RangeDatePickerBody_typography-header__yuzZD h2 {
|
|
4644
4667
|
font-size: 30px;
|
|
4645
4668
|
letter-spacing: 0.1px;
|
|
4646
4669
|
}
|
|
4647
|
-
.
|
|
4670
|
+
.RangeDatePickerBody_typography-header__yuzZD h2.promo-header {
|
|
4648
4671
|
letter-spacing: 2px;
|
|
4649
4672
|
}
|
|
4650
|
-
.
|
|
4673
|
+
.RangeDatePickerBody_typography-header__yuzZD h3 {
|
|
4651
4674
|
font-size: 24px;
|
|
4652
4675
|
}
|
|
4653
|
-
.
|
|
4676
|
+
.RangeDatePickerBody_typography-header__yuzZD h4 {
|
|
4654
4677
|
font-size: 18px;
|
|
4655
4678
|
letter-spacing: 0.1px;
|
|
4656
4679
|
}
|
|
4657
|
-
.
|
|
4680
|
+
.RangeDatePickerBody_typography-header__yuzZD h5 {
|
|
4658
4681
|
font-size: 16px;
|
|
4659
4682
|
}
|
|
4660
|
-
.
|
|
4683
|
+
.RangeDatePickerBody_typography-header__yuzZD h6 {
|
|
4661
4684
|
font-size: 14px;
|
|
4662
4685
|
}
|
|
4663
4686
|
|
|
4664
|
-
.
|
|
4687
|
+
.RangeDatePickerBody_typography-block__lYgPa ol, .RangeDatePickerBody_typography-block__lYgPa ul {
|
|
4665
4688
|
padding: 0;
|
|
4666
4689
|
}
|
|
4667
|
-
.
|
|
4690
|
+
.RangeDatePickerBody_typography-block__lYgPa li {
|
|
4668
4691
|
margin-left: 1.25em;
|
|
4669
4692
|
line-height: 1.5;
|
|
4670
4693
|
}
|
|
4671
|
-
.
|
|
4694
|
+
.RangeDatePickerBody_typography-block__lYgPa pre {
|
|
4672
4695
|
padding: 1.25em;
|
|
4673
4696
|
color: var(--gray10);
|
|
4674
4697
|
background-color: var(--uui-secondary-darkest);
|
|
@@ -4676,44 +4699,44 @@
|
|
|
4676
4699
|
white-space: pre-wrap;
|
|
4677
4700
|
word-wrap: normal;
|
|
4678
4701
|
}
|
|
4679
|
-
.
|
|
4702
|
+
.RangeDatePickerBody_typography-block__lYgPa img {
|
|
4680
4703
|
max-width: 100%;
|
|
4681
4704
|
}
|
|
4682
|
-
.
|
|
4705
|
+
.RangeDatePickerBody_typography-block__lYgPa figure {
|
|
4683
4706
|
margin: 0;
|
|
4684
4707
|
}
|
|
4685
|
-
.
|
|
4708
|
+
.RangeDatePickerBody_typography-block__lYgPa figure figcaption {
|
|
4686
4709
|
font-size: 0.9em;
|
|
4687
4710
|
opacity: 0.9;
|
|
4688
4711
|
text-align: center;
|
|
4689
4712
|
}
|
|
4690
|
-
.
|
|
4713
|
+
.RangeDatePickerBody_typography-block__lYgPa p {
|
|
4691
4714
|
margin: 0.5em 0;
|
|
4692
4715
|
line-height: 1.5;
|
|
4693
4716
|
}
|
|
4694
4717
|
|
|
4695
|
-
.
|
|
4718
|
+
.RangeDatePickerBody_typography-inline__E8RNG b, .RangeDatePickerBody_typography-inline__E8RNG strong {
|
|
4696
4719
|
font-family: var(--font-semibold);
|
|
4697
4720
|
}
|
|
4698
|
-
.
|
|
4721
|
+
.RangeDatePickerBody_typography-inline__E8RNG i, .RangeDatePickerBody_typography-inline__E8RNG em {
|
|
4699
4722
|
font-family: var(--font-italic);
|
|
4700
4723
|
}
|
|
4701
|
-
.
|
|
4724
|
+
.RangeDatePickerBody_typography-inline__E8RNG a {
|
|
4702
4725
|
display: inline-flex;
|
|
4703
4726
|
align-items: center;
|
|
4704
4727
|
color: var(--uui-primary);
|
|
4728
|
+
text-decoration: underline;
|
|
4705
4729
|
}
|
|
4706
|
-
.
|
|
4730
|
+
.RangeDatePickerBody_typography-inline__E8RNG a:visited {
|
|
4707
4731
|
color: #5214CC;
|
|
4708
4732
|
}
|
|
4709
|
-
.
|
|
4733
|
+
.RangeDatePickerBody_typography-inline__E8RNG a:visited:hover {
|
|
4710
4734
|
color: #3F0F9E;
|
|
4711
4735
|
}
|
|
4712
|
-
.
|
|
4713
|
-
text-decoration: underline;
|
|
4736
|
+
.RangeDatePickerBody_typography-inline__E8RNG a:hover {
|
|
4714
4737
|
color: var(--uui-primary-dark);
|
|
4715
4738
|
}
|
|
4716
|
-
.
|
|
4739
|
+
.RangeDatePickerBody_typography-inline__E8RNG code {
|
|
4717
4740
|
padding: 0.125em 0.25em;
|
|
4718
4741
|
color: var(--uui-text-primary);
|
|
4719
4742
|
background-color: var(--uui-secondary-light);
|
|
@@ -4722,239 +4745,142 @@
|
|
|
4722
4745
|
word-wrap: normal;
|
|
4723
4746
|
}
|
|
4724
4747
|
|
|
4725
|
-
.
|
|
4748
|
+
.RangeDatePickerBody_typography-16__9uEL3 {
|
|
4726
4749
|
font-size: 16px;
|
|
4727
4750
|
}
|
|
4728
4751
|
|
|
4729
|
-
.
|
|
4752
|
+
.RangeDatePickerBody_typography-14__TEa5n {
|
|
4730
4753
|
font-size: 14px;
|
|
4731
4754
|
}
|
|
4732
4755
|
|
|
4733
|
-
.
|
|
4756
|
+
.RangeDatePickerBody_typography-12__S-NBX {
|
|
4734
4757
|
font-size: 12px;
|
|
4735
4758
|
}
|
|
4736
4759
|
|
|
4737
|
-
.
|
|
4760
|
+
.RangeDatePickerBody_typography-promo__4VksA {
|
|
4738
4761
|
font-family: var(--font-regular);
|
|
4739
4762
|
color: var(--uui-text-primary);
|
|
4740
4763
|
}
|
|
4741
4764
|
|
|
4742
|
-
.
|
|
4743
|
-
align-items: normal;
|
|
4744
|
-
}
|
|
4745
|
-
|
|
4746
|
-
.RangeDatePicker_container__Kz2FS {
|
|
4747
|
-
display: flex;
|
|
4748
|
-
padding: 9px 30px;
|
|
4749
|
-
justify-content: space-between;
|
|
4750
|
-
border-top: 1px solid var(--uui-control-border);
|
|
4751
|
-
align-items: center;
|
|
4752
|
-
background-color: var(--uui-rdtp-bg);
|
|
4765
|
+
.RangeDatePickerBody_root__CCVfb .uui-calendar-days > div:last-child .uui-calendar-day-cell:last-child > .uui-range-datepicker-in-range:not(.uui-range-datepicker-first-day-in-range-wrapper):not(.uui-range-datepicker-last-day-in-range-wrapper) {
|
|
4753
4766
|
position: relative;
|
|
4754
4767
|
}
|
|
4755
|
-
|
|
4756
|
-
|
|
4757
|
-
display: flex;
|
|
4758
|
-
justify-content: flex-end;
|
|
4768
|
+
.RangeDatePickerBody_root__CCVfb .uui-calendar-days > div:last-child .uui-calendar-day-cell:last-child > .uui-range-datepicker-in-range:not(.uui-range-datepicker-first-day-in-range-wrapper):not(.uui-range-datepicker-last-day-in-range-wrapper) .uui-calendar-day {
|
|
4769
|
+
top: -3px;
|
|
4759
4770
|
}
|
|
4760
|
-
|
|
4761
|
-
|
|
4762
|
-
|
|
4763
|
-
|
|
4764
|
-
|
|
4771
|
+
.RangeDatePickerBody_root__CCVfb .uui-calendar-days > div:last-child .uui-calendar-day-cell:last-child > .uui-range-datepicker-in-range:not(.uui-range-datepicker-first-day-in-range-wrapper):not(.uui-range-datepicker-last-day-in-range-wrapper):after {
|
|
4772
|
+
background: linear-gradient(320deg, #ffffff 3px, transparent 0), linear-gradient(-135deg, #ffffff 3px, transparent 0);
|
|
4773
|
+
background-position: left-bottom;
|
|
4774
|
+
background-repeat: repeat-y;
|
|
4775
|
+
background-size: 6px 6px;
|
|
4776
|
+
content: " ";
|
|
4777
|
+
display: block;
|
|
4778
|
+
position: absolute;
|
|
4779
|
+
bottom: 0;
|
|
4780
|
+
right: 0;
|
|
4781
|
+
width: 6px;
|
|
4782
|
+
height: 100%;
|
|
4765
4783
|
}
|
|
4766
|
-
|
|
4767
|
-
.
|
|
4768
|
-
|
|
4769
|
-
padding: 0 5px;
|
|
4784
|
+
.RangeDatePickerBody_root__CCVfb .uui-calendar-days > div:first-child .uui-calendar-day-cell:empty + .uui-calendar-day-cell .uui-range-datepicker-in-range:not(.uui-range-datepicker-first-day-in-range-wrapper):not(.uui-range-datepicker-last-day-in-range-wrapper),
|
|
4785
|
+
.RangeDatePickerBody_root__CCVfb .uui-calendar-days > div:first-child .uui-calendar-day-cell:first-child .uui-range-datepicker-in-range:not(.uui-range-datepicker-first-day-in-range-wrapper):not(.uui-range-datepicker-last-day-in-range-wrapper) {
|
|
4786
|
+
position: relative;
|
|
4770
4787
|
}
|
|
4771
|
-
.
|
|
4772
|
-
|
|
4788
|
+
.RangeDatePickerBody_root__CCVfb .uui-calendar-days > div:first-child .uui-calendar-day-cell:empty + .uui-calendar-day-cell .uui-range-datepicker-in-range:not(.uui-range-datepicker-first-day-in-range-wrapper):not(.uui-range-datepicker-last-day-in-range-wrapper) .uui-calendar-day,
|
|
4789
|
+
.RangeDatePickerBody_root__CCVfb .uui-calendar-days > div:first-child .uui-calendar-day-cell:first-child .uui-range-datepicker-in-range:not(.uui-range-datepicker-first-day-in-range-wrapper):not(.uui-range-datepicker-last-day-in-range-wrapper) .uui-calendar-day {
|
|
4790
|
+
top: -3px;
|
|
4773
4791
|
}
|
|
4774
|
-
.
|
|
4775
|
-
|
|
4776
|
-
|
|
4777
|
-
|
|
4792
|
+
.RangeDatePickerBody_root__CCVfb .uui-calendar-days > div:first-child .uui-calendar-day-cell:empty + .uui-calendar-day-cell .uui-range-datepicker-in-range:not(.uui-range-datepicker-first-day-in-range-wrapper):not(.uui-range-datepicker-last-day-in-range-wrapper):after,
|
|
4793
|
+
.RangeDatePickerBody_root__CCVfb .uui-calendar-days > div:first-child .uui-calendar-day-cell:first-child .uui-range-datepicker-in-range:not(.uui-range-datepicker-first-day-in-range-wrapper):not(.uui-range-datepicker-last-day-in-range-wrapper):after {
|
|
4794
|
+
background: linear-gradient(45deg, #ffffff 3px, transparent 0), linear-gradient(135deg, #ffffff 3px, transparent 0);
|
|
4795
|
+
background-position: left-bottom;
|
|
4796
|
+
background-repeat: repeat-y;
|
|
4797
|
+
background-size: 6px 6px;
|
|
4798
|
+
content: " ";
|
|
4799
|
+
display: block;
|
|
4800
|
+
position: absolute;
|
|
4801
|
+
bottom: 0;
|
|
4802
|
+
left: 0;
|
|
4803
|
+
width: 6px;
|
|
4804
|
+
height: 100%;
|
|
4778
4805
|
}
|
|
4779
|
-
.
|
|
4780
|
-
|
|
4781
|
-
|
|
4806
|
+
.RangeDatePickerBody_root__CCVfb .uui-range-datepicker-in-range.uui-calendar-day-wrapper {
|
|
4807
|
+
background-color: var(--uui-rdtp-bg-selected-date);
|
|
4808
|
+
border-radius: 0;
|
|
4809
|
+
width: 40px;
|
|
4782
4810
|
}
|
|
4783
|
-
.
|
|
4784
|
-
|
|
4785
|
-
border-
|
|
4811
|
+
.RangeDatePickerBody_root__CCVfb .uui-range-datepicker-first-day-in-range-wrapper.uui-calendar-selected-day {
|
|
4812
|
+
border-top-left-radius: 50%;
|
|
4813
|
+
border-bottom-left-radius: 50%;
|
|
4786
4814
|
}
|
|
4787
|
-
.
|
|
4788
|
-
|
|
4789
|
-
|
|
4790
|
-
|
|
4791
|
-
}
|
|
4792
|
-
.RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-30__7OPWW .uui-caption, .RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-30__7OPWW .uui-input {
|
|
4793
|
-
padding-left: 6px;
|
|
4794
|
-
padding-right: 6px;
|
|
4795
|
-
}
|
|
4796
|
-
.RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-30__7OPWW.uui-button-box, .RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-30__7OPWW.uui-input-box {
|
|
4797
|
-
min-height: 28px;
|
|
4798
|
-
border-width: 0;
|
|
4799
|
-
}
|
|
4800
|
-
.RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-36__urHhS {
|
|
4801
|
-
min-width: 34px;
|
|
4802
|
-
padding-left: 5px;
|
|
4803
|
-
padding-right: 5px;
|
|
4804
|
-
}
|
|
4805
|
-
.RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-36__urHhS .uui-caption, .RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-36__urHhS .uui-input {
|
|
4806
|
-
padding-left: 6px;
|
|
4807
|
-
padding-right: 6px;
|
|
4808
|
-
}
|
|
4809
|
-
.RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-36__urHhS.uui-button-box, .RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-36__urHhS.uui-input-box {
|
|
4810
|
-
min-height: 34px;
|
|
4811
|
-
border-width: 0;
|
|
4812
|
-
}
|
|
4813
|
-
.RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-42__VMCut {
|
|
4814
|
-
min-width: 40px;
|
|
4815
|
-
padding-left: 5px;
|
|
4816
|
-
padding-right: 5px;
|
|
4817
|
-
}
|
|
4818
|
-
.RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-42__VMCut .uui-caption, .RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-42__VMCut .uui-input {
|
|
4819
|
-
padding-left: 6px;
|
|
4820
|
-
padding-right: 6px;
|
|
4821
|
-
}
|
|
4822
|
-
.RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-42__VMCut.uui-button-box, .RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-42__VMCut.uui-input-box {
|
|
4823
|
-
min-height: 40px;
|
|
4824
|
-
border-width: 0;
|
|
4825
|
-
}
|
|
4826
|
-
.RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-48__YHcLe {
|
|
4827
|
-
min-width: 46px;
|
|
4828
|
-
padding-left: 5px;
|
|
4829
|
-
padding-right: 5px;
|
|
4830
|
-
}
|
|
4831
|
-
.RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-48__YHcLe .uui-caption, .RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-48__YHcLe .uui-input {
|
|
4832
|
-
padding-left: 6px;
|
|
4833
|
-
padding-right: 6px;
|
|
4834
|
-
}
|
|
4835
|
-
.RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-48__YHcLe.uui-button-box, .RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-48__YHcLe.uui-input-box {
|
|
4836
|
-
min-height: 46px;
|
|
4837
|
-
border-width: 0;
|
|
4838
|
-
}
|
|
4839
|
-
|
|
4840
|
-
.RangeDatePicker_date-input-group__CGdCd {
|
|
4841
|
-
display: flex;
|
|
4842
|
-
min-width: 0;
|
|
4843
|
-
background-color: var(--uui-rdtp-bg);
|
|
4844
|
-
border: 1px solid var(--uui-control-border);
|
|
4815
|
+
.RangeDatePickerBody_root__CCVfb .uui-range-datepicker-last-day-in-range-wrapper.uui-calendar-selected-day {
|
|
4816
|
+
border-top-right-radius: 50%;
|
|
4817
|
+
border-bottom-right-radius: 50%;
|
|
4818
|
+
margin-right: 10px;
|
|
4845
4819
|
}
|
|
4846
|
-
.
|
|
4820
|
+
.RangeDatePickerBody_root__CCVfb .uui-range-datepicker-separator {
|
|
4847
4821
|
display: flex;
|
|
4848
|
-
flex
|
|
4849
|
-
|
|
4850
|
-
width: 1px;
|
|
4851
|
-
}
|
|
4852
|
-
.RangeDatePicker_date-input-group__CGdCd:hover {
|
|
4853
|
-
border-color: var(--uui-control-textinput-border-hover);
|
|
4854
|
-
}
|
|
4855
|
-
.RangeDatePicker_date-input-group__CGdCd:hover .RangeDatePicker_separator__qmCk8 {
|
|
4856
|
-
background: var(--uui-control-textinput-border-hover);
|
|
4857
|
-
}
|
|
4858
|
-
.RangeDatePicker_date-input-group__CGdCd:hover.uui-disabled, .RangeDatePicker_date-input-group__CGdCd:hover.uui-readonly {
|
|
4859
|
-
border-color: var(--uui-control-border);
|
|
4860
|
-
}
|
|
4861
|
-
.RangeDatePicker_date-input-group__CGdCd:hover.uui-disabled .RangeDatePicker_separator__qmCk8, .RangeDatePicker_date-input-group__CGdCd:hover.uui-readonly .RangeDatePicker_separator__qmCk8 {
|
|
4862
|
-
background: var(--uui-control-border);
|
|
4863
|
-
}
|
|
4864
|
-
.RangeDatePicker_date-input-group__CGdCd.uui-focus {
|
|
4865
|
-
border-color: var(--uui-control-border);
|
|
4866
|
-
}
|
|
4867
|
-
.RangeDatePicker_date-input-group__CGdCd.uui-focus .RangeDatePicker_separator__qmCk8 {
|
|
4868
|
-
background: var(--uui-control-border-checked);
|
|
4869
|
-
}
|
|
4870
|
-
.RangeDatePicker_date-input-group__CGdCd.uui-focus .RangeDatePicker_date-input__2aXJj:hover {
|
|
4871
|
-
outline: 1px solid var(--uui-control-textinput-border-hover);
|
|
4872
|
-
}
|
|
4873
|
-
.RangeDatePicker_date-input-group__CGdCd.uui-focus .RangeDatePicker_date-input__2aXJj.uui-focus {
|
|
4874
|
-
outline: 1px solid var(--uui-control-border-checked);
|
|
4875
|
-
}
|
|
4876
|
-
.RangeDatePicker_date-input-group__CGdCd.uui-readonly.RangeDatePicker_mode-form__o0e0M {
|
|
4877
|
-
background-color: var(--uui-control-bg-readonly);
|
|
4878
|
-
border-color: var(--uui-control-border-readonly);
|
|
4879
|
-
pointer-events: none;
|
|
4880
|
-
}
|
|
4881
|
-
.RangeDatePicker_date-input-group__CGdCd.uui-readonly.RangeDatePicker_mode-form__o0e0M:hover {
|
|
4882
|
-
border-color: var(--uui-control-border-readonly);
|
|
4883
|
-
}
|
|
4884
|
-
.RangeDatePicker_date-input-group__CGdCd.uui-readonly.RangeDatePicker_mode-cell__neiVz {
|
|
4885
|
-
background-color: transparent;
|
|
4886
|
-
border-color: transparent;
|
|
4887
|
-
pointer-events: none;
|
|
4888
|
-
}
|
|
4889
|
-
.RangeDatePicker_date-input-group__CGdCd.uui-readonly.RangeDatePicker_mode-cell__neiVz:hover {
|
|
4890
|
-
background-color: transparent;
|
|
4891
|
-
border-color: transparent;
|
|
4892
|
-
}
|
|
4893
|
-
.RangeDatePicker_date-input-group__CGdCd.uui-readonly .RangeDatePicker_date-input__2aXJj.uui-focus {
|
|
4894
|
-
box-shadow: none;
|
|
4895
|
-
}
|
|
4896
|
-
.RangeDatePicker_date-input-group__CGdCd.uui-invalid {
|
|
4897
|
-
border-color: var(--uui-text-input-border-error);
|
|
4822
|
+
flex: 0 0 auto;
|
|
4823
|
+
border-left: 1px solid var(--uui-control-border);
|
|
4898
4824
|
}
|
|
4899
|
-
.
|
|
4825
|
+
.CalendarPresets_typography-header__D2UZW .hero-header, .CalendarPresets_typography-header__D2UZW h1, .CalendarPresets_typography-header__D2UZW h2, .CalendarPresets_typography-header__D2UZW h3, .CalendarPresets_typography-header__D2UZW h4, .CalendarPresets_typography-header__D2UZW h5, .CalendarPresets_typography-header__D2UZW h6 {
|
|
4900
4826
|
margin: 0;
|
|
4901
4827
|
}
|
|
4902
|
-
.
|
|
4828
|
+
.CalendarPresets_typography-header__D2UZW .hero-header {
|
|
4903
4829
|
font-family: var(--font-promo);
|
|
4904
4830
|
margin: 30px 0;
|
|
4905
4831
|
font-size: 66px;
|
|
4906
4832
|
line-height: 72px;
|
|
4907
4833
|
}
|
|
4908
|
-
.
|
|
4834
|
+
.CalendarPresets_typography-header__D2UZW .hero-header, .CalendarPresets_typography-header__D2UZW .promo-header {
|
|
4909
4835
|
color: var(--uui-text-brand);
|
|
4910
4836
|
text-align: center;
|
|
4911
4837
|
}
|
|
4912
|
-
.
|
|
4838
|
+
.CalendarPresets_typography-header__D2UZW .promo-header, .CalendarPresets_typography-header__D2UZW h1, .CalendarPresets_typography-header__D2UZW h2, .CalendarPresets_typography-header__D2UZW h3 {
|
|
4913
4839
|
font-family: var(--font-primary);
|
|
4914
4840
|
}
|
|
4915
|
-
.
|
|
4841
|
+
.CalendarPresets_typography-header__D2UZW .promo-header {
|
|
4916
4842
|
text-transform: uppercase;
|
|
4917
4843
|
}
|
|
4918
|
-
.
|
|
4844
|
+
.CalendarPresets_typography-header__D2UZW h4, .CalendarPresets_typography-header__D2UZW h5, .CalendarPresets_typography-header__D2UZW h6 {
|
|
4919
4845
|
font-family: var(--font-semibold);
|
|
4920
4846
|
}
|
|
4921
|
-
.
|
|
4847
|
+
.CalendarPresets_typography-header__D2UZW h1, .CalendarPresets_typography-header__D2UZW h2, .CalendarPresets_typography-header__D2UZW h3, .CalendarPresets_typography-header__D2UZW h4, .CalendarPresets_typography-header__D2UZW h5, .CalendarPresets_typography-header__D2UZW h6 {
|
|
4922
4848
|
margin-bottom: 0.5em;
|
|
4923
4849
|
margin-top: 1.2em;
|
|
4924
4850
|
line-height: 1.35em;
|
|
4925
4851
|
}
|
|
4926
|
-
.
|
|
4852
|
+
.CalendarPresets_typography-header__D2UZW h1 {
|
|
4927
4853
|
font-size: 36px;
|
|
4928
4854
|
}
|
|
4929
|
-
.
|
|
4855
|
+
.CalendarPresets_typography-header__D2UZW h2 {
|
|
4930
4856
|
font-size: 30px;
|
|
4931
4857
|
letter-spacing: 0.1px;
|
|
4932
4858
|
}
|
|
4933
|
-
.
|
|
4859
|
+
.CalendarPresets_typography-header__D2UZW h2.promo-header {
|
|
4934
4860
|
letter-spacing: 2px;
|
|
4935
4861
|
}
|
|
4936
|
-
.
|
|
4862
|
+
.CalendarPresets_typography-header__D2UZW h3 {
|
|
4937
4863
|
font-size: 24px;
|
|
4938
4864
|
}
|
|
4939
|
-
.
|
|
4865
|
+
.CalendarPresets_typography-header__D2UZW h4 {
|
|
4940
4866
|
font-size: 18px;
|
|
4941
4867
|
letter-spacing: 0.1px;
|
|
4942
4868
|
}
|
|
4943
|
-
.
|
|
4869
|
+
.CalendarPresets_typography-header__D2UZW h5 {
|
|
4944
4870
|
font-size: 16px;
|
|
4945
4871
|
}
|
|
4946
|
-
.
|
|
4872
|
+
.CalendarPresets_typography-header__D2UZW h6 {
|
|
4947
4873
|
font-size: 14px;
|
|
4948
4874
|
}
|
|
4949
4875
|
|
|
4950
|
-
.
|
|
4876
|
+
.CalendarPresets_typography-block__68m9o ol, .CalendarPresets_typography-block__68m9o ul {
|
|
4951
4877
|
padding: 0;
|
|
4952
4878
|
}
|
|
4953
|
-
.
|
|
4879
|
+
.CalendarPresets_typography-block__68m9o li {
|
|
4954
4880
|
margin-left: 1.25em;
|
|
4955
4881
|
line-height: 1.5;
|
|
4956
4882
|
}
|
|
4957
|
-
.
|
|
4883
|
+
.CalendarPresets_typography-block__68m9o pre {
|
|
4958
4884
|
padding: 1.25em;
|
|
4959
4885
|
color: var(--gray10);
|
|
4960
4886
|
background-color: var(--uui-secondary-darkest);
|
|
@@ -4962,44 +4888,44 @@
|
|
|
4962
4888
|
white-space: pre-wrap;
|
|
4963
4889
|
word-wrap: normal;
|
|
4964
4890
|
}
|
|
4965
|
-
.
|
|
4891
|
+
.CalendarPresets_typography-block__68m9o img {
|
|
4966
4892
|
max-width: 100%;
|
|
4967
4893
|
}
|
|
4968
|
-
.
|
|
4894
|
+
.CalendarPresets_typography-block__68m9o figure {
|
|
4969
4895
|
margin: 0;
|
|
4970
4896
|
}
|
|
4971
|
-
.
|
|
4897
|
+
.CalendarPresets_typography-block__68m9o figure figcaption {
|
|
4972
4898
|
font-size: 0.9em;
|
|
4973
4899
|
opacity: 0.9;
|
|
4974
4900
|
text-align: center;
|
|
4975
4901
|
}
|
|
4976
|
-
.
|
|
4902
|
+
.CalendarPresets_typography-block__68m9o p {
|
|
4977
4903
|
margin: 0.5em 0;
|
|
4978
4904
|
line-height: 1.5;
|
|
4979
4905
|
}
|
|
4980
4906
|
|
|
4981
|
-
.
|
|
4907
|
+
.CalendarPresets_typography-inline__5mzPE b, .CalendarPresets_typography-inline__5mzPE strong {
|
|
4982
4908
|
font-family: var(--font-semibold);
|
|
4983
4909
|
}
|
|
4984
|
-
.
|
|
4910
|
+
.CalendarPresets_typography-inline__5mzPE i, .CalendarPresets_typography-inline__5mzPE em {
|
|
4985
4911
|
font-family: var(--font-italic);
|
|
4986
4912
|
}
|
|
4987
|
-
.
|
|
4913
|
+
.CalendarPresets_typography-inline__5mzPE a {
|
|
4988
4914
|
display: inline-flex;
|
|
4989
4915
|
align-items: center;
|
|
4990
4916
|
color: var(--uui-primary);
|
|
4917
|
+
text-decoration: underline;
|
|
4991
4918
|
}
|
|
4992
|
-
.
|
|
4919
|
+
.CalendarPresets_typography-inline__5mzPE a:visited {
|
|
4993
4920
|
color: #5214CC;
|
|
4994
4921
|
}
|
|
4995
|
-
.
|
|
4922
|
+
.CalendarPresets_typography-inline__5mzPE a:visited:hover {
|
|
4996
4923
|
color: #3F0F9E;
|
|
4997
4924
|
}
|
|
4998
|
-
.
|
|
4999
|
-
text-decoration: underline;
|
|
4925
|
+
.CalendarPresets_typography-inline__5mzPE a:hover {
|
|
5000
4926
|
color: var(--uui-primary-dark);
|
|
5001
4927
|
}
|
|
5002
|
-
.
|
|
4928
|
+
.CalendarPresets_typography-inline__5mzPE code {
|
|
5003
4929
|
padding: 0.125em 0.25em;
|
|
5004
4930
|
color: var(--uui-text-primary);
|
|
5005
4931
|
background-color: var(--uui-secondary-light);
|
|
@@ -5008,142 +4934,103 @@
|
|
|
5008
4934
|
word-wrap: normal;
|
|
5009
4935
|
}
|
|
5010
4936
|
|
|
5011
|
-
.
|
|
4937
|
+
.CalendarPresets_typography-16__-TrF- {
|
|
5012
4938
|
font-size: 16px;
|
|
5013
4939
|
}
|
|
5014
4940
|
|
|
5015
|
-
.
|
|
4941
|
+
.CalendarPresets_typography-14__-onzo {
|
|
5016
4942
|
font-size: 14px;
|
|
5017
4943
|
}
|
|
5018
4944
|
|
|
5019
|
-
.
|
|
4945
|
+
.CalendarPresets_typography-12__zE74w {
|
|
5020
4946
|
font-size: 12px;
|
|
5021
4947
|
}
|
|
5022
4948
|
|
|
5023
|
-
.
|
|
4949
|
+
.CalendarPresets_typography-promo__Zp05u {
|
|
5024
4950
|
font-family: var(--font-regular);
|
|
5025
4951
|
color: var(--uui-text-primary);
|
|
5026
4952
|
}
|
|
5027
4953
|
|
|
5028
|
-
.
|
|
5029
|
-
|
|
5030
|
-
|
|
5031
|
-
.RangeDatePickerBody_root__CCVfb .uui-calendar-days > div:last-child .uui-calendar-day-cell:last-child > .uui-range-datepicker-in-range:not(.uui-range-datepicker-first-day-in-range-wrapper):not(.uui-range-datepicker-last-day-in-range-wrapper) .uui-calendar-day {
|
|
5032
|
-
top: -3px;
|
|
5033
|
-
}
|
|
5034
|
-
.RangeDatePickerBody_root__CCVfb .uui-calendar-days > div:last-child .uui-calendar-day-cell:last-child > .uui-range-datepicker-in-range:not(.uui-range-datepicker-first-day-in-range-wrapper):not(.uui-range-datepicker-last-day-in-range-wrapper):after {
|
|
5035
|
-
background: linear-gradient(320deg, #ffffff 3px, transparent 0), linear-gradient(-135deg, #ffffff 3px, transparent 0);
|
|
5036
|
-
background-position: left-bottom;
|
|
5037
|
-
background-repeat: repeat-y;
|
|
5038
|
-
background-size: 6px 6px;
|
|
5039
|
-
content: " ";
|
|
5040
|
-
display: block;
|
|
5041
|
-
position: absolute;
|
|
5042
|
-
bottom: 0;
|
|
5043
|
-
right: 0;
|
|
5044
|
-
width: 6px;
|
|
5045
|
-
height: 100%;
|
|
5046
|
-
}
|
|
5047
|
-
.RangeDatePickerBody_root__CCVfb .uui-calendar-days > div:first-child .uui-calendar-day-cell:empty + .uui-calendar-day-cell .uui-range-datepicker-in-range:not(.uui-range-datepicker-first-day-in-range-wrapper):not(.uui-range-datepicker-last-day-in-range-wrapper),
|
|
5048
|
-
.RangeDatePickerBody_root__CCVfb .uui-calendar-days > div:first-child .uui-calendar-day-cell:first-child .uui-range-datepicker-in-range:not(.uui-range-datepicker-first-day-in-range-wrapper):not(.uui-range-datepicker-last-day-in-range-wrapper) {
|
|
5049
|
-
position: relative;
|
|
5050
|
-
}
|
|
5051
|
-
.RangeDatePickerBody_root__CCVfb .uui-calendar-days > div:first-child .uui-calendar-day-cell:empty + .uui-calendar-day-cell .uui-range-datepicker-in-range:not(.uui-range-datepicker-first-day-in-range-wrapper):not(.uui-range-datepicker-last-day-in-range-wrapper) .uui-calendar-day,
|
|
5052
|
-
.RangeDatePickerBody_root__CCVfb .uui-calendar-days > div:first-child .uui-calendar-day-cell:first-child .uui-range-datepicker-in-range:not(.uui-range-datepicker-first-day-in-range-wrapper):not(.uui-range-datepicker-last-day-in-range-wrapper) .uui-calendar-day {
|
|
5053
|
-
top: -3px;
|
|
5054
|
-
}
|
|
5055
|
-
.RangeDatePickerBody_root__CCVfb .uui-calendar-days > div:first-child .uui-calendar-day-cell:empty + .uui-calendar-day-cell .uui-range-datepicker-in-range:not(.uui-range-datepicker-first-day-in-range-wrapper):not(.uui-range-datepicker-last-day-in-range-wrapper):after,
|
|
5056
|
-
.RangeDatePickerBody_root__CCVfb .uui-calendar-days > div:first-child .uui-calendar-day-cell:first-child .uui-range-datepicker-in-range:not(.uui-range-datepicker-first-day-in-range-wrapper):not(.uui-range-datepicker-last-day-in-range-wrapper):after {
|
|
5057
|
-
background: linear-gradient(45deg, #ffffff 3px, transparent 0), linear-gradient(135deg, #ffffff 3px, transparent 0);
|
|
5058
|
-
background-position: left-bottom;
|
|
5059
|
-
background-repeat: repeat-y;
|
|
5060
|
-
background-size: 6px 6px;
|
|
5061
|
-
content: " ";
|
|
5062
|
-
display: block;
|
|
5063
|
-
position: absolute;
|
|
5064
|
-
bottom: 0;
|
|
5065
|
-
left: 0;
|
|
5066
|
-
width: 6px;
|
|
5067
|
-
height: 100%;
|
|
5068
|
-
}
|
|
5069
|
-
.RangeDatePickerBody_root__CCVfb .uui-range-datepicker-in-range.uui-calendar-day-wrapper {
|
|
5070
|
-
background-color: var(--uui-rdtp-bg-selected-date);
|
|
5071
|
-
border-radius: 0;
|
|
5072
|
-
width: 40px;
|
|
4954
|
+
.CalendarPresets_root__5O668 .uui-presets-container {
|
|
4955
|
+
padding: 24px;
|
|
4956
|
+
font-family: var(--font-regular);
|
|
5073
4957
|
}
|
|
5074
|
-
.
|
|
5075
|
-
|
|
5076
|
-
|
|
4958
|
+
.CalendarPresets_root__5O668 .uui-presets-header {
|
|
4959
|
+
font-family: var(--font-semibold);
|
|
4960
|
+
font-size: 14px;
|
|
4961
|
+
line-height: 24px;
|
|
4962
|
+
padding-bottom: 12px;
|
|
5077
4963
|
}
|
|
5078
|
-
.
|
|
5079
|
-
|
|
5080
|
-
|
|
5081
|
-
|
|
4964
|
+
.CalendarPresets_root__5O668 .uui-presets-item {
|
|
4965
|
+
font-family: var(--font-semibold);
|
|
4966
|
+
font-size: 12px;
|
|
4967
|
+
line-height: 18px;
|
|
4968
|
+
color: var(--uui-link-button-text);
|
|
4969
|
+
padding-bottom: 6px;
|
|
5082
4970
|
}
|
|
5083
|
-
.
|
|
5084
|
-
|
|
5085
|
-
|
|
5086
|
-
border-left: 1px solid var(--uui-control-border);
|
|
4971
|
+
.CalendarPresets_root__5O668 .uui-presets-item:hover {
|
|
4972
|
+
color: var(--uui-link-button-text-active);
|
|
4973
|
+
cursor: pointer;
|
|
5087
4974
|
}
|
|
5088
|
-
.
|
|
4975
|
+
.RangeDatePicker_typography-header__1MSa3 .hero-header, .RangeDatePicker_typography-header__1MSa3 h1, .RangeDatePicker_typography-header__1MSa3 h2, .RangeDatePicker_typography-header__1MSa3 h3, .RangeDatePicker_typography-header__1MSa3 h4, .RangeDatePicker_typography-header__1MSa3 h5, .RangeDatePicker_typography-header__1MSa3 h6 {
|
|
5089
4976
|
margin: 0;
|
|
5090
4977
|
}
|
|
5091
|
-
.
|
|
4978
|
+
.RangeDatePicker_typography-header__1MSa3 .hero-header {
|
|
5092
4979
|
font-family: var(--font-promo);
|
|
5093
4980
|
margin: 30px 0;
|
|
5094
4981
|
font-size: 66px;
|
|
5095
4982
|
line-height: 72px;
|
|
5096
4983
|
}
|
|
5097
|
-
.
|
|
4984
|
+
.RangeDatePicker_typography-header__1MSa3 .hero-header, .RangeDatePicker_typography-header__1MSa3 .promo-header {
|
|
5098
4985
|
color: var(--uui-text-brand);
|
|
5099
4986
|
text-align: center;
|
|
5100
4987
|
}
|
|
5101
|
-
.
|
|
4988
|
+
.RangeDatePicker_typography-header__1MSa3 .promo-header, .RangeDatePicker_typography-header__1MSa3 h1, .RangeDatePicker_typography-header__1MSa3 h2, .RangeDatePicker_typography-header__1MSa3 h3 {
|
|
5102
4989
|
font-family: var(--font-primary);
|
|
5103
4990
|
}
|
|
5104
|
-
.
|
|
4991
|
+
.RangeDatePicker_typography-header__1MSa3 .promo-header {
|
|
5105
4992
|
text-transform: uppercase;
|
|
5106
4993
|
}
|
|
5107
|
-
.
|
|
4994
|
+
.RangeDatePicker_typography-header__1MSa3 h4, .RangeDatePicker_typography-header__1MSa3 h5, .RangeDatePicker_typography-header__1MSa3 h6 {
|
|
5108
4995
|
font-family: var(--font-semibold);
|
|
5109
4996
|
}
|
|
5110
|
-
.
|
|
4997
|
+
.RangeDatePicker_typography-header__1MSa3 h1, .RangeDatePicker_typography-header__1MSa3 h2, .RangeDatePicker_typography-header__1MSa3 h3, .RangeDatePicker_typography-header__1MSa3 h4, .RangeDatePicker_typography-header__1MSa3 h5, .RangeDatePicker_typography-header__1MSa3 h6 {
|
|
5111
4998
|
margin-bottom: 0.5em;
|
|
5112
4999
|
margin-top: 1.2em;
|
|
5113
5000
|
line-height: 1.35em;
|
|
5114
5001
|
}
|
|
5115
|
-
.
|
|
5002
|
+
.RangeDatePicker_typography-header__1MSa3 h1 {
|
|
5116
5003
|
font-size: 36px;
|
|
5117
5004
|
}
|
|
5118
|
-
.
|
|
5005
|
+
.RangeDatePicker_typography-header__1MSa3 h2 {
|
|
5119
5006
|
font-size: 30px;
|
|
5120
5007
|
letter-spacing: 0.1px;
|
|
5121
5008
|
}
|
|
5122
|
-
.
|
|
5009
|
+
.RangeDatePicker_typography-header__1MSa3 h2.promo-header {
|
|
5123
5010
|
letter-spacing: 2px;
|
|
5124
5011
|
}
|
|
5125
|
-
.
|
|
5012
|
+
.RangeDatePicker_typography-header__1MSa3 h3 {
|
|
5126
5013
|
font-size: 24px;
|
|
5127
5014
|
}
|
|
5128
|
-
.
|
|
5015
|
+
.RangeDatePicker_typography-header__1MSa3 h4 {
|
|
5129
5016
|
font-size: 18px;
|
|
5130
5017
|
letter-spacing: 0.1px;
|
|
5131
5018
|
}
|
|
5132
|
-
.
|
|
5019
|
+
.RangeDatePicker_typography-header__1MSa3 h5 {
|
|
5133
5020
|
font-size: 16px;
|
|
5134
5021
|
}
|
|
5135
|
-
.
|
|
5022
|
+
.RangeDatePicker_typography-header__1MSa3 h6 {
|
|
5136
5023
|
font-size: 14px;
|
|
5137
5024
|
}
|
|
5138
5025
|
|
|
5139
|
-
.
|
|
5026
|
+
.RangeDatePicker_typography-block__pC0T7 ol, .RangeDatePicker_typography-block__pC0T7 ul {
|
|
5140
5027
|
padding: 0;
|
|
5141
5028
|
}
|
|
5142
|
-
.
|
|
5029
|
+
.RangeDatePicker_typography-block__pC0T7 li {
|
|
5143
5030
|
margin-left: 1.25em;
|
|
5144
5031
|
line-height: 1.5;
|
|
5145
5032
|
}
|
|
5146
|
-
.
|
|
5033
|
+
.RangeDatePicker_typography-block__pC0T7 pre {
|
|
5147
5034
|
padding: 1.25em;
|
|
5148
5035
|
color: var(--gray10);
|
|
5149
5036
|
background-color: var(--uui-secondary-darkest);
|
|
@@ -5151,89 +5038,219 @@
|
|
|
5151
5038
|
white-space: pre-wrap;
|
|
5152
5039
|
word-wrap: normal;
|
|
5153
5040
|
}
|
|
5154
|
-
.
|
|
5041
|
+
.RangeDatePicker_typography-block__pC0T7 img {
|
|
5155
5042
|
max-width: 100%;
|
|
5156
5043
|
}
|
|
5157
|
-
.
|
|
5044
|
+
.RangeDatePicker_typography-block__pC0T7 figure {
|
|
5158
5045
|
margin: 0;
|
|
5159
5046
|
}
|
|
5160
|
-
.
|
|
5047
|
+
.RangeDatePicker_typography-block__pC0T7 figure figcaption {
|
|
5161
5048
|
font-size: 0.9em;
|
|
5162
5049
|
opacity: 0.9;
|
|
5163
5050
|
text-align: center;
|
|
5164
5051
|
}
|
|
5165
|
-
.
|
|
5052
|
+
.RangeDatePicker_typography-block__pC0T7 p {
|
|
5166
5053
|
margin: 0.5em 0;
|
|
5167
5054
|
line-height: 1.5;
|
|
5168
5055
|
}
|
|
5169
5056
|
|
|
5170
|
-
.
|
|
5057
|
+
.RangeDatePicker_typography-inline__efdyU b, .RangeDatePicker_typography-inline__efdyU strong {
|
|
5171
5058
|
font-family: var(--font-semibold);
|
|
5172
5059
|
}
|
|
5173
|
-
.
|
|
5174
|
-
font-family: var(--font-italic);
|
|
5060
|
+
.RangeDatePicker_typography-inline__efdyU i, .RangeDatePicker_typography-inline__efdyU em {
|
|
5061
|
+
font-family: var(--font-italic);
|
|
5062
|
+
}
|
|
5063
|
+
.RangeDatePicker_typography-inline__efdyU a {
|
|
5064
|
+
display: inline-flex;
|
|
5065
|
+
align-items: center;
|
|
5066
|
+
color: var(--uui-primary);
|
|
5067
|
+
text-decoration: underline;
|
|
5068
|
+
}
|
|
5069
|
+
.RangeDatePicker_typography-inline__efdyU a:visited {
|
|
5070
|
+
color: #5214CC;
|
|
5071
|
+
}
|
|
5072
|
+
.RangeDatePicker_typography-inline__efdyU a:visited:hover {
|
|
5073
|
+
color: #3F0F9E;
|
|
5074
|
+
}
|
|
5075
|
+
.RangeDatePicker_typography-inline__efdyU a:hover {
|
|
5076
|
+
color: var(--uui-primary-dark);
|
|
5077
|
+
}
|
|
5078
|
+
.RangeDatePicker_typography-inline__efdyU code {
|
|
5079
|
+
padding: 0.125em 0.25em;
|
|
5080
|
+
color: var(--uui-text-primary);
|
|
5081
|
+
background-color: var(--uui-secondary-light);
|
|
5082
|
+
font-family: var(--font-mono);
|
|
5083
|
+
white-space: pre-wrap;
|
|
5084
|
+
word-wrap: normal;
|
|
5085
|
+
}
|
|
5086
|
+
|
|
5087
|
+
.RangeDatePicker_typography-16__FHiRR {
|
|
5088
|
+
font-size: 16px;
|
|
5089
|
+
}
|
|
5090
|
+
|
|
5091
|
+
.RangeDatePicker_typography-14__5MCXV {
|
|
5092
|
+
font-size: 14px;
|
|
5093
|
+
}
|
|
5094
|
+
|
|
5095
|
+
.RangeDatePicker_typography-12__zcQS2 {
|
|
5096
|
+
font-size: 12px;
|
|
5097
|
+
}
|
|
5098
|
+
|
|
5099
|
+
.RangeDatePicker_typography-promo__GtLFC {
|
|
5100
|
+
font-family: var(--font-regular);
|
|
5101
|
+
color: var(--uui-text-primary);
|
|
5102
|
+
}
|
|
5103
|
+
|
|
5104
|
+
.RangeDatePicker_dropdown-container__GJh6o {
|
|
5105
|
+
align-items: normal;
|
|
5106
|
+
}
|
|
5107
|
+
|
|
5108
|
+
.RangeDatePicker_container__Kz2FS {
|
|
5109
|
+
display: flex;
|
|
5110
|
+
padding: 9px 30px;
|
|
5111
|
+
justify-content: space-between;
|
|
5112
|
+
border-top: 1px solid var(--uui-control-border);
|
|
5113
|
+
align-items: center;
|
|
5114
|
+
background-color: var(--uui-rdtp-bg);
|
|
5115
|
+
position: relative;
|
|
5116
|
+
}
|
|
5117
|
+
|
|
5118
|
+
.RangeDatePicker_button-group__a-twv {
|
|
5119
|
+
display: flex;
|
|
5120
|
+
justify-content: flex-end;
|
|
5121
|
+
}
|
|
5122
|
+
|
|
5123
|
+
.RangeDatePicker_date-input__2aXJj {
|
|
5124
|
+
min-width: 0;
|
|
5125
|
+
padding: 0 5px;
|
|
5126
|
+
}
|
|
5127
|
+
.RangeDatePicker_date-input__2aXJj.uui-focus {
|
|
5128
|
+
border: 1px solid var(--uui-control-border-checked);
|
|
5129
|
+
}
|
|
5130
|
+
.RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-24__64v-x {
|
|
5131
|
+
min-width: 22px;
|
|
5132
|
+
padding-left: 5px;
|
|
5133
|
+
padding-right: 5px;
|
|
5134
|
+
}
|
|
5135
|
+
.RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-24__64v-x .uui-caption, .RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-24__64v-x .uui-input {
|
|
5136
|
+
padding-left: 6px;
|
|
5137
|
+
padding-right: 6px;
|
|
5138
|
+
}
|
|
5139
|
+
.RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-24__64v-x.uui-button-box, .RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-24__64v-x.uui-input-box {
|
|
5140
|
+
min-height: 22px;
|
|
5141
|
+
border-width: 0;
|
|
5142
|
+
}
|
|
5143
|
+
.RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-30__7OPWW {
|
|
5144
|
+
min-width: 28px;
|
|
5145
|
+
padding-left: 5px;
|
|
5146
|
+
padding-right: 5px;
|
|
5147
|
+
}
|
|
5148
|
+
.RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-30__7OPWW .uui-caption, .RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-30__7OPWW .uui-input {
|
|
5149
|
+
padding-left: 6px;
|
|
5150
|
+
padding-right: 6px;
|
|
5151
|
+
}
|
|
5152
|
+
.RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-30__7OPWW.uui-button-box, .RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-30__7OPWW.uui-input-box {
|
|
5153
|
+
min-height: 28px;
|
|
5154
|
+
border-width: 0;
|
|
5155
|
+
}
|
|
5156
|
+
.RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-36__urHhS {
|
|
5157
|
+
min-width: 34px;
|
|
5158
|
+
padding-left: 5px;
|
|
5159
|
+
padding-right: 5px;
|
|
5160
|
+
}
|
|
5161
|
+
.RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-36__urHhS .uui-caption, .RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-36__urHhS .uui-input {
|
|
5162
|
+
padding-left: 6px;
|
|
5163
|
+
padding-right: 6px;
|
|
5164
|
+
}
|
|
5165
|
+
.RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-36__urHhS.uui-button-box, .RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-36__urHhS.uui-input-box {
|
|
5166
|
+
min-height: 34px;
|
|
5167
|
+
border-width: 0;
|
|
5168
|
+
}
|
|
5169
|
+
.RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-42__VMCut {
|
|
5170
|
+
min-width: 40px;
|
|
5171
|
+
padding-left: 5px;
|
|
5172
|
+
padding-right: 5px;
|
|
5173
|
+
}
|
|
5174
|
+
.RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-42__VMCut .uui-caption, .RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-42__VMCut .uui-input {
|
|
5175
|
+
padding-left: 6px;
|
|
5176
|
+
padding-right: 6px;
|
|
5177
|
+
}
|
|
5178
|
+
.RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-42__VMCut.uui-button-box, .RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-42__VMCut.uui-input-box {
|
|
5179
|
+
min-height: 40px;
|
|
5180
|
+
border-width: 0;
|
|
5181
|
+
}
|
|
5182
|
+
.RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-48__YHcLe {
|
|
5183
|
+
min-width: 46px;
|
|
5184
|
+
padding-left: 5px;
|
|
5185
|
+
padding-right: 5px;
|
|
5186
|
+
}
|
|
5187
|
+
.RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-48__YHcLe .uui-caption, .RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-48__YHcLe .uui-input {
|
|
5188
|
+
padding-left: 6px;
|
|
5189
|
+
padding-right: 6px;
|
|
5190
|
+
}
|
|
5191
|
+
.RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-48__YHcLe.uui-button-box, .RangeDatePicker_date-input__2aXJj.RangeDatePicker_size-48__YHcLe.uui-input-box {
|
|
5192
|
+
min-height: 46px;
|
|
5193
|
+
border-width: 0;
|
|
5194
|
+
}
|
|
5195
|
+
|
|
5196
|
+
.RangeDatePicker_date-input-group__CGdCd {
|
|
5197
|
+
display: flex;
|
|
5198
|
+
min-width: 0;
|
|
5199
|
+
background-color: var(--uui-rdtp-bg);
|
|
5200
|
+
border: 1px solid var(--uui-control-border);
|
|
5201
|
+
}
|
|
5202
|
+
.RangeDatePicker_date-input-group__CGdCd .RangeDatePicker_separator__qmCk8 {
|
|
5203
|
+
display: flex;
|
|
5204
|
+
flex-shrink: 0;
|
|
5205
|
+
background: var(--uui-control-border);
|
|
5206
|
+
width: 1px;
|
|
5207
|
+
}
|
|
5208
|
+
.RangeDatePicker_date-input-group__CGdCd:hover {
|
|
5209
|
+
border-color: var(--uui-control_textinput-border-hover);
|
|
5175
5210
|
}
|
|
5176
|
-
.
|
|
5177
|
-
|
|
5178
|
-
align-items: center;
|
|
5179
|
-
color: var(--uui-primary);
|
|
5211
|
+
.RangeDatePicker_date-input-group__CGdCd:hover .RangeDatePicker_separator__qmCk8 {
|
|
5212
|
+
background: var(--uui-control_textinput-border-hover);
|
|
5180
5213
|
}
|
|
5181
|
-
.
|
|
5182
|
-
color:
|
|
5214
|
+
.RangeDatePicker_date-input-group__CGdCd:hover.uui-disabled, .RangeDatePicker_date-input-group__CGdCd:hover.uui-readonly {
|
|
5215
|
+
border-color: var(--uui-control-border);
|
|
5183
5216
|
}
|
|
5184
|
-
.
|
|
5185
|
-
|
|
5217
|
+
.RangeDatePicker_date-input-group__CGdCd:hover.uui-disabled .RangeDatePicker_separator__qmCk8, .RangeDatePicker_date-input-group__CGdCd:hover.uui-readonly .RangeDatePicker_separator__qmCk8 {
|
|
5218
|
+
background: var(--uui-control-border);
|
|
5186
5219
|
}
|
|
5187
|
-
.
|
|
5188
|
-
|
|
5189
|
-
color: var(--uui-primary-dark);
|
|
5220
|
+
.RangeDatePicker_date-input-group__CGdCd.uui-focus {
|
|
5221
|
+
border-color: var(--uui-control-border);
|
|
5190
5222
|
}
|
|
5191
|
-
.
|
|
5192
|
-
|
|
5193
|
-
color: var(--uui-text-primary);
|
|
5194
|
-
background-color: var(--uui-secondary-light);
|
|
5195
|
-
font-family: var(--font-mono);
|
|
5196
|
-
white-space: pre-wrap;
|
|
5197
|
-
word-wrap: normal;
|
|
5223
|
+
.RangeDatePicker_date-input-group__CGdCd.uui-focus .RangeDatePicker_separator__qmCk8 {
|
|
5224
|
+
background: var(--uui-control-border-checked);
|
|
5198
5225
|
}
|
|
5199
|
-
|
|
5200
|
-
|
|
5201
|
-
font-size: 16px;
|
|
5226
|
+
.RangeDatePicker_date-input-group__CGdCd.uui-focus .RangeDatePicker_date-input__2aXJj:hover {
|
|
5227
|
+
outline: 1px solid var(--uui-control_textinput-border-hover);
|
|
5202
5228
|
}
|
|
5203
|
-
|
|
5204
|
-
|
|
5205
|
-
font-size: 14px;
|
|
5229
|
+
.RangeDatePicker_date-input-group__CGdCd.uui-focus .RangeDatePicker_date-input__2aXJj.uui-focus {
|
|
5230
|
+
outline: 1px solid var(--uui-control-border-checked);
|
|
5206
5231
|
}
|
|
5207
|
-
|
|
5208
|
-
|
|
5209
|
-
|
|
5232
|
+
.RangeDatePicker_date-input-group__CGdCd.uui-readonly.RangeDatePicker_mode-form__o0e0M {
|
|
5233
|
+
background-color: var(--uui-control-bg-readonly);
|
|
5234
|
+
border-color: var(--uui-control-border-readonly);
|
|
5235
|
+
pointer-events: none;
|
|
5210
5236
|
}
|
|
5211
|
-
|
|
5212
|
-
|
|
5213
|
-
font-family: var(--font-regular);
|
|
5214
|
-
color: var(--uui-text-primary);
|
|
5237
|
+
.RangeDatePicker_date-input-group__CGdCd.uui-readonly.RangeDatePicker_mode-form__o0e0M:hover {
|
|
5238
|
+
border-color: var(--uui-control-border-readonly);
|
|
5215
5239
|
}
|
|
5216
|
-
|
|
5217
|
-
|
|
5218
|
-
|
|
5219
|
-
|
|
5240
|
+
.RangeDatePicker_date-input-group__CGdCd.uui-readonly.RangeDatePicker_mode-cell__neiVz {
|
|
5241
|
+
background-color: transparent;
|
|
5242
|
+
border-color: transparent;
|
|
5243
|
+
pointer-events: none;
|
|
5220
5244
|
}
|
|
5221
|
-
.
|
|
5222
|
-
|
|
5223
|
-
|
|
5224
|
-
line-height: 24px;
|
|
5225
|
-
padding-bottom: 12px;
|
|
5245
|
+
.RangeDatePicker_date-input-group__CGdCd.uui-readonly.RangeDatePicker_mode-cell__neiVz:hover {
|
|
5246
|
+
background-color: transparent;
|
|
5247
|
+
border-color: transparent;
|
|
5226
5248
|
}
|
|
5227
|
-
.
|
|
5228
|
-
|
|
5229
|
-
font-size: 12px;
|
|
5230
|
-
line-height: 18px;
|
|
5231
|
-
color: var(--uui-link-button-text);
|
|
5232
|
-
padding-bottom: 6px;
|
|
5249
|
+
.RangeDatePicker_date-input-group__CGdCd.uui-readonly .RangeDatePicker_date-input__2aXJj.uui-focus {
|
|
5250
|
+
box-shadow: none;
|
|
5233
5251
|
}
|
|
5234
|
-
.
|
|
5235
|
-
color: var(--uui-
|
|
5236
|
-
cursor: pointer;
|
|
5252
|
+
.RangeDatePicker_date-input-group__CGdCd.uui-invalid {
|
|
5253
|
+
border-color: var(--uui-text-input-border-error);
|
|
5237
5254
|
}
|
|
5238
5255
|
.DropMarker_typography-header__W65wc .hero-header, .DropMarker_typography-header__W65wc h1, .DropMarker_typography-header__W65wc h2, .DropMarker_typography-header__W65wc h3, .DropMarker_typography-header__W65wc h4, .DropMarker_typography-header__W65wc h5, .DropMarker_typography-header__W65wc h6 {
|
|
5239
5256
|
margin: 0;
|
|
@@ -5327,6 +5344,7 @@
|
|
|
5327
5344
|
display: inline-flex;
|
|
5328
5345
|
align-items: center;
|
|
5329
5346
|
color: var(--uui-primary);
|
|
5347
|
+
text-decoration: underline;
|
|
5330
5348
|
}
|
|
5331
5349
|
.DropMarker_typography-inline__tZ3Y- a:visited {
|
|
5332
5350
|
color: #5214CC;
|
|
@@ -5335,7 +5353,6 @@
|
|
|
5335
5353
|
color: #3F0F9E;
|
|
5336
5354
|
}
|
|
5337
5355
|
.DropMarker_typography-inline__tZ3Y- a:hover {
|
|
5338
|
-
text-decoration: underline;
|
|
5339
5356
|
color: var(--uui-primary-dark);
|
|
5340
5357
|
}
|
|
5341
5358
|
.DropMarker_typography-inline__tZ3Y- code {
|
|
@@ -5513,6 +5530,7 @@
|
|
|
5513
5530
|
display: inline-flex;
|
|
5514
5531
|
align-items: center;
|
|
5515
5532
|
color: var(--uui-primary);
|
|
5533
|
+
text-decoration: underline;
|
|
5516
5534
|
}
|
|
5517
5535
|
.DataPickerBody_typography-inline__lOHW0 a:visited {
|
|
5518
5536
|
color: #5214CC;
|
|
@@ -5521,7 +5539,6 @@
|
|
|
5521
5539
|
color: #3F0F9E;
|
|
5522
5540
|
}
|
|
5523
5541
|
.DataPickerBody_typography-inline__lOHW0 a:hover {
|
|
5524
|
-
text-decoration: underline;
|
|
5525
5542
|
color: var(--uui-primary-dark);
|
|
5526
5543
|
}
|
|
5527
5544
|
.DataPickerBody_typography-inline__lOHW0 code {
|
|
@@ -5650,7 +5667,12 @@
|
|
|
5650
5667
|
padding-right: 24px;
|
|
5651
5668
|
}
|
|
5652
5669
|
.DataTableCell_cell__VgHTT.uui-invalid {
|
|
5653
|
-
background-color: var(--uui-dt-cell-
|
|
5670
|
+
background-color: var(--uui-dt-cell-bg-invalid);
|
|
5671
|
+
}
|
|
5672
|
+
|
|
5673
|
+
.uui-dt-vertical-cell-border {
|
|
5674
|
+
border-left-color: var(--uui-dt-border);
|
|
5675
|
+
border-right-color: var(--uui-dt-border);
|
|
5654
5676
|
}
|
|
5655
5677
|
|
|
5656
5678
|
.DataTableCell_drag-handle__Ge7UM {
|
|
@@ -5677,6 +5699,7 @@
|
|
|
5677
5699
|
flex-shrink: 0;
|
|
5678
5700
|
width: 12px;
|
|
5679
5701
|
padding-right: 12px;
|
|
5702
|
+
box-sizing: content-box;
|
|
5680
5703
|
}
|
|
5681
5704
|
|
|
5682
5705
|
.DataTableCell_folding-arrow__6iI4s {
|
|
@@ -5701,7 +5724,7 @@
|
|
|
5701
5724
|
}
|
|
5702
5725
|
|
|
5703
5726
|
.DataTableCell_icon-container__1fR7V {
|
|
5704
|
-
fill: var(--
|
|
5727
|
+
fill: var(--uui-icon);
|
|
5705
5728
|
}
|
|
5706
5729
|
.DataTableRow_typography-header__uNO7L .hero-header, .DataTableRow_typography-header__uNO7L h1, .DataTableRow_typography-header__uNO7L h2, .DataTableRow_typography-header__uNO7L h3, .DataTableRow_typography-header__uNO7L h4, .DataTableRow_typography-header__uNO7L h5, .DataTableRow_typography-header__uNO7L h6 {
|
|
5707
5730
|
margin: 0;
|
|
@@ -5795,6 +5818,7 @@
|
|
|
5795
5818
|
display: inline-flex;
|
|
5796
5819
|
align-items: center;
|
|
5797
5820
|
color: var(--uui-primary);
|
|
5821
|
+
text-decoration: underline;
|
|
5798
5822
|
}
|
|
5799
5823
|
.DataTableRow_typography-inline__KgXSh a:visited {
|
|
5800
5824
|
color: #5214CC;
|
|
@@ -5803,7 +5827,6 @@
|
|
|
5803
5827
|
color: #3F0F9E;
|
|
5804
5828
|
}
|
|
5805
5829
|
.DataTableRow_typography-inline__KgXSh a:hover {
|
|
5806
|
-
text-decoration: underline;
|
|
5807
5830
|
color: var(--uui-primary-dark);
|
|
5808
5831
|
}
|
|
5809
5832
|
.DataTableRow_typography-inline__KgXSh code {
|
|
@@ -5859,6 +5882,14 @@
|
|
|
5859
5882
|
.DataTableRow_root__ThnfZ.uui-drag-ghost {
|
|
5860
5883
|
box-shadow: 0 6px 18px 0 rgba(29, 30, 38, 0.05), 0 3px 12px 0 rgba(29, 30, 38, 0.05);
|
|
5861
5884
|
}
|
|
5885
|
+
.DataTableRow_root__ThnfZ.uui-dt-row-border {
|
|
5886
|
+
border-bottom-color: var(--uui-dt-border);
|
|
5887
|
+
}
|
|
5888
|
+
|
|
5889
|
+
.uui-dt-row-border .uui-table-fixed-section, .uui-dt-row-border .uui-table-scrolling-section {
|
|
5890
|
+
border-bottom-color: var(--uui-dt-border);
|
|
5891
|
+
}
|
|
5892
|
+
|
|
5862
5893
|
.DataTableRow_size-24__mjGKU {
|
|
5863
5894
|
min-height: 24px;
|
|
5864
5895
|
}
|
|
@@ -5878,10 +5909,6 @@
|
|
|
5878
5909
|
.DataTableRow_size-60__k0ZKS {
|
|
5879
5910
|
min-height: 60px;
|
|
5880
5911
|
}
|
|
5881
|
-
|
|
5882
|
-
.DataTableRow_background-white__GKFMn {
|
|
5883
|
-
--uui-dt-row-background: white;
|
|
5884
|
-
}
|
|
5885
5912
|
.DataTableHeaderRow_typography-header__17Mf0 .hero-header, .DataTableHeaderRow_typography-header__17Mf0 h1, .DataTableHeaderRow_typography-header__17Mf0 h2, .DataTableHeaderRow_typography-header__17Mf0 h3, .DataTableHeaderRow_typography-header__17Mf0 h4, .DataTableHeaderRow_typography-header__17Mf0 h5, .DataTableHeaderRow_typography-header__17Mf0 h6 {
|
|
5886
5913
|
margin: 0;
|
|
5887
5914
|
}
|
|
@@ -5974,6 +6001,7 @@
|
|
|
5974
6001
|
display: inline-flex;
|
|
5975
6002
|
align-items: center;
|
|
5976
6003
|
color: var(--uui-primary);
|
|
6004
|
+
text-decoration: underline;
|
|
5977
6005
|
}
|
|
5978
6006
|
.DataTableHeaderRow_typography-inline__lCA-Y a:visited {
|
|
5979
6007
|
color: #5214CC;
|
|
@@ -5982,7 +6010,6 @@
|
|
|
5982
6010
|
color: #3F0F9E;
|
|
5983
6011
|
}
|
|
5984
6012
|
.DataTableHeaderRow_typography-inline__lCA-Y a:hover {
|
|
5985
|
-
text-decoration: underline;
|
|
5986
6013
|
color: var(--uui-primary-dark);
|
|
5987
6014
|
}
|
|
5988
6015
|
.DataTableHeaderRow_typography-inline__lCA-Y code {
|
|
@@ -6021,6 +6048,15 @@
|
|
|
6021
6048
|
right: 24px;
|
|
6022
6049
|
z-index: 2;
|
|
6023
6050
|
}
|
|
6051
|
+
|
|
6052
|
+
.uui-table-header-row .uui-table-fixed-section, .uui-table-header-row .uui-table-scrolling-section {
|
|
6053
|
+
border-bottom-color: var(--uui-dt-border);
|
|
6054
|
+
}
|
|
6055
|
+
|
|
6056
|
+
.uui-table-header-row {
|
|
6057
|
+
--uui-dt-row-bg: var(--uui-dt-header-row-bg);
|
|
6058
|
+
--uui-dt-row-bg-hover: var(--uui-dt-header-row-bg-hover);
|
|
6059
|
+
}
|
|
6024
6060
|
.DataTableHeaderCell_typography-header__oILYa .hero-header, .DataTableHeaderCell_typography-header__oILYa h1, .DataTableHeaderCell_typography-header__oILYa h2, .DataTableHeaderCell_typography-header__oILYa h3, .DataTableHeaderCell_typography-header__oILYa h4, .DataTableHeaderCell_typography-header__oILYa h5, .DataTableHeaderCell_typography-header__oILYa h6 {
|
|
6025
6061
|
margin: 0;
|
|
6026
6062
|
}
|
|
@@ -6113,6 +6149,7 @@
|
|
|
6113
6149
|
display: inline-flex;
|
|
6114
6150
|
align-items: center;
|
|
6115
6151
|
color: var(--uui-primary);
|
|
6152
|
+
text-decoration: underline;
|
|
6116
6153
|
}
|
|
6117
6154
|
.DataTableHeaderCell_typography-inline__cfsue a:visited {
|
|
6118
6155
|
color: #5214CC;
|
|
@@ -6121,7 +6158,6 @@
|
|
|
6121
6158
|
color: #3F0F9E;
|
|
6122
6159
|
}
|
|
6123
6160
|
.DataTableHeaderCell_typography-inline__cfsue a:hover {
|
|
6124
|
-
text-decoration: underline;
|
|
6125
6161
|
color: var(--uui-primary-dark);
|
|
6126
6162
|
}
|
|
6127
6163
|
.DataTableHeaderCell_typography-inline__cfsue code {
|
|
@@ -6167,13 +6203,13 @@
|
|
|
6167
6203
|
}
|
|
6168
6204
|
.DataTableHeaderCell_cell__8JnbB.-clickable:hover {
|
|
6169
6205
|
background: var(--uui-dt-row-bg-hover);
|
|
6170
|
-
box-shadow: var(--uui-dt-
|
|
6206
|
+
box-shadow: inset 1px 0 0 var(--uui-dt-border), inset -1px 0 0 var(--uui-dt-border);
|
|
6171
6207
|
}
|
|
6172
6208
|
.DataTableHeaderCell_cell__8JnbB.-clickable:hover .DataTableHeaderCell_sort-icon__Wi-rh, .DataTableHeaderCell_cell__8JnbB.-clickable:hover .DataTableHeaderCell_dropdown-icon__-vO3u, .DataTableHeaderCell_cell__8JnbB.-clickable:hover .DataTableHeaderCell_infoIcon__1Ang4 {
|
|
6173
6209
|
fill: var(--uui-icon-hover);
|
|
6174
6210
|
}
|
|
6175
6211
|
.DataTableHeaderCell_cell__8JnbB.DataTableHeaderCell_resizable__sNvwo:hover {
|
|
6176
|
-
box-shadow: var(--uui-dt-
|
|
6212
|
+
box-shadow: inset 1px 0 0 var(--uui-dt-border), inset -1px 0 0 var(--uui-dt-border);
|
|
6177
6213
|
}
|
|
6178
6214
|
.DataTableHeaderCell_cell__8JnbB.DataTableHeaderCell_size-24__ntP26 {
|
|
6179
6215
|
height: 24px;
|
|
@@ -6197,7 +6233,7 @@
|
|
|
6197
6233
|
padding-right: 24px;
|
|
6198
6234
|
}
|
|
6199
6235
|
.DataTableHeaderCell_cell__8JnbB .DataTableHeaderCell_caption__pF7VF {
|
|
6200
|
-
font-family: var(--font
|
|
6236
|
+
font-family: var(--uui-dt-header-cell-font);
|
|
6201
6237
|
overflow: hidden;
|
|
6202
6238
|
text-overflow: ellipsis;
|
|
6203
6239
|
white-space: nowrap;
|
|
@@ -6247,7 +6283,7 @@
|
|
|
6247
6283
|
cursor: col-resize;
|
|
6248
6284
|
}
|
|
6249
6285
|
.DataTableHeaderCell_cell__8JnbB .DataTableHeaderCell_resize-mark__Vlv3w:hover {
|
|
6250
|
-
background-color: var(--uui-dt-cell-resize
|
|
6286
|
+
background-color: var(--uui-dt-cell-bg-resize);
|
|
6251
6287
|
}
|
|
6252
6288
|
.DataTableHeaderCell_cell__8JnbB.DataTableHeaderCell_draggable__c0dne {
|
|
6253
6289
|
cursor: pointer;
|
|
@@ -6261,16 +6297,16 @@
|
|
|
6261
6297
|
opacity: 0.5;
|
|
6262
6298
|
}
|
|
6263
6299
|
.DataTableHeaderCell_cell__8JnbB.DataTableHeaderCell_dnd-marker-left__0pkPC {
|
|
6264
|
-
box-shadow: var(--uui-
|
|
6300
|
+
box-shadow: inset 2px 0 0 0 var(--uui-dt_header-drop_marker);
|
|
6265
6301
|
}
|
|
6266
6302
|
.DataTableHeaderCell_cell__8JnbB.DataTableHeaderCell_dnd-marker-left__0pkPC.-clickable, .DataTableHeaderCell_cell__8JnbB.DataTableHeaderCell_dnd-marker-left__0pkPC.DataTableHeaderCell_resizable__sNvwo {
|
|
6267
|
-
box-shadow: var(--uui-
|
|
6303
|
+
box-shadow: inset 2px 0 0 0 var(--uui-dt_header-drop_marker);
|
|
6268
6304
|
}
|
|
6269
6305
|
.DataTableHeaderCell_cell__8JnbB.DataTableHeaderCell_dnd-marker-right__1i9gh {
|
|
6270
|
-
box-shadow: var(--uui-
|
|
6306
|
+
box-shadow: inset -2px 0 0 0 var(--uui-dt_header-drop_marker);
|
|
6271
6307
|
}
|
|
6272
6308
|
.DataTableHeaderCell_cell__8JnbB.DataTableHeaderCell_dnd-marker-right__1i9gh.-clickable, .DataTableHeaderCell_cell__8JnbB.DataTableHeaderCell_dnd-marker-right__1i9gh.DataTableHeaderCell_resizable__sNvwo {
|
|
6273
|
-
box-shadow: var(--uui-
|
|
6309
|
+
box-shadow: inset -2px 0 0 0 var(--uui-dt_header-drop_marker);
|
|
6274
6310
|
}
|
|
6275
6311
|
.DataTable_sticky-header__Dt-br {
|
|
6276
6312
|
position: sticky;
|
|
@@ -6300,7 +6336,7 @@
|
|
|
6300
6336
|
.DataTable_table__n--u- .uui-scroll-shadow-top-visible {
|
|
6301
6337
|
display: block;
|
|
6302
6338
|
height: 5px;
|
|
6303
|
-
background: var(--uui-dt-top-shadow);
|
|
6339
|
+
background: var(--uui-dt-top-shadow, linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%));
|
|
6304
6340
|
transition: display 200ms;
|
|
6305
6341
|
}
|
|
6306
6342
|
|
|
@@ -6412,6 +6448,7 @@
|
|
|
6412
6448
|
display: inline-flex;
|
|
6413
6449
|
align-items: center;
|
|
6414
6450
|
color: var(--uui-primary);
|
|
6451
|
+
text-decoration: underline;
|
|
6415
6452
|
}
|
|
6416
6453
|
.ColumnsConfigurationModal_typography-inline__VJCzZ a:visited {
|
|
6417
6454
|
color: #5214CC;
|
|
@@ -6420,7 +6457,6 @@
|
|
|
6420
6457
|
color: #3F0F9E;
|
|
6421
6458
|
}
|
|
6422
6459
|
.ColumnsConfigurationModal_typography-inline__VJCzZ a:hover {
|
|
6423
|
-
text-decoration: underline;
|
|
6424
6460
|
color: var(--uui-primary-dark);
|
|
6425
6461
|
}
|
|
6426
6462
|
.ColumnsConfigurationModal_typography-inline__VJCzZ code {
|
|
@@ -6583,6 +6619,7 @@
|
|
|
6583
6619
|
display: inline-flex;
|
|
6584
6620
|
align-items: center;
|
|
6585
6621
|
color: var(--uui-primary);
|
|
6622
|
+
text-decoration: underline;
|
|
6586
6623
|
}
|
|
6587
6624
|
.ColumnRow_typography-inline__GYRwx a:visited {
|
|
6588
6625
|
color: #5214CC;
|
|
@@ -6591,7 +6628,6 @@
|
|
|
6591
6628
|
color: #3F0F9E;
|
|
6592
6629
|
}
|
|
6593
6630
|
.ColumnRow_typography-inline__GYRwx a:hover {
|
|
6594
|
-
text-decoration: underline;
|
|
6595
6631
|
color: var(--uui-primary-dark);
|
|
6596
6632
|
}
|
|
6597
6633
|
.ColumnRow_typography-inline__GYRwx code {
|
|
@@ -6748,6 +6784,7 @@
|
|
|
6748
6784
|
display: inline-flex;
|
|
6749
6785
|
align-items: center;
|
|
6750
6786
|
color: var(--uui-primary);
|
|
6787
|
+
text-decoration: underline;
|
|
6751
6788
|
}
|
|
6752
6789
|
.SortingPanel_typography-inline__Tcu9M a:visited {
|
|
6753
6790
|
color: #5214CC;
|
|
@@ -6756,7 +6793,6 @@
|
|
|
6756
6793
|
color: #3F0F9E;
|
|
6757
6794
|
}
|
|
6758
6795
|
.SortingPanel_typography-inline__Tcu9M a:hover {
|
|
6759
|
-
text-decoration: underline;
|
|
6760
6796
|
color: var(--uui-primary-dark);
|
|
6761
6797
|
}
|
|
6762
6798
|
.SortingPanel_typography-inline__Tcu9M code {
|
|
@@ -6890,6 +6926,7 @@
|
|
|
6890
6926
|
display: inline-flex;
|
|
6891
6927
|
align-items: center;
|
|
6892
6928
|
color: var(--uui-primary);
|
|
6929
|
+
text-decoration: underline;
|
|
6893
6930
|
}
|
|
6894
6931
|
.DataPickerRow_typography-inline__nLffn a:visited {
|
|
6895
6932
|
color: #5214CC;
|
|
@@ -6898,7 +6935,6 @@
|
|
|
6898
6935
|
color: #3F0F9E;
|
|
6899
6936
|
}
|
|
6900
6937
|
.DataPickerRow_typography-inline__nLffn a:hover {
|
|
6901
|
-
text-decoration: underline;
|
|
6902
6938
|
color: var(--uui-primary-dark);
|
|
6903
6939
|
}
|
|
6904
6940
|
.DataPickerRow_typography-inline__nLffn code {
|
|
@@ -6946,10 +6982,10 @@
|
|
|
6946
6982
|
}
|
|
6947
6983
|
|
|
6948
6984
|
.DataPickerRow_icon-default__DpPlP {
|
|
6949
|
-
fill: var(--
|
|
6985
|
+
fill: var(--uui-icon);
|
|
6950
6986
|
}
|
|
6951
6987
|
|
|
6952
|
-
.DataPickerRow_icon-
|
|
6988
|
+
.DataPickerRow_icon-primary__s8KHw {
|
|
6953
6989
|
fill: var(--uui-primary);
|
|
6954
6990
|
}
|
|
6955
6991
|
.MobileDropdownWrapper_typography-header__x4CWx .hero-header, .MobileDropdownWrapper_typography-header__x4CWx h1, .MobileDropdownWrapper_typography-header__x4CWx h2, .MobileDropdownWrapper_typography-header__x4CWx h3, .MobileDropdownWrapper_typography-header__x4CWx h4, .MobileDropdownWrapper_typography-header__x4CWx h5, .MobileDropdownWrapper_typography-header__x4CWx h6 {
|
|
@@ -7044,6 +7080,7 @@
|
|
|
7044
7080
|
display: inline-flex;
|
|
7045
7081
|
align-items: center;
|
|
7046
7082
|
color: var(--uui-primary);
|
|
7083
|
+
text-decoration: underline;
|
|
7047
7084
|
}
|
|
7048
7085
|
.MobileDropdownWrapper_typography-inline__yk-yR a:visited {
|
|
7049
7086
|
color: #5214CC;
|
|
@@ -7052,7 +7089,6 @@
|
|
|
7052
7089
|
color: #3F0F9E;
|
|
7053
7090
|
}
|
|
7054
7091
|
.MobileDropdownWrapper_typography-inline__yk-yR a:hover {
|
|
7055
|
-
text-decoration: underline;
|
|
7056
7092
|
color: var(--uui-primary-dark);
|
|
7057
7093
|
}
|
|
7058
7094
|
.MobileDropdownWrapper_typography-inline__yk-yR code {
|
|
@@ -7183,6 +7219,7 @@
|
|
|
7183
7219
|
display: inline-flex;
|
|
7184
7220
|
align-items: center;
|
|
7185
7221
|
color: var(--uui-primary);
|
|
7222
|
+
text-decoration: underline;
|
|
7186
7223
|
}
|
|
7187
7224
|
.PickerModal_typography-inline__KorkO a:visited {
|
|
7188
7225
|
color: #5214CC;
|
|
@@ -7191,7 +7228,6 @@
|
|
|
7191
7228
|
color: #3F0F9E;
|
|
7192
7229
|
}
|
|
7193
7230
|
.PickerModal_typography-inline__KorkO a:hover {
|
|
7194
|
-
text-decoration: underline;
|
|
7195
7231
|
color: var(--uui-primary-dark);
|
|
7196
7232
|
}
|
|
7197
7233
|
.PickerModal_typography-inline__KorkO code {
|
|
@@ -7227,6 +7263,20 @@
|
|
|
7227
7263
|
.PickerModal_switch__l1-Vd {
|
|
7228
7264
|
margin-bottom: 12px;
|
|
7229
7265
|
}
|
|
7266
|
+
.AvatarStack_root__Tsg6N .avatars {
|
|
7267
|
+
padding-right: 12px;
|
|
7268
|
+
}
|
|
7269
|
+
.AvatarStack_root__Tsg6N .avatars > * {
|
|
7270
|
+
border-radius: 50%;
|
|
7271
|
+
border: 1px solid white;
|
|
7272
|
+
}
|
|
7273
|
+
.AvatarStack_root__Tsg6N .avatarsCount {
|
|
7274
|
+
color: var(--uui-text-primary);
|
|
7275
|
+
margin-left: 3px;
|
|
7276
|
+
line-height: 1;
|
|
7277
|
+
font-family: var(--uui-avatar-stack-font);
|
|
7278
|
+
font-size: 14px;
|
|
7279
|
+
}
|
|
7230
7280
|
.Badge_typography-header__zhcFQ .hero-header, .Badge_typography-header__zhcFQ h1, .Badge_typography-header__zhcFQ h2, .Badge_typography-header__zhcFQ h3, .Badge_typography-header__zhcFQ h4, .Badge_typography-header__zhcFQ h5, .Badge_typography-header__zhcFQ h6 {
|
|
7231
7281
|
margin: 0;
|
|
7232
7282
|
}
|
|
@@ -7319,6 +7369,7 @@
|
|
|
7319
7369
|
display: inline-flex;
|
|
7320
7370
|
align-items: center;
|
|
7321
7371
|
color: var(--uui-primary);
|
|
7372
|
+
text-decoration: underline;
|
|
7322
7373
|
}
|
|
7323
7374
|
.Badge_typography-inline__MLd7F a:visited {
|
|
7324
7375
|
color: #5214CC;
|
|
@@ -7327,7 +7378,6 @@
|
|
|
7327
7378
|
color: #3F0F9E;
|
|
7328
7379
|
}
|
|
7329
7380
|
.Badge_typography-inline__MLd7F a:hover {
|
|
7330
|
-
text-decoration: underline;
|
|
7331
7381
|
color: var(--uui-primary-dark);
|
|
7332
7382
|
}
|
|
7333
7383
|
.Badge_typography-inline__MLd7F code {
|
|
@@ -7357,7 +7407,7 @@
|
|
|
7357
7407
|
}
|
|
7358
7408
|
|
|
7359
7409
|
.Badge_root__wIzSP .uui-count {
|
|
7360
|
-
font-family: var(--font
|
|
7410
|
+
font-family: var(--uui-badge-count-font);
|
|
7361
7411
|
margin: auto;
|
|
7362
7412
|
height: 18px;
|
|
7363
7413
|
line-height: 18px;
|
|
@@ -7372,7 +7422,7 @@
|
|
|
7372
7422
|
margin-left: 6px;
|
|
7373
7423
|
}
|
|
7374
7424
|
.Badge_root__wIzSP .uui-caption {
|
|
7375
|
-
font-family: var(--font
|
|
7425
|
+
font-family: var(--uui-badge-font);
|
|
7376
7426
|
}
|
|
7377
7427
|
.Badge_root__wIzSP.uui-button-box {
|
|
7378
7428
|
border-width: 1px;
|
|
@@ -7424,7 +7474,7 @@
|
|
|
7424
7474
|
padding-top: 2px;
|
|
7425
7475
|
padding-bottom: 2px;
|
|
7426
7476
|
line-height: 18px;
|
|
7427
|
-
font-size:
|
|
7477
|
+
font-size: 12px;
|
|
7428
7478
|
}
|
|
7429
7479
|
.Badge_root__wIzSP.Badge_size-24__WZsqd.Badge_fill-transparent__za27N .uui-caption {
|
|
7430
7480
|
margin-left: 12px;
|
|
@@ -7592,7 +7642,6 @@
|
|
|
7592
7642
|
border-color: transparent;
|
|
7593
7643
|
}
|
|
7594
7644
|
.Badge_root__wIzSP.Badge_fill-transparent__za27N.-clickable:hover {
|
|
7595
|
-
color: var(--uui-badge-bg-hover);
|
|
7596
7645
|
fill: var(--uui-badge-bg-hover);
|
|
7597
7646
|
cursor: pointer;
|
|
7598
7647
|
}
|
|
@@ -7694,6 +7743,7 @@
|
|
|
7694
7743
|
display: inline-flex;
|
|
7695
7744
|
align-items: center;
|
|
7696
7745
|
color: var(--uui-primary);
|
|
7746
|
+
text-decoration: underline;
|
|
7697
7747
|
}
|
|
7698
7748
|
.Tag_typography-inline__Yhikn a:visited {
|
|
7699
7749
|
color: #5214CC;
|
|
@@ -7702,7 +7752,6 @@
|
|
|
7702
7752
|
color: #3F0F9E;
|
|
7703
7753
|
}
|
|
7704
7754
|
.Tag_typography-inline__Yhikn a:hover {
|
|
7705
|
-
text-decoration: underline;
|
|
7706
7755
|
color: var(--uui-primary-dark);
|
|
7707
7756
|
}
|
|
7708
7757
|
.Tag_typography-inline__Yhikn code {
|
|
@@ -7740,7 +7789,7 @@
|
|
|
7740
7789
|
.Tag_root__610w5.uui-button-box .uui-count {
|
|
7741
7790
|
background-color: var(--uui-tag-count-bg);
|
|
7742
7791
|
color: var(--uui-tag-count);
|
|
7743
|
-
font-family: var(--font
|
|
7792
|
+
font-family: var(--uui-tag-count-font);
|
|
7744
7793
|
margin: auto;
|
|
7745
7794
|
height: 18px;
|
|
7746
7795
|
line-height: 18px;
|
|
@@ -7759,7 +7808,7 @@
|
|
|
7759
7808
|
}
|
|
7760
7809
|
.Tag_root__610w5.uui-button-box .uui-caption {
|
|
7761
7810
|
text-transform: none;
|
|
7762
|
-
font-family: var(--font
|
|
7811
|
+
font-family: var(--uui-tag-font);
|
|
7763
7812
|
color: var(--uui-tag-caption);
|
|
7764
7813
|
}
|
|
7765
7814
|
.Tag_root__610w5.Tag_size-18__mPDDm {
|
|
@@ -7879,6 +7928,85 @@
|
|
|
7879
7928
|
border-radius: 12px;
|
|
7880
7929
|
min-width: 12px;
|
|
7881
7930
|
}
|
|
7931
|
+
.Paginator_root__axS3r {
|
|
7932
|
+
display: flex;
|
|
7933
|
+
flex-direction: row;
|
|
7934
|
+
}
|
|
7935
|
+
.Paginator_root__axS3r .Paginator_spacer__Xicct {
|
|
7936
|
+
color: var(--uui-text-primary);
|
|
7937
|
+
}
|
|
7938
|
+
.Paginator_root__axS3r .Paginator_mode-ghost__3igjT {
|
|
7939
|
+
color: var(--uui-text-primary);
|
|
7940
|
+
}
|
|
7941
|
+
.Paginator_root__axS3r .Paginator_mode-ghost__3igjT:hover {
|
|
7942
|
+
color: var(--uui-primary);
|
|
7943
|
+
}
|
|
7944
|
+
.Paginator_root__axS3r .Paginator_size-24__ZlsRd.uui-button-box {
|
|
7945
|
+
min-width: 24px;
|
|
7946
|
+
}
|
|
7947
|
+
.Paginator_root__axS3r .Paginator_size-24__ZlsRd .uui-caption {
|
|
7948
|
+
font-family: var(--uui-pagination-font);
|
|
7949
|
+
font-size: 14px;
|
|
7950
|
+
padding-left: 2px;
|
|
7951
|
+
padding-right: 2px;
|
|
7952
|
+
}
|
|
7953
|
+
.Paginator_root__axS3r .Paginator_size-24__ZlsRd:first-of-type {
|
|
7954
|
+
margin-right: 6px;
|
|
7955
|
+
}
|
|
7956
|
+
.Paginator_root__axS3r .Paginator_size-24__ZlsRd:last-of-type {
|
|
7957
|
+
margin-left: 6px;
|
|
7958
|
+
}
|
|
7959
|
+
.Paginator_root__axS3r .Paginator_size-24__ZlsRd.Paginator_spacer__Xicct {
|
|
7960
|
+
min-width: 28px;
|
|
7961
|
+
}
|
|
7962
|
+
.Paginator_root__axS3r .Paginator_size-30__Uw66-.uui-button-box {
|
|
7963
|
+
min-width: 30px;
|
|
7964
|
+
}
|
|
7965
|
+
.Paginator_root__axS3r .Paginator_size-30__Uw66- .uui-caption {
|
|
7966
|
+
font-family: var(--uui-pagination-font);
|
|
7967
|
+
font-size: 14px;
|
|
7968
|
+
padding-left: 5px;
|
|
7969
|
+
padding-right: 5px;
|
|
7970
|
+
}
|
|
7971
|
+
.Paginator_root__axS3r .Paginator_size-30__Uw66-:first-of-type {
|
|
7972
|
+
margin-right: 6px;
|
|
7973
|
+
}
|
|
7974
|
+
.Paginator_root__axS3r .Paginator_size-30__Uw66-:last-of-type {
|
|
7975
|
+
margin-left: 6px;
|
|
7976
|
+
}
|
|
7977
|
+
.Paginator_root__axS3r .Paginator_size-30__Uw66-.Paginator_spacer__Xicct {
|
|
7978
|
+
min-width: 34px;
|
|
7979
|
+
}
|
|
7980
|
+
.Paginator_root__axS3r .Paginator_navigation-size-24__FpImt.uui-button-box {
|
|
7981
|
+
min-width: 24px;
|
|
7982
|
+
}
|
|
7983
|
+
.Paginator_root__axS3r .Paginator_navigation-size-24__FpImt .uui-caption {
|
|
7984
|
+
font-family: var(--uui-pagination-font);
|
|
7985
|
+
font-size: 14px;
|
|
7986
|
+
padding-left: 0;
|
|
7987
|
+
padding-right: 0;
|
|
7988
|
+
}
|
|
7989
|
+
.Paginator_root__axS3r .Paginator_navigation-size-24__FpImt:first-of-type {
|
|
7990
|
+
margin-right: 6px;
|
|
7991
|
+
}
|
|
7992
|
+
.Paginator_root__axS3r .Paginator_navigation-size-24__FpImt:last-of-type {
|
|
7993
|
+
margin-left: 6px;
|
|
7994
|
+
}
|
|
7995
|
+
.Paginator_root__axS3r .Paginator_navigation-size-30__-PWmy.uui-button-box {
|
|
7996
|
+
min-width: 30px;
|
|
7997
|
+
}
|
|
7998
|
+
.Paginator_root__axS3r .Paginator_navigation-size-30__-PWmy .uui-caption {
|
|
7999
|
+
font-family: var(--uui-pagination-font);
|
|
8000
|
+
font-size: 14px;
|
|
8001
|
+
padding-left: 0;
|
|
8002
|
+
padding-right: 0;
|
|
8003
|
+
}
|
|
8004
|
+
.Paginator_root__axS3r .Paginator_navigation-size-30__-PWmy:first-of-type {
|
|
8005
|
+
margin-right: 6px;
|
|
8006
|
+
}
|
|
8007
|
+
.Paginator_root__axS3r .Paginator_navigation-size-30__-PWmy:last-of-type {
|
|
8008
|
+
margin-left: 6px;
|
|
8009
|
+
}
|
|
7882
8010
|
.PickerToggler_typography-header__Wl3bF .hero-header, .PickerToggler_typography-header__Wl3bF h1, .PickerToggler_typography-header__Wl3bF h2, .PickerToggler_typography-header__Wl3bF h3, .PickerToggler_typography-header__Wl3bF h4, .PickerToggler_typography-header__Wl3bF h5, .PickerToggler_typography-header__Wl3bF h6 {
|
|
7883
8011
|
margin: 0;
|
|
7884
8012
|
}
|
|
@@ -7971,6 +8099,7 @@
|
|
|
7971
8099
|
display: inline-flex;
|
|
7972
8100
|
align-items: center;
|
|
7973
8101
|
color: var(--uui-primary);
|
|
8102
|
+
text-decoration: underline;
|
|
7974
8103
|
}
|
|
7975
8104
|
.PickerToggler_typography-inline__R6g9F a:visited {
|
|
7976
8105
|
color: #5214CC;
|
|
@@ -7979,7 +8108,6 @@
|
|
|
7979
8108
|
color: #3F0F9E;
|
|
7980
8109
|
}
|
|
7981
8110
|
.PickerToggler_typography-inline__R6g9F a:hover {
|
|
7982
|
-
text-decoration: underline;
|
|
7983
8111
|
color: var(--uui-primary-dark);
|
|
7984
8112
|
}
|
|
7985
8113
|
.PickerToggler_typography-inline__R6g9F code {
|
|
@@ -8163,7 +8291,7 @@
|
|
|
8163
8291
|
padding-left: 6px;
|
|
8164
8292
|
padding-right: 6px;
|
|
8165
8293
|
margin-bottom: 2px;
|
|
8166
|
-
font-family: var(--font
|
|
8294
|
+
font-family: var(--uui-picker-toggler-font);
|
|
8167
8295
|
color: var(--uui-picker-toggler-text);
|
|
8168
8296
|
}
|
|
8169
8297
|
.PickerToggler_root__G7gEl .uui-input::placeholder {
|
|
@@ -8175,7 +8303,7 @@
|
|
|
8175
8303
|
.PickerToggler_root__G7gEl .uui-caption {
|
|
8176
8304
|
overflow: hidden;
|
|
8177
8305
|
text-overflow: ellipsis;
|
|
8178
|
-
font-family: var(--font
|
|
8306
|
+
font-family: var(--uui-picker-toggler-font);
|
|
8179
8307
|
align-self: center;
|
|
8180
8308
|
white-space: nowrap;
|
|
8181
8309
|
}
|
|
@@ -8408,6 +8536,7 @@
|
|
|
8408
8536
|
display: inline-flex;
|
|
8409
8537
|
align-items: center;
|
|
8410
8538
|
color: var(--uui-primary);
|
|
8539
|
+
text-decoration: underline;
|
|
8411
8540
|
}
|
|
8412
8541
|
.PickerInput_typography-inline__3Z1Fw a:visited {
|
|
8413
8542
|
color: #5214CC;
|
|
@@ -8416,7 +8545,6 @@
|
|
|
8416
8545
|
color: #3F0F9E;
|
|
8417
8546
|
}
|
|
8418
8547
|
.PickerInput_typography-inline__3Z1Fw a:hover {
|
|
8419
|
-
text-decoration: underline;
|
|
8420
8548
|
color: var(--uui-primary-dark);
|
|
8421
8549
|
}
|
|
8422
8550
|
.PickerInput_typography-inline__3Z1Fw code {
|
|
@@ -8445,6 +8573,10 @@
|
|
|
8445
8573
|
color: var(--uui-text-primary);
|
|
8446
8574
|
}
|
|
8447
8575
|
|
|
8576
|
+
.PickerInput_panel__0GHsI {
|
|
8577
|
+
background: var(--uui-picker_input-bg);
|
|
8578
|
+
box-shadow: var(--uui-dropdown-container-shadow);
|
|
8579
|
+
}
|
|
8448
8580
|
@media screen and (max-width: 720px) {
|
|
8449
8581
|
.PickerInput_panel__0GHsI {
|
|
8450
8582
|
height: var(--app-mobile-height);
|
|
@@ -8453,7 +8585,6 @@
|
|
|
8453
8585
|
|
|
8454
8586
|
.PickerInput_footer-wrapper__hMVx6 {
|
|
8455
8587
|
border-top: 1px solid var(--uui-divider);
|
|
8456
|
-
background: white;
|
|
8457
8588
|
padding: 0 12px;
|
|
8458
8589
|
display: flex;
|
|
8459
8590
|
}
|
|
@@ -8576,6 +8707,7 @@
|
|
|
8576
8707
|
display: inline-flex;
|
|
8577
8708
|
align-items: center;
|
|
8578
8709
|
color: var(--uui-primary);
|
|
8710
|
+
text-decoration: underline;
|
|
8579
8711
|
}
|
|
8580
8712
|
.FilterPanelItemToggler_typography-inline__GBz0E a:visited {
|
|
8581
8713
|
color: #5214CC;
|
|
@@ -8584,7 +8716,6 @@
|
|
|
8584
8716
|
color: #3F0F9E;
|
|
8585
8717
|
}
|
|
8586
8718
|
.FilterPanelItemToggler_typography-inline__GBz0E a:hover {
|
|
8587
|
-
text-decoration: underline;
|
|
8588
8719
|
color: var(--uui-primary-dark);
|
|
8589
8720
|
}
|
|
8590
8721
|
.FilterPanelItemToggler_typography-inline__GBz0E code {
|
|
@@ -8623,6 +8754,7 @@
|
|
|
8623
8754
|
border: 1px solid var(--uui-filters-toggler-border);
|
|
8624
8755
|
border-radius: var(--uui-filters-toggler-border-radius);
|
|
8625
8756
|
background-color: var(--uui-filters-toggler-bg);
|
|
8757
|
+
box-shadow: var(--uui-filters-toggler-shadow);
|
|
8626
8758
|
padding-left: 6px;
|
|
8627
8759
|
padding-right: 6px;
|
|
8628
8760
|
}
|
|
@@ -8638,7 +8770,7 @@
|
|
|
8638
8770
|
background-color: var(--uui-filters-toggler-bg-hover);
|
|
8639
8771
|
}
|
|
8640
8772
|
.FilterPanelItemToggler_root__KIGYZ.uui-input-box .FilterPanelItemToggler_title-wrapper__hrBtt {
|
|
8641
|
-
font-family: var(--font
|
|
8773
|
+
font-family: var(--uui-filters-toggler-font);
|
|
8642
8774
|
flex: 1 1 auto;
|
|
8643
8775
|
min-width: 0;
|
|
8644
8776
|
outline: none;
|
|
@@ -8834,6 +8966,7 @@
|
|
|
8834
8966
|
display: inline-flex;
|
|
8835
8967
|
align-items: center;
|
|
8836
8968
|
color: var(--uui-primary);
|
|
8969
|
+
text-decoration: underline;
|
|
8837
8970
|
}
|
|
8838
8971
|
.FilterPickerBody_typography-inline__mBxPJ a:visited {
|
|
8839
8972
|
color: #5214CC;
|
|
@@ -8842,7 +8975,6 @@
|
|
|
8842
8975
|
color: #3F0F9E;
|
|
8843
8976
|
}
|
|
8844
8977
|
.FilterPickerBody_typography-inline__mBxPJ a:hover {
|
|
8845
|
-
text-decoration: underline;
|
|
8846
8978
|
color: var(--uui-primary-dark);
|
|
8847
8979
|
}
|
|
8848
8980
|
.FilterPickerBody_typography-inline__mBxPJ code {
|
|
@@ -8967,6 +9099,7 @@
|
|
|
8967
9099
|
display: inline-flex;
|
|
8968
9100
|
align-items: center;
|
|
8969
9101
|
color: var(--uui-primary);
|
|
9102
|
+
text-decoration: underline;
|
|
8970
9103
|
}
|
|
8971
9104
|
.FilterRangeDatePickerBody_typography-inline__M3AvG a:visited {
|
|
8972
9105
|
color: #5214CC;
|
|
@@ -8975,7 +9108,6 @@
|
|
|
8975
9108
|
color: #3F0F9E;
|
|
8976
9109
|
}
|
|
8977
9110
|
.FilterRangeDatePickerBody_typography-inline__M3AvG a:hover {
|
|
8978
|
-
text-decoration: underline;
|
|
8979
9111
|
color: var(--uui-primary-dark);
|
|
8980
9112
|
}
|
|
8981
9113
|
.FilterRangeDatePickerBody_typography-inline__M3AvG code {
|
|
@@ -9090,10 +9222,10 @@
|
|
|
9090
9222
|
width: 1px;
|
|
9091
9223
|
}
|
|
9092
9224
|
.FilterRangeDatePickerBody_date-input-group__cYRz6:hover {
|
|
9093
|
-
border-color: var(--uui-
|
|
9225
|
+
border-color: var(--uui-control_textinput-border-hover);
|
|
9094
9226
|
}
|
|
9095
9227
|
.FilterRangeDatePickerBody_date-input-group__cYRz6:hover .FilterRangeDatePickerBody_separator__Txi2W {
|
|
9096
|
-
background: var(--uui-
|
|
9228
|
+
background: var(--uui-control_textinput-border-hover);
|
|
9097
9229
|
}
|
|
9098
9230
|
.FilterRangeDatePickerBody_date-input-group__cYRz6:hover.uui-disabled, .FilterRangeDatePickerBody_date-input-group__cYRz6:hover.uui-readonly {
|
|
9099
9231
|
border-color: var(--uui-control-border);
|
|
@@ -9108,7 +9240,7 @@
|
|
|
9108
9240
|
background: var(--uui-control-border-checked);
|
|
9109
9241
|
}
|
|
9110
9242
|
.FilterRangeDatePickerBody_date-input-group__cYRz6.uui-focus .FilterRangeDatePickerBody_date-input__5E3aM:hover {
|
|
9111
|
-
outline: 1px solid var(--uui-
|
|
9243
|
+
outline: 1px solid var(--uui-control_textinput-border-hover);
|
|
9112
9244
|
}
|
|
9113
9245
|
.FilterRangeDatePickerBody_date-input-group__cYRz6.uui-focus .FilterRangeDatePickerBody_date-input__5E3aM.uui-focus {
|
|
9114
9246
|
outline: 1px solid var(--uui-control-border-checked);
|
|
@@ -9228,6 +9360,7 @@
|
|
|
9228
9360
|
display: inline-flex;
|
|
9229
9361
|
align-items: center;
|
|
9230
9362
|
color: var(--uui-primary);
|
|
9363
|
+
text-decoration: underline;
|
|
9231
9364
|
}
|
|
9232
9365
|
.FiltersPanelItem_typography-inline__j90GN a:visited {
|
|
9233
9366
|
color: #5214CC;
|
|
@@ -9236,7 +9369,6 @@
|
|
|
9236
9369
|
color: #3F0F9E;
|
|
9237
9370
|
}
|
|
9238
9371
|
.FiltersPanelItem_typography-inline__j90GN a:hover {
|
|
9239
|
-
text-decoration: underline;
|
|
9240
9372
|
color: var(--uui-primary-dark);
|
|
9241
9373
|
}
|
|
9242
9374
|
.FiltersPanelItem_typography-inline__j90GN code {
|
|
@@ -9266,7 +9398,7 @@
|
|
|
9266
9398
|
}
|
|
9267
9399
|
|
|
9268
9400
|
.FiltersPanelItem_header__1Ogc3 {
|
|
9269
|
-
font-family: var(--font
|
|
9401
|
+
font-family: var(--uui-filters-panel-header-font);
|
|
9270
9402
|
display: flex;
|
|
9271
9403
|
justify-content: space-between;
|
|
9272
9404
|
align-items: center;
|
|
@@ -9370,10 +9502,10 @@
|
|
|
9370
9502
|
}
|
|
9371
9503
|
.MainMenu_root__39Kfw .uui-mainmenu-server-badge-label {
|
|
9372
9504
|
padding: 0 5px;
|
|
9373
|
-
border: 2px solid
|
|
9505
|
+
border: 2px solid #FFFFFF; /* for CI/CD, not themeable */
|
|
9374
9506
|
border-radius: 5px 5px 0 0;
|
|
9375
9507
|
border-bottom: 0;
|
|
9376
|
-
font-family: var(--font
|
|
9508
|
+
font-family: var(--uui-main_menu-font);
|
|
9377
9509
|
font-size: 9px;
|
|
9378
9510
|
text-transform: uppercase;
|
|
9379
9511
|
}
|
|
@@ -9384,9 +9516,13 @@
|
|
|
9384
9516
|
fill: var(--uui-main_menu-icon);
|
|
9385
9517
|
flex-shrink: 0;
|
|
9386
9518
|
cursor: pointer;
|
|
9519
|
+
background: transparent;
|
|
9520
|
+
border: none;
|
|
9521
|
+
padding: 0;
|
|
9387
9522
|
}
|
|
9388
|
-
.GlobalMenu_global-menu-btn__QdXAw:hover {
|
|
9523
|
+
.GlobalMenu_global-menu-btn__QdXAw:focus, .GlobalMenu_global-menu-btn__QdXAw:hover {
|
|
9389
9524
|
background-color: var(--uui-main_menu-hover);
|
|
9525
|
+
outline: none;
|
|
9390
9526
|
}
|
|
9391
9527
|
.GlobalMenu_global-menu-btn__QdXAw:active {
|
|
9392
9528
|
background-color: var(--uui-main_menu-active);
|
|
@@ -9548,6 +9684,7 @@
|
|
|
9548
9684
|
display: inline-flex;
|
|
9549
9685
|
align-items: center;
|
|
9550
9686
|
color: var(--uui-primary);
|
|
9687
|
+
text-decoration: underline;
|
|
9551
9688
|
}
|
|
9552
9689
|
.BurgerButton_typography-inline__Q7e9n a:visited {
|
|
9553
9690
|
color: #5214CC;
|
|
@@ -9556,7 +9693,6 @@
|
|
|
9556
9693
|
color: #3F0F9E;
|
|
9557
9694
|
}
|
|
9558
9695
|
.BurgerButton_typography-inline__Q7e9n a:hover {
|
|
9559
|
-
text-decoration: underline;
|
|
9560
9696
|
color: var(--uui-primary-dark);
|
|
9561
9697
|
}
|
|
9562
9698
|
.BurgerButton_typography-inline__Q7e9n code {
|
|
@@ -9590,21 +9726,21 @@
|
|
|
9590
9726
|
background: none;
|
|
9591
9727
|
border: 0;
|
|
9592
9728
|
outline: none;
|
|
9593
|
-
font-family: var(--font
|
|
9729
|
+
font-family: var(--uui-burger_btn-font);
|
|
9594
9730
|
line-height: 48px;
|
|
9595
9731
|
flex-shrink: 0;
|
|
9596
9732
|
}
|
|
9597
9733
|
.BurgerButton_root__FLwMS.uui-enabled {
|
|
9598
|
-
color: var(--uui-
|
|
9599
|
-
fill: var(--uui-
|
|
9734
|
+
color: var(--uui-burger_btn_caption);
|
|
9735
|
+
fill: var(--uui-burger_btn_caption);
|
|
9600
9736
|
}
|
|
9601
9737
|
.BurgerButton_root__FLwMS.uui-enabled.-clickable:hover {
|
|
9602
|
-
color: var(--uui-
|
|
9603
|
-
fill: var(--uui-
|
|
9738
|
+
color: var(--uui-burger_btn_caption-hover);
|
|
9739
|
+
fill: var(--uui-burger_btn_caption-hover);
|
|
9604
9740
|
}
|
|
9605
9741
|
.BurgerButton_root__FLwMS.uui-active {
|
|
9606
|
-
color: var(--uui-
|
|
9607
|
-
fill: var(--uui-
|
|
9742
|
+
color: var(--uui-burger_btn_caption-active);
|
|
9743
|
+
fill: var(--uui-burger_btn_caption-active);
|
|
9608
9744
|
}
|
|
9609
9745
|
.BurgerButton_root__FLwMS .uui-icon {
|
|
9610
9746
|
padding: 0 12px 0 24px;
|
|
@@ -9638,7 +9774,7 @@
|
|
|
9638
9774
|
}
|
|
9639
9775
|
.BurgerSearch_search-input__pTnno .uui-input {
|
|
9640
9776
|
color: var(--uui-burger_search);
|
|
9641
|
-
font-family: var(--font
|
|
9777
|
+
font-family: var(--uui-burger_search-font);
|
|
9642
9778
|
}
|
|
9643
9779
|
.BurgerSearch_search-input__pTnno .uui-input::placeholder {
|
|
9644
9780
|
color: var(--uui-burger_search-placeholder);
|
|
@@ -9665,7 +9801,7 @@
|
|
|
9665
9801
|
}
|
|
9666
9802
|
|
|
9667
9803
|
.BurgerGroupHeader_group-name__szcRq {
|
|
9668
|
-
font-family: var(--font
|
|
9804
|
+
font-family: var(--uui-burger_group-font);
|
|
9669
9805
|
font-size: 12px;
|
|
9670
9806
|
color: var(--uui-burger_group-text);
|
|
9671
9807
|
background: var(--uui-burger_group-bg);
|
|
@@ -9688,6 +9824,8 @@
|
|
|
9688
9824
|
height: 60px;
|
|
9689
9825
|
padding-left: 18px;
|
|
9690
9826
|
padding-right: 6px;
|
|
9827
|
+
background-color: transparent;
|
|
9828
|
+
border: none;
|
|
9691
9829
|
}
|
|
9692
9830
|
.MainMenuAvatar_container__vT8rb .uui-caption, .MainMenuAvatar_container__vT8rb .uui-input {
|
|
9693
9831
|
padding-top: 21px;
|
|
@@ -9696,14 +9834,14 @@
|
|
|
9696
9834
|
line-height: 18px;
|
|
9697
9835
|
font-size: 18px;
|
|
9698
9836
|
}
|
|
9699
|
-
|
|
9700
|
-
.MainMenuAvatar_dropdown__ezcds {
|
|
9837
|
+
.MainMenuAvatar_container__vT8rb.-clickable {
|
|
9701
9838
|
cursor: pointer;
|
|
9702
9839
|
}
|
|
9703
|
-
.
|
|
9840
|
+
.MainMenuAvatar_container__vT8rb.-clickable:focus, .MainMenuAvatar_container__vT8rb.-clickable:hover {
|
|
9704
9841
|
background: var(--uui-main_menu-dropdown-bg);
|
|
9842
|
+
outline: none;
|
|
9705
9843
|
}
|
|
9706
|
-
.
|
|
9844
|
+
.MainMenuAvatar_container__vT8rb.-clickable:active {
|
|
9707
9845
|
background-color: var(--uui-main_menu-dropdown-bg);
|
|
9708
9846
|
}
|
|
9709
9847
|
|
|
@@ -9724,7 +9862,7 @@
|
|
|
9724
9862
|
}
|
|
9725
9863
|
.MainMenuSearch_search-input__xTdYX .uui-input {
|
|
9726
9864
|
color: var(--uui-main_menu-text);
|
|
9727
|
-
font-family: var(--font
|
|
9865
|
+
font-family: var(--uui-main_menu-search-font);
|
|
9728
9866
|
}
|
|
9729
9867
|
.MainMenuSearch_search-input__xTdYX .uui-input::placeholder {
|
|
9730
9868
|
color: var(--uui-main_menu-search-border);
|
|
@@ -9768,20 +9906,6 @@
|
|
|
9768
9906
|
background-color: var(--uui-main_menu-active);
|
|
9769
9907
|
fill: var(--uui-main_menu-icon-active);
|
|
9770
9908
|
}
|
|
9771
|
-
.MainMenuDropdown_dropdown-body__k9qxb {
|
|
9772
|
-
display: flex;
|
|
9773
|
-
flex-direction: column;
|
|
9774
|
-
min-width: 200px;
|
|
9775
|
-
background-color: var(--uui-main_menu-dropdown-bg);
|
|
9776
|
-
}
|
|
9777
|
-
.MainMenuDropdown_dropdown-body__k9qxb .-clickable.uui-button-box:hover {
|
|
9778
|
-
background-color: var(--uui-main_menu-bg);
|
|
9779
|
-
}
|
|
9780
|
-
.MainMenuDropdown_dropdown-body__k9qxb .uui-button-box.uui-active {
|
|
9781
|
-
border: none;
|
|
9782
|
-
border-left: 3px solid var(--uui-main_menu-border-active);
|
|
9783
|
-
background-color: var(--uui-main_menu-bg);
|
|
9784
|
-
}
|
|
9785
9909
|
.MainMenuButton_typography-header__pWBln .hero-header, .MainMenuButton_typography-header__pWBln h1, .MainMenuButton_typography-header__pWBln h2, .MainMenuButton_typography-header__pWBln h3, .MainMenuButton_typography-header__pWBln h4, .MainMenuButton_typography-header__pWBln h5, .MainMenuButton_typography-header__pWBln h6 {
|
|
9786
9910
|
margin: 0;
|
|
9787
9911
|
}
|
|
@@ -9874,6 +9998,7 @@
|
|
|
9874
9998
|
display: inline-flex;
|
|
9875
9999
|
align-items: center;
|
|
9876
10000
|
color: var(--uui-primary);
|
|
10001
|
+
text-decoration: underline;
|
|
9877
10002
|
}
|
|
9878
10003
|
.MainMenuButton_typography-inline__dABqt a:visited {
|
|
9879
10004
|
color: #5214CC;
|
|
@@ -9882,7 +10007,6 @@
|
|
|
9882
10007
|
color: #3F0F9E;
|
|
9883
10008
|
}
|
|
9884
10009
|
.MainMenuButton_typography-inline__dABqt a:hover {
|
|
9885
|
-
text-decoration: underline;
|
|
9886
10010
|
color: var(--uui-primary-dark);
|
|
9887
10011
|
}
|
|
9888
10012
|
.MainMenuButton_typography-inline__dABqt code {
|
|
@@ -9920,7 +10044,7 @@
|
|
|
9920
10044
|
padding: 22px 6px;
|
|
9921
10045
|
line-height: 16px;
|
|
9922
10046
|
margin-bottom: -3px;
|
|
9923
|
-
font-family: var(--font
|
|
10047
|
+
font-family: var(--uui-main_menu-font);
|
|
9924
10048
|
}
|
|
9925
10049
|
.MainMenuButton_root__182y5.uui-button-box, .MainMenuButton_root__182y5.uui-input-box {
|
|
9926
10050
|
min-height: 60px;
|
|
@@ -9953,4 +10077,21 @@
|
|
|
9953
10077
|
color: var(--uui-main_menu-text);
|
|
9954
10078
|
fill: var(--uui-main_menu-icon-active);
|
|
9955
10079
|
}
|
|
10080
|
+
.MainMenuDropdown_dropdown-body__k9qxb {
|
|
10081
|
+
display: flex;
|
|
10082
|
+
flex-direction: column;
|
|
10083
|
+
min-width: 200px;
|
|
10084
|
+
background-color: var(--uui-main_menu-dropdown-bg);
|
|
10085
|
+
box-shadow: var(--uui-main_menu-dropdown-shadow);
|
|
10086
|
+
border-radius: var(--uui-main_menu-dropdown-border-radius);
|
|
10087
|
+
overflow: hidden;
|
|
10088
|
+
}
|
|
10089
|
+
.MainMenuDropdown_dropdown-body__k9qxb .-clickable.uui-button-box:hover {
|
|
10090
|
+
background-color: var(--uui-main_menu-hover);
|
|
10091
|
+
}
|
|
10092
|
+
.MainMenuDropdown_dropdown-body__k9qxb .uui-button-box.uui-active {
|
|
10093
|
+
border: none;
|
|
10094
|
+
border-left: 3px solid var(--uui-main_menu-border-active);
|
|
10095
|
+
background-color: var(--uui-main_menu-hover);
|
|
10096
|
+
}
|
|
9956
10097
|
/*# sourceMappingURL=styles.css.map */
|