@delightui/components 0.1.126 → 0.1.128
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/components/utils/WrapTextNodes/WrapTextNodes.types.d.ts +1 -1
- package/dist/cjs/library.css +900 -5
- package/dist/cjs/library.js +3 -3
- package/dist/cjs/library.js.map +1 -1
- package/dist/esm/components/utils/WrapTextNodes/WrapTextNodes.types.d.ts +1 -1
- package/dist/esm/library.css +900 -5
- package/dist/esm/library.js +3 -3
- package/dist/esm/library.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/docs/components/utils/NotificationProvider.md +70 -0
- package/docs/components/utils/ThemeProvider.md +228 -0
- package/package.json +1 -1
- package/dist/cjs/components/utils.d.ts +0 -28
- package/dist/esm/components/utils.d.ts +0 -28
package/dist/esm/library.css
CHANGED
|
@@ -169,6 +169,18 @@
|
|
|
169
169
|
justify-content: center;
|
|
170
170
|
justify-content: var(--button-content-justify-content, center);
|
|
171
171
|
}
|
|
172
|
+
.Button-module_button__y6Gwz .Button-module_text__Dyuvh {
|
|
173
|
+
--text-font-family: var(--button-font-family);
|
|
174
|
+
--text-font-weight: var(--button-font-weight);
|
|
175
|
+
--text-font-size: var(--button-font-size);
|
|
176
|
+
--text-letter-spacing: var(--button-letter-spacing);
|
|
177
|
+
--text-line-height: var(--button-line-height);
|
|
178
|
+
font-family: var(--button-font-family);
|
|
179
|
+
font-size: var(--button-font-size);
|
|
180
|
+
font-weight: var(--button-font-weight);
|
|
181
|
+
line-height: var(--button-line-height);
|
|
182
|
+
letter-spacing: var(--button-letter-spacing);
|
|
183
|
+
}
|
|
172
184
|
.Button-module_button__y6Gwz .Button-module_content__IipV4 > *,
|
|
173
185
|
.Button-module_button__y6Gwz .Button-module_leadingIcon__vsX8z > *,
|
|
174
186
|
.Button-module_button__y6Gwz .Button-module_trailingIcon__kXG08 > * {
|
|
@@ -496,6 +508,18 @@
|
|
|
496
508
|
justify-content: flex-start;
|
|
497
509
|
justify-content: var(--list-item-content-justify-content, flex-start);
|
|
498
510
|
}
|
|
511
|
+
.ListItem-module_listItem__jYwlh .ListItem-module_text__DFamD {
|
|
512
|
+
--text-font-family: var(--list-item-font-family);
|
|
513
|
+
--text-font-weight: var(--list-item-font-weight);
|
|
514
|
+
--text-font-size: var(--list-item-font-size);
|
|
515
|
+
--text-letter-spacing: var(--list-item-letter-spacing);
|
|
516
|
+
--text-line-height: var(--list-item-line-height);
|
|
517
|
+
font-family: var(--list-item-font-family);
|
|
518
|
+
font-size: var(--list-item-font-size);
|
|
519
|
+
font-weight: var(--list-item-font-weight);
|
|
520
|
+
line-height: var(--list-item-line-height);
|
|
521
|
+
letter-spacing: var(--list-item-letter-spacing);
|
|
522
|
+
}
|
|
499
523
|
.ListItem-module_listItem__jYwlh .ListItem-module_content__I-1o- > *,
|
|
500
524
|
.ListItem-module_listItem__jYwlh .ListItem-module_leadingIcon__BvSjG > *,
|
|
501
525
|
.ListItem-module_listItem__jYwlh .ListItem-module_trailingIcon__qgDgt > * {
|
|
@@ -549,6 +573,18 @@
|
|
|
549
573
|
justify-content: flex-start;
|
|
550
574
|
justify-content: var(--list-item-content-justify-content, flex-start);
|
|
551
575
|
}
|
|
576
|
+
.SelectListItem-module_listItem__alhXN .SelectListItem-module_text__nt6od {
|
|
577
|
+
--text-font-family: var(--list-item-font-family);
|
|
578
|
+
--text-font-weight: var(--list-item-font-weight);
|
|
579
|
+
--text-font-size: var(--list-item-font-size);
|
|
580
|
+
--text-letter-spacing: var(--list-item-letter-spacing);
|
|
581
|
+
--text-line-height: var(--list-item-line-height);
|
|
582
|
+
font-family: var(--list-item-font-family);
|
|
583
|
+
font-size: var(--list-item-font-size);
|
|
584
|
+
font-weight: var(--list-item-font-weight);
|
|
585
|
+
line-height: var(--list-item-line-height);
|
|
586
|
+
letter-spacing: var(--list-item-letter-spacing);
|
|
587
|
+
}
|
|
552
588
|
.SelectListItem-module_listItem__alhXN .SelectListItem-module_content__IU02L > *,
|
|
553
589
|
.SelectListItem-module_listItem__alhXN .SelectListItem-module_leadingIcon__wMycl > *,
|
|
554
590
|
.SelectListItem-module_listItem__alhXN .SelectListItem-module_trailingIcon__ldup1 > * {
|
|
@@ -585,6 +621,18 @@
|
|
|
585
621
|
border-bottom-right-radius: var(--toggle-border-bottom-right-radius);
|
|
586
622
|
border-bottom-left-radius: var(--toggle-border-bottom-left-radius);
|
|
587
623
|
}
|
|
624
|
+
.Toggle-module_toggle__gOwa0 .Toggle-module_text__0AAzY {
|
|
625
|
+
--text-font-family: var(--toggle-font-family);
|
|
626
|
+
--text-font-weight: var(--toggle-font-weight);
|
|
627
|
+
--text-font-size: var(--toggle-font-size);
|
|
628
|
+
--text-letter-spacing: var(--toggle-letter-spacing);
|
|
629
|
+
--text-line-height: var(--toggle-line-height);
|
|
630
|
+
font-family: var(--toggle-font-family);
|
|
631
|
+
font-size: var(--toggle-font-size);
|
|
632
|
+
font-weight: var(--toggle-font-weight);
|
|
633
|
+
line-height: var(--toggle-line-height);
|
|
634
|
+
letter-spacing: var(--toggle-letter-spacing);
|
|
635
|
+
}
|
|
588
636
|
.Toggle-module_toggle__gOwa0 .Toggle-module_input__aAn85 {
|
|
589
637
|
position: absolute;
|
|
590
638
|
opacity: 0;
|
|
@@ -672,10 +720,14 @@
|
|
|
672
720
|
min-width: 2rem;
|
|
673
721
|
min-width: var(--tooltip-content-min-width, 2rem);
|
|
674
722
|
max-width: var(--tooltip-content-max-width);
|
|
675
|
-
padding-top: calc(var(--tooltip-content-padding-top) -
|
|
676
|
-
padding-
|
|
677
|
-
padding-
|
|
678
|
-
padding-
|
|
723
|
+
padding-top: calc(var(--tooltip-content-padding-top) - 0px);
|
|
724
|
+
padding-top: calc(var(--tooltip-content-padding-top) - var(--tooltip-content-border-top-width, 0px));
|
|
725
|
+
padding-bottom: calc(var(--tooltip-content-padding-bottom) - 0px);
|
|
726
|
+
padding-bottom: calc(var(--tooltip-content-padding-bottom) - var(--tooltip-content-border-bottom-width, 0px));
|
|
727
|
+
padding-left: calc(var(--tooltip-content-padding-left) - 0px);
|
|
728
|
+
padding-left: calc(var(--tooltip-content-padding-left) - var(--tooltip-content-border-left-width, 0px));
|
|
729
|
+
padding-right: calc(var(--tooltip-content-padding-right) - 0px);
|
|
730
|
+
padding-right: calc(var(--tooltip-content-padding-right) - var(--tooltip-content-border-right-width, 0px));
|
|
679
731
|
background-color: var(--tooltip-content-background, var(--surface-background-6));
|
|
680
732
|
font-family: var(--tooltip-content-font-family);
|
|
681
733
|
font-size: var(--tooltip-content-font-size);
|
|
@@ -686,6 +738,18 @@
|
|
|
686
738
|
border-radius: var(--tooltip-content-border-radius, 4px);
|
|
687
739
|
box-shadow: var(--tooltip-content-box-shadow-x) var(--tooltip-content-box-shadow-blur) var(--tooltip-content-box-shadow-y) var(--tooltip-content-box-shadow-spread) var(--tooltip-content-box-shadow-color);
|
|
688
740
|
}
|
|
741
|
+
.Tooltip-module_tooltipWrapper__wwgA3 .Tooltip-module_tooltipContent__iio4V .Tooltip-module_text__Or6qX {
|
|
742
|
+
--text-font-family: var(--tooltip-content-font-family);
|
|
743
|
+
--text-font-weight: var(--tooltip-content-font-weight);
|
|
744
|
+
--text-font-size: var(--tooltip-content-font-size);
|
|
745
|
+
--text-letter-spacing: var(--tooltip-content-letter-spacing);
|
|
746
|
+
--text-line-height: var(--tooltip-content-line-height);
|
|
747
|
+
font-family: var(--tooltip-content-font-family);
|
|
748
|
+
font-size: var(--tooltip-content-font-size);
|
|
749
|
+
font-weight: var(--tooltip-content-font-weight);
|
|
750
|
+
line-height: var(--tooltip-content-line-height);
|
|
751
|
+
letter-spacing: var(--tooltip-content-letter-spacing);
|
|
752
|
+
}
|
|
689
753
|
.Tooltip-module_tooltipWrapper__wwgA3 .Tooltip-module_tooltipContent__iio4V .Tooltip-module_tooltipArrow__4y3Pi {
|
|
690
754
|
position: absolute;
|
|
691
755
|
}
|
|
@@ -708,7 +772,7 @@
|
|
|
708
772
|
--svg-stroke-width: calc(var(--tooltip-content-border-bottom-width, 2px) - 1);
|
|
709
773
|
}
|
|
710
774
|
.Tooltip-module_tooltipWrapper__wwgA3 .Tooltip-module_tooltipContent__iio4V[data-direction=Bottom] .Tooltip-module_tooltipArrow__4y3Pi {
|
|
711
|
-
bottom: 100
|
|
775
|
+
bottom: calc(100% - 2px);
|
|
712
776
|
left: 50%;
|
|
713
777
|
transform: translateX(-50%) rotate(180deg);
|
|
714
778
|
}
|
|
@@ -858,6 +922,18 @@
|
|
|
858
922
|
align-items: center;
|
|
859
923
|
justify-content: center;
|
|
860
924
|
}
|
|
925
|
+
.Chip-module_chip__gFkbn .Chip-module_text__Zdkhb {
|
|
926
|
+
--text-font-family: var(--chip-text-font-family);
|
|
927
|
+
--text-font-weight: var(--chip-text-font-weight);
|
|
928
|
+
--text-font-size: var(--chip-text-font-size);
|
|
929
|
+
--text-letter-spacing: var(--chip-text-letter-spacing);
|
|
930
|
+
--text-line-height: var(--chip-text-line-height);
|
|
931
|
+
font-family: var(--chip-text-font-family);
|
|
932
|
+
font-size: var(--chip-text-font-size);
|
|
933
|
+
font-weight: var(--chip-text-font-weight);
|
|
934
|
+
line-height: var(--chip-text-line-height);
|
|
935
|
+
letter-spacing: var(--chip-text-letter-spacing);
|
|
936
|
+
}
|
|
861
937
|
.Chip-module_chip__gFkbn .Chip-module_content__BXoaz {
|
|
862
938
|
flex: 1;
|
|
863
939
|
display: flex;
|
|
@@ -912,6 +988,18 @@
|
|
|
912
988
|
padding-bottom: var(--checkbox-bottom-padding);
|
|
913
989
|
padding-left: var(--checkbox-left-padding);
|
|
914
990
|
}
|
|
991
|
+
.Checkbox-module_checkbox__xj-77 .Checkbox-module_label__KXdQP {
|
|
992
|
+
--text-font-family: var(--checkbox-font-family);
|
|
993
|
+
--text-font-weight: var(--checkbox-font-weight);
|
|
994
|
+
--text-font-size: var(--checkbox-font-size);
|
|
995
|
+
--text-letter-spacing: var(--checkbox-letter-spacing);
|
|
996
|
+
--text-line-height: var(--checkbox-line-height);
|
|
997
|
+
font-family: var(--checkbox-font-family);
|
|
998
|
+
font-size: var(--checkbox-font-size);
|
|
999
|
+
font-weight: var(--checkbox-font-weight);
|
|
1000
|
+
line-height: var(--checkbox-line-height);
|
|
1001
|
+
letter-spacing: var(--checkbox-letter-spacing);
|
|
1002
|
+
}
|
|
915
1003
|
.Checkbox-module_checkbox__xj-77 .Checkbox-module_input__fzmwc {
|
|
916
1004
|
position: absolute;
|
|
917
1005
|
opacity: 0;
|
|
@@ -1049,6 +1137,18 @@
|
|
|
1049
1137
|
.CheckboxItem-module_checkboxItem__x-Kh8 .CheckboxItem-module_checkbox__w9N6t {
|
|
1050
1138
|
--checkbox-width: 100% ;
|
|
1051
1139
|
}
|
|
1140
|
+
.CheckboxItem-module_checkboxItem__x-Kh8 .CheckboxItem-module_text__cPivn {
|
|
1141
|
+
--text-font-family: var(--checkbox-item-font-family);
|
|
1142
|
+
--text-font-weight: var(--checkbox-item-font-weight);
|
|
1143
|
+
--text-font-size: var(--checkbox-item-font-size);
|
|
1144
|
+
--text-letter-spacing: var(--checkbox-item-letter-spacing);
|
|
1145
|
+
--text-line-height: var(--checkbox-item-line-height);
|
|
1146
|
+
font-family: var(--checkbox-item-font-family);
|
|
1147
|
+
font-size: var(--checkbox-item-font-size);
|
|
1148
|
+
font-weight: var(--checkbox-item-font-weight);
|
|
1149
|
+
line-height: var(--checkbox-item-line-height);
|
|
1150
|
+
letter-spacing: var(--checkbox-item-letter-spacing);
|
|
1151
|
+
}
|
|
1052
1152
|
.Slider-module_sliderContainer__WQ-Yb {
|
|
1053
1153
|
display: flex;
|
|
1054
1154
|
align-items: center;
|
|
@@ -1209,6 +1309,18 @@
|
|
|
1209
1309
|
letter-spacing: var(--radio-button-letter-spacing);
|
|
1210
1310
|
line-height: var(--radio-button-line-height);
|
|
1211
1311
|
}
|
|
1312
|
+
.RadioButton-module_radioButton__rJ-J1 .RadioButton-module_text__Gf2S7 {
|
|
1313
|
+
--text-font-family: var(--radio-button-font-family);
|
|
1314
|
+
--text-font-weight: var(--radio-button-font-weight);
|
|
1315
|
+
--text-font-size: var(--radio-button-font-size);
|
|
1316
|
+
--text-letter-spacing: var(--radio-button-letter-spacing);
|
|
1317
|
+
--text-line-height: var(--radio-button-line-height);
|
|
1318
|
+
font-family: var(--radio-button-font-family);
|
|
1319
|
+
font-size: var(--radio-button-font-size);
|
|
1320
|
+
font-weight: var(--radio-button-font-weight);
|
|
1321
|
+
line-height: var(--radio-button-line-height);
|
|
1322
|
+
letter-spacing: var(--radio-button-letter-spacing);
|
|
1323
|
+
}
|
|
1212
1324
|
.RadioButton-module_radioButton__rJ-J1 .RadioButton-module_input__cI2KO {
|
|
1213
1325
|
position: absolute;
|
|
1214
1326
|
opacity: 0;
|
|
@@ -1420,6 +1532,42 @@
|
|
|
1420
1532
|
overflow: hidden;
|
|
1421
1533
|
transition: height 0.3s ease-in-out;
|
|
1422
1534
|
}
|
|
1535
|
+
.Accordion-module_root__Duh5q .Accordion-module_summaryText__JYNpR {
|
|
1536
|
+
--text-font-family: var(--accordion-summary-font-family);
|
|
1537
|
+
--text-font-weight: var(--accordion-summary-font-weight);
|
|
1538
|
+
--text-font-size: var(--accordion-summary-font-size);
|
|
1539
|
+
--text-letter-spacing: var(--accordion-summary-letter-spacing);
|
|
1540
|
+
--text-line-height: var(--accordion-summary-line-height);
|
|
1541
|
+
font-family: var(--accordion-summary-font-family);
|
|
1542
|
+
font-size: var(--accordion-summary-font-size);
|
|
1543
|
+
font-weight: var(--accordion-summary-font-weight);
|
|
1544
|
+
line-height: var(--accordion-summary-line-height);
|
|
1545
|
+
letter-spacing: var(--accordion-summary-letter-spacing);
|
|
1546
|
+
}
|
|
1547
|
+
.Accordion-module_root__Duh5q .Accordion-module_detailsText__W3Zbm {
|
|
1548
|
+
--text-font-family: var(--accordion-font-family);
|
|
1549
|
+
--text-font-weight: var(--accordion-font-weight);
|
|
1550
|
+
--text-font-size: var(--accordion-font-size);
|
|
1551
|
+
--text-letter-spacing: var(--accordion-letter-spacing);
|
|
1552
|
+
--text-line-height: var(--accordion-line-height);
|
|
1553
|
+
font-family: var(--accordion-font-family);
|
|
1554
|
+
font-size: var(--accordion-font-size);
|
|
1555
|
+
font-weight: var(--accordion-font-weight);
|
|
1556
|
+
line-height: var(--accordion-line-height);
|
|
1557
|
+
letter-spacing: var(--accordion-letter-spacing);
|
|
1558
|
+
}
|
|
1559
|
+
.Accordion-module_root__Duh5q .Accordion-module_text__KY4-5 {
|
|
1560
|
+
--text-font-family: var(--accordion-font-family);
|
|
1561
|
+
--text-font-weight: var(--accordion-font-weight);
|
|
1562
|
+
--text-font-size: var(--accordion-font-size);
|
|
1563
|
+
--text-letter-spacing: var(--accordion-letter-spacing);
|
|
1564
|
+
--text-line-height: var(--accordion-line-height);
|
|
1565
|
+
font-family: var(--accordion-font-family);
|
|
1566
|
+
font-size: var(--accordion-font-size);
|
|
1567
|
+
font-weight: var(--accordion-font-weight);
|
|
1568
|
+
line-height: var(--accordion-line-height);
|
|
1569
|
+
letter-spacing: var(--accordion-letter-spacing);
|
|
1570
|
+
}
|
|
1423
1571
|
.AccordionGroup-module_root__0n8b2 {
|
|
1424
1572
|
display: flex;
|
|
1425
1573
|
flex-direction: column;
|
|
@@ -1510,6 +1658,7 @@
|
|
|
1510
1658
|
.Breadcrumbs-module_breadcrumbs__Ltk8M .Breadcrumbs-module_breadcrumbItem__95zLW {
|
|
1511
1659
|
display: flex;
|
|
1512
1660
|
list-style: none;
|
|
1661
|
+
align-items: center;
|
|
1513
1662
|
}
|
|
1514
1663
|
.Breadcrumbs-module_breadcrumbs__Ltk8M .Breadcrumbs-module_breadcrumbItem__95zLW > * {
|
|
1515
1664
|
color: inherit;
|
|
@@ -1612,6 +1761,18 @@
|
|
|
1612
1761
|
line-height: var(--button-line-height);
|
|
1613
1762
|
color: var(--button-color);
|
|
1614
1763
|
}
|
|
1764
|
+
.NavLink-module_navLink__ZbL1G.NavLink-module_button__fm4B7 .NavLink-module_buttonText__qv0sH {
|
|
1765
|
+
--text-font-family: var(--button-font-family);
|
|
1766
|
+
--text-font-weight: var(--button-font-weight);
|
|
1767
|
+
--text-font-size: var(--button-font-size);
|
|
1768
|
+
--text-letter-spacing: var(--button-letter-spacing);
|
|
1769
|
+
--text-line-height: var(--button-line-height);
|
|
1770
|
+
font-family: var(--button-font-family);
|
|
1771
|
+
font-size: var(--button-font-size);
|
|
1772
|
+
font-weight: var(--button-font-weight);
|
|
1773
|
+
line-height: var(--button-line-height);
|
|
1774
|
+
letter-spacing: var(--button-letter-spacing);
|
|
1775
|
+
}
|
|
1615
1776
|
.NavLink-module_navLink__ZbL1G.NavLink-module_link__FSAEq {
|
|
1616
1777
|
height: var(--nav-link-height);
|
|
1617
1778
|
min-height: var(--nav-link-min-height);
|
|
@@ -1646,6 +1807,18 @@
|
|
|
1646
1807
|
line-height: var(--nav-link-line-height);
|
|
1647
1808
|
color: var(--nav-link-color);
|
|
1648
1809
|
}
|
|
1810
|
+
.NavLink-module_navLink__ZbL1G.NavLink-module_link__FSAEq .NavLink-module_linkText__rHYq4 {
|
|
1811
|
+
--text-font-family: var(--nav-link-font-family);
|
|
1812
|
+
--text-font-weight: var(--nav-link-font-weight);
|
|
1813
|
+
--text-font-size: var(--nav-link-font-size);
|
|
1814
|
+
--text-letter-spacing: var(--nav-link-letter-spacing);
|
|
1815
|
+
--text-line-height: var(--nav-link-line-height);
|
|
1816
|
+
font-family: var(--nav-link-font-family);
|
|
1817
|
+
font-size: var(--nav-link-font-size);
|
|
1818
|
+
font-weight: var(--nav-link-font-weight);
|
|
1819
|
+
line-height: var(--nav-link-line-height);
|
|
1820
|
+
letter-spacing: var(--nav-link-letter-spacing);
|
|
1821
|
+
}
|
|
1649
1822
|
.NavLink-module_navLink__ZbL1G:disabled {
|
|
1650
1823
|
cursor: not-allowed;
|
|
1651
1824
|
}
|
|
@@ -3020,6 +3193,18 @@ span.flatpickr-weekday {
|
|
|
3020
3193
|
line-height: var(--form-field-label-line-height);
|
|
3021
3194
|
color: var(--form-field-label-color);
|
|
3022
3195
|
}
|
|
3196
|
+
.FormField-module_formField__vNu-s .FormField-module_label__fzwKv {
|
|
3197
|
+
--text-font-family: var(--form-field-label-font-family);
|
|
3198
|
+
--text-font-weight: var(--form-field-label-font-weight);
|
|
3199
|
+
--text-font-size: var(--form-field-label-font-size);
|
|
3200
|
+
--text-letter-spacing: var(--form-field-label-letter-spacing);
|
|
3201
|
+
--text-line-height: var(--form-field-label-line-height);
|
|
3202
|
+
font-family: var(--form-field-label-font-family);
|
|
3203
|
+
font-size: var(--form-field-label-font-size);
|
|
3204
|
+
font-weight: var(--form-field-label-font-weight);
|
|
3205
|
+
line-height: var(--form-field-label-line-height);
|
|
3206
|
+
letter-spacing: var(--form-field-label-letter-spacing);
|
|
3207
|
+
}
|
|
3023
3208
|
.FormField-module_formField__vNu-s .FormField-module_label__fzwKv.FormField-module_required__JvRw2::after {
|
|
3024
3209
|
content: " *";
|
|
3025
3210
|
}
|
|
@@ -3555,6 +3740,7 @@ span.flatpickr-weekday {
|
|
|
3555
3740
|
width: 100%;
|
|
3556
3741
|
height: auto;
|
|
3557
3742
|
cursor: pointer;
|
|
3743
|
+
align-items: center;
|
|
3558
3744
|
padding-top: calc(var(--select-list-item-padding-top) - var(--select-list-item-border-top-width));
|
|
3559
3745
|
padding-bottom: calc(var(--select-list-item-padding-bottom) - var(--select-list-item-border-bottom-width));
|
|
3560
3746
|
padding-left: calc(var(--select-list-item-padding-left) - var(--select-list-item-border-left-width));
|
|
@@ -3582,6 +3768,18 @@ span.flatpickr-weekday {
|
|
|
3582
3768
|
line-height: var(--select-list-item-line-height);
|
|
3583
3769
|
color: var(--select-list-item-color);
|
|
3584
3770
|
}
|
|
3771
|
+
.Option-module_option__EOKym .Option-module_text__Wv9Oq {
|
|
3772
|
+
--text-font-family: var(--select-list-item-font-family);
|
|
3773
|
+
--text-font-weight: var(--select-list-item-font-weight);
|
|
3774
|
+
--text-font-size: var(--select-list-item-font-size);
|
|
3775
|
+
--text-letter-spacing: var(--select-list-item-letter-spacing);
|
|
3776
|
+
--text-line-height: var(--select-list-item-line-height);
|
|
3777
|
+
font-family: var(--select-list-item-font-family);
|
|
3778
|
+
font-size: var(--select-list-item-font-size);
|
|
3779
|
+
font-weight: var(--select-list-item-font-weight);
|
|
3780
|
+
line-height: var(--select-list-item-line-height);
|
|
3781
|
+
letter-spacing: var(--select-list-item-letter-spacing);
|
|
3782
|
+
}
|
|
3585
3783
|
.Option-module_option__EOKym .Option-module_content__jLIAJ {
|
|
3586
3784
|
width: 100%;
|
|
3587
3785
|
}
|
|
@@ -4196,6 +4394,19 @@ span.flatpickr-weekday {
|
|
|
4196
4394
|
height: var(--table-cell-height);
|
|
4197
4395
|
background-color: var(--table-cell-background-color);
|
|
4198
4396
|
}
|
|
4397
|
+
|
|
4398
|
+
.TableCell-module_text__um8md {
|
|
4399
|
+
--text-font-family: var(--table-cell-font-family);
|
|
4400
|
+
--text-font-weight: var(--table-cell-font-weight);
|
|
4401
|
+
--text-font-size: var(--table-cell-font-size);
|
|
4402
|
+
--text-letter-spacing: var(--table-cell-letter-spacing);
|
|
4403
|
+
--text-line-height: var(--table-cell-line-height);
|
|
4404
|
+
font-family: var(--table-cell-font-family);
|
|
4405
|
+
font-size: var(--table-cell-font-size);
|
|
4406
|
+
font-weight: var(--table-cell-font-weight);
|
|
4407
|
+
line-height: var(--table-cell-line-height);
|
|
4408
|
+
letter-spacing: var(--table-cell-letter-spacing);
|
|
4409
|
+
}
|
|
4199
4410
|
.TableHeader-module_tableHeader__6OHNZ {
|
|
4200
4411
|
border-top-width: var(--table-header-border-top-width);
|
|
4201
4412
|
border-right-width: var(--table-header-border-right-width);
|
|
@@ -4252,6 +4463,18 @@ span.flatpickr-weekday {
|
|
|
4252
4463
|
height: var(--table-header-cell-height);
|
|
4253
4464
|
background-color: var(--table-header-cell-background-color);
|
|
4254
4465
|
}
|
|
4466
|
+
|
|
4467
|
+
.TableHeaderCell-module_text__lOhG2 {
|
|
4468
|
+
--text-font-family: var(--table-header-cell-font-family);
|
|
4469
|
+
--text-font-weight: var(--table-header-cell-font-weight);
|
|
4470
|
+
--text-font-size: var(--table-header-cell-font-size);
|
|
4471
|
+
--text-letter-spacing: var(--table-header-cell-letter-spacing);
|
|
4472
|
+
--text-line-height: var(--table-header-cell-line-height);
|
|
4473
|
+
font-size: var(--table-header-cell-font-size);
|
|
4474
|
+
font-weight: var(--table-header-cell-font-weight);
|
|
4475
|
+
line-height: var(--table-header-cell-line-height);
|
|
4476
|
+
letter-spacing: var(--table-header-cell-letter-spacing);
|
|
4477
|
+
}
|
|
4255
4478
|
.TableBody-module_tableBody__rw8Gr {
|
|
4256
4479
|
border-top-width: var(--table-body-border-top-width);
|
|
4257
4480
|
border-right-width: var(--table-body-border-right-width);
|
|
@@ -4402,6 +4625,18 @@ span.flatpickr-weekday {
|
|
|
4402
4625
|
outline-color: var(--tab-item-wrapper-outline-color);
|
|
4403
4626
|
background-color: var(--tab-item-wrapper-background-color);
|
|
4404
4627
|
}
|
|
4628
|
+
.TabItem-module_tabItem__--dM- .TabItem-module_text__Aq8pU {
|
|
4629
|
+
--text-font-family: var(--tab-item-font-family);
|
|
4630
|
+
--text-font-weight: var(--tab-item-font-weight);
|
|
4631
|
+
--text-font-size: var(--tab-item-font-size);
|
|
4632
|
+
--text-letter-spacing: var(--tab-item-letter-spacing);
|
|
4633
|
+
--text-line-height: var(--tab-item-line-height);
|
|
4634
|
+
font-family: var(--tab-item-font-family);
|
|
4635
|
+
font-size: var(--tab-item-font-size);
|
|
4636
|
+
font-weight: var(--tab-item-font-weight);
|
|
4637
|
+
line-height: var(--tab-item-line-height);
|
|
4638
|
+
letter-spacing: var(--tab-item-letter-spacing);
|
|
4639
|
+
}
|
|
4405
4640
|
.TabItem-module_tabItem__--dM- .TabItem-module_underline__MVnHi {
|
|
4406
4641
|
width: var(--tab-item-underline-width);
|
|
4407
4642
|
height: var(--tab-item-underline-height);
|
|
@@ -23245,6 +23480,654 @@ span.flatpickr-weekday {
|
|
|
23245
23480
|
--tooltip-paragraph-spacing: 0px;
|
|
23246
23481
|
--tooltip-paragraph-indent: 0px
|
|
23247
23482
|
}
|
|
23483
|
+
[data-theme='dark'] [component-variant="tooltip-center-top-outlined"], [data-theme='light'] [component-variant="tooltip-center-top-outlined"] {
|
|
23484
|
+
--tooltip-content-width: auto;
|
|
23485
|
+
--tooltip-content-background-color: var(--surface-background-6);
|
|
23486
|
+
--tooltip-content-border-top-left-radius: var(--corner-radius-extra-small);
|
|
23487
|
+
--tooltip-content-border-top-right-radius: var(--corner-radius-extra-small);
|
|
23488
|
+
--tooltip-content-border-bottom-left-radius: var(--corner-radius-extra-small);
|
|
23489
|
+
--tooltip-content-border-bottom-right-radius: var(--corner-radius-extra-small);
|
|
23490
|
+
--tooltip-content-outline-color: var(--border-border-grey-2);
|
|
23491
|
+
--tooltip-content-outline-width: 1px;
|
|
23492
|
+
--tooltip-content-padding-left: var(--spacing-space-5);
|
|
23493
|
+
--tooltip-content-padding-right: var(--spacing-space-5);
|
|
23494
|
+
--tooltip-content-padding-top: var(--spacing-space-5);
|
|
23495
|
+
--tooltip-content-padding-bottom: var(--spacing-space-5);
|
|
23496
|
+
--tooltip-content-font-family: var(--font-family-body);
|
|
23497
|
+
--tooltip-content-font-size: var(--font-size-body-small);
|
|
23498
|
+
--tooltip-content-font-weight: var(--font-weight-medium);
|
|
23499
|
+
--tooltip-content-line-height: var(--line-height-body-small);
|
|
23500
|
+
--tooltip-content-paragraph-spacing: 0px;
|
|
23501
|
+
--tooltip-content-paragraph-indent: 0px
|
|
23502
|
+
}
|
|
23503
|
+
[data-theme='dark'] [component-variant="tooltip-center-top-default"], [data-theme='light'] [component-variant="tooltip-center-top-default"] {
|
|
23504
|
+
--tooltip-content-width: auto;
|
|
23505
|
+
--tooltip-content-background-color: var(--surface-background-6);
|
|
23506
|
+
--tooltip-content-border-top-left-radius: var(--corner-radius-extra-small);
|
|
23507
|
+
--tooltip-content-border-top-right-radius: var(--corner-radius-extra-small);
|
|
23508
|
+
--tooltip-content-border-bottom-left-radius: var(--corner-radius-extra-small);
|
|
23509
|
+
--tooltip-content-border-bottom-right-radius: var(--corner-radius-extra-small);
|
|
23510
|
+
--tooltip-content-padding-left: var(--spacing-space-5);
|
|
23511
|
+
--tooltip-content-padding-right: var(--spacing-space-5);
|
|
23512
|
+
--tooltip-content-padding-top: var(--spacing-space-5);
|
|
23513
|
+
--tooltip-content-padding-bottom: var(--spacing-space-5);
|
|
23514
|
+
--tooltip-content-font-family: var(--font-family-body);
|
|
23515
|
+
--tooltip-content-font-size: var(--font-size-body-small);
|
|
23516
|
+
--tooltip-content-font-weight: var(--font-weight-medium);
|
|
23517
|
+
--tooltip-content-line-height: var(--line-height-body-small);
|
|
23518
|
+
--tooltip-content-paragraph-spacing: 0px;
|
|
23519
|
+
--tooltip-content-paragraph-indent: 0px
|
|
23520
|
+
}
|
|
23521
|
+
[data-theme='dark'] [component-variant="tooltip-center-bottom-outlined"], [data-theme='light'] [component-variant="tooltip-center-bottom-outlined"] {
|
|
23522
|
+
--tooltip-content-width: auto;
|
|
23523
|
+
--tooltip-content-background-color: var(--surface-background-6);
|
|
23524
|
+
--tooltip-content-border-top-left-radius: var(--corner-radius-extra-small);
|
|
23525
|
+
--tooltip-content-border-top-right-radius: var(--corner-radius-extra-small);
|
|
23526
|
+
--tooltip-content-border-bottom-left-radius: var(--corner-radius-extra-small);
|
|
23527
|
+
--tooltip-content-border-bottom-right-radius: var(--corner-radius-extra-small);
|
|
23528
|
+
--tooltip-content-outline-color: var(--border-border-grey-2);
|
|
23529
|
+
--tooltip-content-outline-width: 1px;
|
|
23530
|
+
--tooltip-content-padding-left: var(--spacing-space-5);
|
|
23531
|
+
--tooltip-content-padding-right: var(--spacing-space-5);
|
|
23532
|
+
--tooltip-content-padding-top: var(--spacing-space-5);
|
|
23533
|
+
--tooltip-content-padding-bottom: var(--spacing-space-5);
|
|
23534
|
+
--tooltip-content-font-family: var(--font-family-body);
|
|
23535
|
+
--tooltip-content-font-size: var(--font-size-body-small);
|
|
23536
|
+
--tooltip-content-font-weight: var(--font-weight-medium);
|
|
23537
|
+
--tooltip-content-line-height: var(--line-height-body-small);
|
|
23538
|
+
--tooltip-content-paragraph-spacing: 0px;
|
|
23539
|
+
--tooltip-content-paragraph-indent: 0px
|
|
23540
|
+
}
|
|
23541
|
+
[data-theme='dark'] [component-variant="tooltip-center-right-outlined"], [data-theme='light'] [component-variant="tooltip-center-right-outlined"] {
|
|
23542
|
+
--tooltip-content-width: 141px;
|
|
23543
|
+
--tooltip-content-background-color: var(--surface-background-6);
|
|
23544
|
+
--tooltip-content-border-top-left-radius: var(--corner-radius-extra-small);
|
|
23545
|
+
--tooltip-content-border-top-right-radius: var(--corner-radius-extra-small);
|
|
23546
|
+
--tooltip-content-border-bottom-left-radius: var(--corner-radius-extra-small);
|
|
23547
|
+
--tooltip-content-border-bottom-right-radius: var(--corner-radius-extra-small);
|
|
23548
|
+
--tooltip-content-outline-color: var(--border-border-grey-2);
|
|
23549
|
+
--tooltip-content-outline-width: 1px;
|
|
23550
|
+
--tooltip-content-padding-left: var(--spacing-space-5);
|
|
23551
|
+
--tooltip-content-padding-right: var(--spacing-space-5);
|
|
23552
|
+
--tooltip-content-padding-top: var(--spacing-space-5);
|
|
23553
|
+
--tooltip-content-padding-bottom: var(--spacing-space-5);
|
|
23554
|
+
--tooltip-content-font-family: var(--font-family-body);
|
|
23555
|
+
--tooltip-content-font-size: var(--font-size-body-small);
|
|
23556
|
+
--tooltip-content-font-weight: var(--font-weight-medium);
|
|
23557
|
+
--tooltip-content-line-height: var(--line-height-body-small);
|
|
23558
|
+
--tooltip-content-paragraph-spacing: 0px;
|
|
23559
|
+
--tooltip-content-paragraph-indent: 0px
|
|
23560
|
+
}
|
|
23561
|
+
[data-theme='dark'] [component-variant="tooltip-center-right-default"], [data-theme='light'] [component-variant="tooltip-center-right-default"] {
|
|
23562
|
+
--tooltip-content-width: 141px;
|
|
23563
|
+
--tooltip-content-background-color: var(--surface-background-6);
|
|
23564
|
+
--tooltip-content-border-top-left-radius: var(--corner-radius-extra-small);
|
|
23565
|
+
--tooltip-content-border-top-right-radius: var(--corner-radius-extra-small);
|
|
23566
|
+
--tooltip-content-border-bottom-left-radius: var(--corner-radius-extra-small);
|
|
23567
|
+
--tooltip-content-border-bottom-right-radius: var(--corner-radius-extra-small);
|
|
23568
|
+
--tooltip-content-padding-left: var(--spacing-space-5);
|
|
23569
|
+
--tooltip-content-padding-right: var(--spacing-space-5);
|
|
23570
|
+
--tooltip-content-padding-top: var(--spacing-space-5);
|
|
23571
|
+
--tooltip-content-padding-bottom: var(--spacing-space-5);
|
|
23572
|
+
--tooltip-content-font-family: var(--font-family-body);
|
|
23573
|
+
--tooltip-content-font-size: var(--font-size-body-small);
|
|
23574
|
+
--tooltip-content-font-weight: var(--font-weight-medium);
|
|
23575
|
+
--tooltip-content-line-height: var(--line-height-body-small);
|
|
23576
|
+
--tooltip-content-paragraph-spacing: 0px;
|
|
23577
|
+
--tooltip-content-paragraph-indent: 0px
|
|
23578
|
+
}
|
|
23579
|
+
[data-theme='dark'] [component-variant="tooltip-center-left-outlined"], [data-theme='light'] [component-variant="tooltip-center-left-outlined"] {
|
|
23580
|
+
--tooltip-content-width: 141px;
|
|
23581
|
+
--tooltip-content-background-color: var(--surface-background-6);
|
|
23582
|
+
--tooltip-content-border-top-left-radius: var(--corner-radius-extra-small);
|
|
23583
|
+
--tooltip-content-border-top-right-radius: var(--corner-radius-extra-small);
|
|
23584
|
+
--tooltip-content-border-bottom-left-radius: var(--corner-radius-extra-small);
|
|
23585
|
+
--tooltip-content-border-bottom-right-radius: var(--corner-radius-extra-small);
|
|
23586
|
+
--tooltip-content-outline-color: var(--border-border-grey-2);
|
|
23587
|
+
--tooltip-content-outline-width: 1px;
|
|
23588
|
+
--tooltip-content-padding-left: var(--spacing-space-5);
|
|
23589
|
+
--tooltip-content-padding-right: var(--spacing-space-5);
|
|
23590
|
+
--tooltip-content-padding-top: var(--spacing-space-5);
|
|
23591
|
+
--tooltip-content-padding-bottom: var(--spacing-space-5);
|
|
23592
|
+
--tooltip-content-font-family: var(--font-family-body);
|
|
23593
|
+
--tooltip-content-font-size: var(--font-size-body-small);
|
|
23594
|
+
--tooltip-content-font-weight: var(--font-weight-medium);
|
|
23595
|
+
--tooltip-content-line-height: var(--line-height-body-small);
|
|
23596
|
+
--tooltip-content-paragraph-spacing: 0px;
|
|
23597
|
+
--tooltip-content-paragraph-indent: 0px
|
|
23598
|
+
}
|
|
23599
|
+
[data-theme='dark'] [component-variant="tooltip-center-left-default"], [data-theme='light'] [component-variant="tooltip-center-left-default"] {
|
|
23600
|
+
--tooltip-content-width: 141px;
|
|
23601
|
+
--tooltip-content-background-color: var(--surface-background-6);
|
|
23602
|
+
--tooltip-content-border-top-left-radius: var(--corner-radius-extra-small);
|
|
23603
|
+
--tooltip-content-border-top-right-radius: var(--corner-radius-extra-small);
|
|
23604
|
+
--tooltip-content-border-bottom-left-radius: var(--corner-radius-extra-small);
|
|
23605
|
+
--tooltip-content-border-bottom-right-radius: var(--corner-radius-extra-small);
|
|
23606
|
+
--tooltip-content-padding-left: var(--spacing-space-5);
|
|
23607
|
+
--tooltip-content-padding-right: var(--spacing-space-5);
|
|
23608
|
+
--tooltip-content-padding-top: var(--spacing-space-5);
|
|
23609
|
+
--tooltip-content-padding-bottom: var(--spacing-space-5);
|
|
23610
|
+
--tooltip-content-font-family: var(--font-family-body);
|
|
23611
|
+
--tooltip-content-font-size: var(--font-size-body-small);
|
|
23612
|
+
--tooltip-content-font-weight: var(--font-weight-medium);
|
|
23613
|
+
--tooltip-content-line-height: var(--line-height-body-small);
|
|
23614
|
+
--tooltip-content-paragraph-spacing: 0px;
|
|
23615
|
+
--tooltip-content-paragraph-indent: 0px
|
|
23616
|
+
}
|
|
23617
|
+
[data-theme='dark'] [component-variant="tooltip-bottom-left-outlined"], [data-theme='light'] [component-variant="tooltip-bottom-left-outlined"] {
|
|
23618
|
+
--tooltip-content-width: 141px;
|
|
23619
|
+
--tooltip-content-background-color: var(--surface-background-6);
|
|
23620
|
+
--tooltip-content-border-top-left-radius: var(--corner-radius-extra-small);
|
|
23621
|
+
--tooltip-content-border-top-right-radius: var(--corner-radius-extra-small);
|
|
23622
|
+
--tooltip-content-border-bottom-left-radius: var(--corner-radius-extra-small);
|
|
23623
|
+
--tooltip-content-border-bottom-right-radius: var(--corner-radius-extra-small);
|
|
23624
|
+
--tooltip-content-outline-color: var(--border-border-grey-2);
|
|
23625
|
+
--tooltip-content-outline-width: 1px;
|
|
23626
|
+
--tooltip-content-padding-left: var(--spacing-space-5);
|
|
23627
|
+
--tooltip-content-padding-right: var(--spacing-space-5);
|
|
23628
|
+
--tooltip-content-padding-top: var(--spacing-space-5);
|
|
23629
|
+
--tooltip-content-padding-bottom: var(--spacing-space-5);
|
|
23630
|
+
--tooltip-content-font-family: var(--font-family-body);
|
|
23631
|
+
--tooltip-content-font-size: var(--font-size-body-small);
|
|
23632
|
+
--tooltip-content-font-weight: var(--font-weight-medium);
|
|
23633
|
+
--tooltip-content-line-height: var(--line-height-body-small);
|
|
23634
|
+
--tooltip-content-paragraph-spacing: 0px;
|
|
23635
|
+
--tooltip-content-paragraph-indent: 0px
|
|
23636
|
+
}
|
|
23637
|
+
[data-theme='dark'] [component-variant="tooltip-bottom-left-default"], [data-theme='light'] [component-variant="tooltip-bottom-left-default"] {
|
|
23638
|
+
--tooltip-content-width: 141px;
|
|
23639
|
+
--tooltip-content-background-color: var(--surface-background-6);
|
|
23640
|
+
--tooltip-content-border-top-left-radius: var(--corner-radius-extra-small);
|
|
23641
|
+
--tooltip-content-border-top-right-radius: var(--corner-radius-extra-small);
|
|
23642
|
+
--tooltip-content-border-bottom-left-radius: var(--corner-radius-extra-small);
|
|
23643
|
+
--tooltip-content-border-bottom-right-radius: var(--corner-radius-extra-small);
|
|
23644
|
+
--tooltip-content-padding-left: var(--spacing-space-5);
|
|
23645
|
+
--tooltip-content-padding-right: var(--spacing-space-5);
|
|
23646
|
+
--tooltip-content-padding-top: var(--spacing-space-5);
|
|
23647
|
+
--tooltip-content-padding-bottom: var(--spacing-space-5);
|
|
23648
|
+
--tooltip-content-font-family: var(--font-family-body);
|
|
23649
|
+
--tooltip-content-font-size: var(--font-size-body-small);
|
|
23650
|
+
--tooltip-content-font-weight: var(--font-weight-medium);
|
|
23651
|
+
--tooltip-content-line-height: var(--line-height-body-small);
|
|
23652
|
+
--tooltip-content-paragraph-spacing: 0px;
|
|
23653
|
+
--tooltip-content-paragraph-indent: 0px
|
|
23654
|
+
}
|
|
23655
|
+
[data-theme='dark'] [component-variant="tooltip-top-left-outlined"], [data-theme='light'] [component-variant="tooltip-top-left-outlined"] {
|
|
23656
|
+
--tooltip-content-width: 141px;
|
|
23657
|
+
--tooltip-content-background-color: var(--surface-background-6);
|
|
23658
|
+
--tooltip-content-border-top-left-radius: var(--corner-radius-extra-small);
|
|
23659
|
+
--tooltip-content-border-top-right-radius: var(--corner-radius-extra-small);
|
|
23660
|
+
--tooltip-content-border-bottom-left-radius: var(--corner-radius-extra-small);
|
|
23661
|
+
--tooltip-content-border-bottom-right-radius: var(--corner-radius-extra-small);
|
|
23662
|
+
--tooltip-content-outline-color: var(--border-border-grey-2);
|
|
23663
|
+
--tooltip-content-outline-width: 1px;
|
|
23664
|
+
--tooltip-content-padding-left: var(--spacing-space-5);
|
|
23665
|
+
--tooltip-content-padding-right: var(--spacing-space-5);
|
|
23666
|
+
--tooltip-content-padding-top: var(--spacing-space-5);
|
|
23667
|
+
--tooltip-content-padding-bottom: var(--spacing-space-5);
|
|
23668
|
+
--tooltip-content-font-family: var(--font-family-body);
|
|
23669
|
+
--tooltip-content-font-size: var(--font-size-body-small);
|
|
23670
|
+
--tooltip-content-font-weight: var(--font-weight-medium);
|
|
23671
|
+
--tooltip-content-line-height: var(--line-height-body-small);
|
|
23672
|
+
--tooltip-content-paragraph-spacing: 0px;
|
|
23673
|
+
--tooltip-content-paragraph-indent: 0px
|
|
23674
|
+
}
|
|
23675
|
+
[data-theme='dark'] [component-variant="tooltip-top-left-default"], [data-theme='light'] [component-variant="tooltip-top-left-default"] {
|
|
23676
|
+
--tooltip-content-width: 141px;
|
|
23677
|
+
--tooltip-content-background-color: var(--surface-background-6);
|
|
23678
|
+
--tooltip-content-border-top-left-radius: var(--corner-radius-extra-small);
|
|
23679
|
+
--tooltip-content-border-top-right-radius: var(--corner-radius-extra-small);
|
|
23680
|
+
--tooltip-content-border-bottom-left-radius: var(--corner-radius-extra-small);
|
|
23681
|
+
--tooltip-content-border-bottom-right-radius: var(--corner-radius-extra-small);
|
|
23682
|
+
--tooltip-content-padding-left: var(--spacing-space-5);
|
|
23683
|
+
--tooltip-content-padding-right: var(--spacing-space-5);
|
|
23684
|
+
--tooltip-content-padding-top: var(--spacing-space-5);
|
|
23685
|
+
--tooltip-content-padding-bottom: var(--spacing-space-5);
|
|
23686
|
+
--tooltip-content-font-family: var(--font-family-body);
|
|
23687
|
+
--tooltip-content-font-size: var(--font-size-body-small);
|
|
23688
|
+
--tooltip-content-font-weight: var(--font-weight-medium);
|
|
23689
|
+
--tooltip-content-line-height: var(--line-height-body-small);
|
|
23690
|
+
--tooltip-content-paragraph-spacing: 0px;
|
|
23691
|
+
--tooltip-content-paragraph-indent: 0px
|
|
23692
|
+
}
|
|
23693
|
+
[data-theme='dark'] [component-variant="tooltip-bottom-right-outlined"], [data-theme='light'] [component-variant="tooltip-bottom-right-outlined"] {
|
|
23694
|
+
--tooltip-content-width: 141px;
|
|
23695
|
+
--tooltip-content-background-color: var(--surface-background-6);
|
|
23696
|
+
--tooltip-content-border-top-left-radius: var(--corner-radius-extra-small);
|
|
23697
|
+
--tooltip-content-border-top-right-radius: var(--corner-radius-extra-small);
|
|
23698
|
+
--tooltip-content-border-bottom-left-radius: var(--corner-radius-extra-small);
|
|
23699
|
+
--tooltip-content-border-bottom-right-radius: var(--corner-radius-extra-small);
|
|
23700
|
+
--tooltip-content-outline-color: var(--border-border-grey-2);
|
|
23701
|
+
--tooltip-content-outline-width: 1px;
|
|
23702
|
+
--tooltip-content-padding-left: var(--spacing-space-5);
|
|
23703
|
+
--tooltip-content-padding-right: var(--spacing-space-5);
|
|
23704
|
+
--tooltip-content-padding-top: var(--spacing-space-5);
|
|
23705
|
+
--tooltip-content-padding-bottom: var(--spacing-space-5);
|
|
23706
|
+
--tooltip-content-font-family: var(--font-family-body);
|
|
23707
|
+
--tooltip-content-font-size: var(--font-size-body-small);
|
|
23708
|
+
--tooltip-content-font-weight: var(--font-weight-medium);
|
|
23709
|
+
--tooltip-content-line-height: var(--line-height-body-small);
|
|
23710
|
+
--tooltip-content-paragraph-spacing: 0px;
|
|
23711
|
+
--tooltip-content-paragraph-indent: 0px
|
|
23712
|
+
}
|
|
23713
|
+
[data-theme='dark'] [component-variant="tooltip-bottom-right-default"], [data-theme='light'] [component-variant="tooltip-bottom-right-default"] {
|
|
23714
|
+
--tooltip-content-width: 141px;
|
|
23715
|
+
--tooltip-content-background-color: var(--surface-background-6);
|
|
23716
|
+
--tooltip-content-border-top-left-radius: var(--corner-radius-extra-small);
|
|
23717
|
+
--tooltip-content-border-top-right-radius: var(--corner-radius-extra-small);
|
|
23718
|
+
--tooltip-content-border-bottom-left-radius: var(--corner-radius-extra-small);
|
|
23719
|
+
--tooltip-content-border-bottom-right-radius: var(--corner-radius-extra-small);
|
|
23720
|
+
--tooltip-content-padding-left: var(--spacing-space-5);
|
|
23721
|
+
--tooltip-content-padding-right: var(--spacing-space-5);
|
|
23722
|
+
--tooltip-content-padding-top: var(--spacing-space-5);
|
|
23723
|
+
--tooltip-content-padding-bottom: var(--spacing-space-5);
|
|
23724
|
+
--tooltip-content-font-family: var(--font-family-body);
|
|
23725
|
+
--tooltip-content-font-size: var(--font-size-body-small);
|
|
23726
|
+
--tooltip-content-font-weight: var(--font-weight-medium);
|
|
23727
|
+
--tooltip-content-line-height: var(--line-height-body-small);
|
|
23728
|
+
--tooltip-content-paragraph-spacing: 0px;
|
|
23729
|
+
--tooltip-content-paragraph-indent: 0px
|
|
23730
|
+
}
|
|
23731
|
+
[data-theme='dark'] [component-variant="tooltip-top-right-outlined"], [data-theme='light'] [component-variant="tooltip-top-right-outlined"] {
|
|
23732
|
+
--tooltip-content-width: 141px;
|
|
23733
|
+
--tooltip-content-background-color: var(--surface-background-6);
|
|
23734
|
+
--tooltip-content-border-top-left-radius: var(--corner-radius-extra-small);
|
|
23735
|
+
--tooltip-content-border-top-right-radius: var(--corner-radius-extra-small);
|
|
23736
|
+
--tooltip-content-border-bottom-left-radius: var(--corner-radius-extra-small);
|
|
23737
|
+
--tooltip-content-border-bottom-right-radius: var(--corner-radius-extra-small);
|
|
23738
|
+
--tooltip-content-outline-color: var(--border-border-grey-2);
|
|
23739
|
+
--tooltip-content-outline-width: 1px;
|
|
23740
|
+
--tooltip-content-padding-left: var(--spacing-space-5);
|
|
23741
|
+
--tooltip-content-padding-right: var(--spacing-space-5);
|
|
23742
|
+
--tooltip-content-padding-top: var(--spacing-space-5);
|
|
23743
|
+
--tooltip-content-padding-bottom: var(--spacing-space-5);
|
|
23744
|
+
--tooltip-content-font-family: var(--font-family-body);
|
|
23745
|
+
--tooltip-content-font-size: var(--font-size-body-small);
|
|
23746
|
+
--tooltip-content-font-weight: var(--font-weight-medium);
|
|
23747
|
+
--tooltip-content-line-height: var(--line-height-body-small);
|
|
23748
|
+
--tooltip-content-paragraph-spacing: 0px;
|
|
23749
|
+
--tooltip-content-paragraph-indent: 0px
|
|
23750
|
+
}
|
|
23751
|
+
[data-theme='dark'] [component-variant="tooltip-top-right-default"], [data-theme='light'] [component-variant="tooltip-top-right-default"] {
|
|
23752
|
+
--tooltip-content-width: 141px;
|
|
23753
|
+
--tooltip-content-background-color: var(--surface-background-6);
|
|
23754
|
+
--tooltip-content-border-top-left-radius: var(--corner-radius-extra-small);
|
|
23755
|
+
--tooltip-content-border-top-right-radius: var(--corner-radius-extra-small);
|
|
23756
|
+
--tooltip-content-border-bottom-left-radius: var(--corner-radius-extra-small);
|
|
23757
|
+
--tooltip-content-border-bottom-right-radius: var(--corner-radius-extra-small);
|
|
23758
|
+
--tooltip-content-padding-left: var(--spacing-space-5);
|
|
23759
|
+
--tooltip-content-padding-right: var(--spacing-space-5);
|
|
23760
|
+
--tooltip-content-padding-top: var(--spacing-space-5);
|
|
23761
|
+
--tooltip-content-padding-bottom: var(--spacing-space-5);
|
|
23762
|
+
--tooltip-content-font-family: var(--font-family-body);
|
|
23763
|
+
--tooltip-content-font-size: var(--font-size-body-small);
|
|
23764
|
+
--tooltip-content-font-weight: var(--font-weight-medium);
|
|
23765
|
+
--tooltip-content-line-height: var(--line-height-body-small);
|
|
23766
|
+
--tooltip-content-paragraph-spacing: 0px;
|
|
23767
|
+
--tooltip-content-paragraph-indent: 0px
|
|
23768
|
+
}
|
|
23769
|
+
[data-theme='dark'] [component-variant="tooltip-center-bottom-default"], [data-theme='light'] [component-variant="tooltip-center-bottom-default"] {
|
|
23770
|
+
--tooltip-content-width: auto;
|
|
23771
|
+
--tooltip-content-background-color: var(--surface-background-6);
|
|
23772
|
+
--tooltip-content-border-top-left-radius: var(--corner-radius-extra-small);
|
|
23773
|
+
--tooltip-content-border-top-right-radius: var(--corner-radius-extra-small);
|
|
23774
|
+
--tooltip-content-border-bottom-left-radius: var(--corner-radius-extra-small);
|
|
23775
|
+
--tooltip-content-border-bottom-right-radius: var(--corner-radius-extra-small);
|
|
23776
|
+
--tooltip-content-padding-left: var(--spacing-space-5);
|
|
23777
|
+
--tooltip-content-padding-right: var(--spacing-space-5);
|
|
23778
|
+
--tooltip-content-padding-top: var(--spacing-space-5);
|
|
23779
|
+
--tooltip-content-padding-bottom: var(--spacing-space-5);
|
|
23780
|
+
--tooltip-content-font-family: var(--font-family-body);
|
|
23781
|
+
--tooltip-content-font-size: var(--font-size-body-small);
|
|
23782
|
+
--tooltip-content-font-weight: var(--font-weight-medium);
|
|
23783
|
+
--tooltip-content-line-height: var(--line-height-body-small);
|
|
23784
|
+
--tooltip-content-paragraph-spacing: 0px;
|
|
23785
|
+
--tooltip-content-paragraph-indent: 0px
|
|
23786
|
+
}
|
|
23787
|
+
[data-theme='dark'] [component-variant="tooltip-start-top-outlined"], [data-theme='light'] [component-variant="tooltip-start-top-outlined"] {
|
|
23788
|
+
--tooltip-content-width: auto;
|
|
23789
|
+
--tooltip-content-background-color: var(--surface-background-6);
|
|
23790
|
+
--tooltip-content-border-top-left-radius: var(--corner-radius-extra-small);
|
|
23791
|
+
--tooltip-content-border-top-right-radius: var(--corner-radius-extra-small);
|
|
23792
|
+
--tooltip-content-border-bottom-left-radius: var(--corner-radius-extra-small);
|
|
23793
|
+
--tooltip-content-border-bottom-right-radius: var(--corner-radius-extra-small);
|
|
23794
|
+
--tooltip-content-outline-color: var(--border-border-grey-2);
|
|
23795
|
+
--tooltip-content-outline-width: 1px;
|
|
23796
|
+
--tooltip-content-padding-left: var(--spacing-space-5);
|
|
23797
|
+
--tooltip-content-padding-right: var(--spacing-space-5);
|
|
23798
|
+
--tooltip-content-padding-top: var(--spacing-space-5);
|
|
23799
|
+
--tooltip-content-padding-bottom: var(--spacing-space-5);
|
|
23800
|
+
--tooltip-content-font-family: var(--font-family-body);
|
|
23801
|
+
--tooltip-content-font-size: var(--font-size-body-small);
|
|
23802
|
+
--tooltip-content-font-weight: var(--font-weight-medium);
|
|
23803
|
+
--tooltip-content-line-height: var(--line-height-body-small);
|
|
23804
|
+
--tooltip-content-paragraph-spacing: 0px;
|
|
23805
|
+
--tooltip-content-paragraph-indent: 0px
|
|
23806
|
+
}
|
|
23807
|
+
[data-theme='dark'] [component-variant="tooltip-start-top-default"], [data-theme='light'] [component-variant="tooltip-start-top-default"] {
|
|
23808
|
+
--tooltip-content-width: auto;
|
|
23809
|
+
--tooltip-content-background-color: var(--surface-background-6);
|
|
23810
|
+
--tooltip-content-border-top-left-radius: var(--corner-radius-extra-small);
|
|
23811
|
+
--tooltip-content-border-top-right-radius: var(--corner-radius-extra-small);
|
|
23812
|
+
--tooltip-content-border-bottom-left-radius: var(--corner-radius-extra-small);
|
|
23813
|
+
--tooltip-content-border-bottom-right-radius: var(--corner-radius-extra-small);
|
|
23814
|
+
--tooltip-content-padding-left: var(--spacing-space-5);
|
|
23815
|
+
--tooltip-content-padding-right: var(--spacing-space-5);
|
|
23816
|
+
--tooltip-content-padding-top: var(--spacing-space-5);
|
|
23817
|
+
--tooltip-content-padding-bottom: var(--spacing-space-5);
|
|
23818
|
+
--tooltip-content-font-family: var(--font-family-body);
|
|
23819
|
+
--tooltip-content-font-size: var(--font-size-body-small);
|
|
23820
|
+
--tooltip-content-font-weight: var(--font-weight-medium);
|
|
23821
|
+
--tooltip-content-line-height: var(--line-height-body-small);
|
|
23822
|
+
--tooltip-content-paragraph-spacing: 0px;
|
|
23823
|
+
--tooltip-content-paragraph-indent: 0px
|
|
23824
|
+
}
|
|
23825
|
+
[data-theme='dark'] [component-variant="tooltip-start-bottom-outlined"], [data-theme='light'] [component-variant="tooltip-start-bottom-outlined"] {
|
|
23826
|
+
--tooltip-content-width: auto;
|
|
23827
|
+
--tooltip-content-background-color: var(--surface-background-6);
|
|
23828
|
+
--tooltip-content-border-top-left-radius: var(--corner-radius-extra-small);
|
|
23829
|
+
--tooltip-content-border-top-right-radius: var(--corner-radius-extra-small);
|
|
23830
|
+
--tooltip-content-border-bottom-left-radius: var(--corner-radius-extra-small);
|
|
23831
|
+
--tooltip-content-border-bottom-right-radius: var(--corner-radius-extra-small);
|
|
23832
|
+
--tooltip-content-outline-color: var(--border-border-grey-2);
|
|
23833
|
+
--tooltip-content-outline-width: 1px;
|
|
23834
|
+
--tooltip-content-padding-left: var(--spacing-space-5);
|
|
23835
|
+
--tooltip-content-padding-right: var(--spacing-space-5);
|
|
23836
|
+
--tooltip-content-padding-top: var(--spacing-space-5);
|
|
23837
|
+
--tooltip-content-padding-bottom: var(--spacing-space-5);
|
|
23838
|
+
--tooltip-content-font-family: var(--font-family-body);
|
|
23839
|
+
--tooltip-content-font-size: var(--font-size-body-small);
|
|
23840
|
+
--tooltip-content-font-weight: var(--font-weight-medium);
|
|
23841
|
+
--tooltip-content-line-height: var(--line-height-body-small);
|
|
23842
|
+
--tooltip-content-paragraph-spacing: 0px;
|
|
23843
|
+
--tooltip-content-paragraph-indent: 0px
|
|
23844
|
+
}
|
|
23845
|
+
[data-theme='dark'] [component-variant="tooltip-start-bottom-default"], [data-theme='light'] [component-variant="tooltip-start-bottom-default"] {
|
|
23846
|
+
--tooltip-content-width: auto;
|
|
23847
|
+
--tooltip-content-background-color: var(--surface-background-6);
|
|
23848
|
+
--tooltip-content-border-top-left-radius: var(--corner-radius-extra-small);
|
|
23849
|
+
--tooltip-content-border-top-right-radius: var(--corner-radius-extra-small);
|
|
23850
|
+
--tooltip-content-border-bottom-left-radius: var(--corner-radius-extra-small);
|
|
23851
|
+
--tooltip-content-border-bottom-right-radius: var(--corner-radius-extra-small);
|
|
23852
|
+
--tooltip-content-padding-left: var(--spacing-space-5);
|
|
23853
|
+
--tooltip-content-padding-right: var(--spacing-space-5);
|
|
23854
|
+
--tooltip-content-padding-top: var(--spacing-space-5);
|
|
23855
|
+
--tooltip-content-padding-bottom: var(--spacing-space-5);
|
|
23856
|
+
--tooltip-content-font-family: var(--font-family-body);
|
|
23857
|
+
--tooltip-content-font-size: var(--font-size-body-small);
|
|
23858
|
+
--tooltip-content-font-weight: var(--font-weight-medium);
|
|
23859
|
+
--tooltip-content-line-height: var(--line-height-body-small);
|
|
23860
|
+
--tooltip-content-paragraph-spacing: 0px;
|
|
23861
|
+
--tooltip-content-paragraph-indent: 0px
|
|
23862
|
+
}
|
|
23863
|
+
[data-theme='dark'] [component-variant="tooltip-end-top-default"], [data-theme='light'] [component-variant="tooltip-end-top-default"] {
|
|
23864
|
+
--tooltip-content-width: auto;
|
|
23865
|
+
--tooltip-content-background-color: var(--surface-background-6);
|
|
23866
|
+
--tooltip-content-border-top-left-radius: var(--corner-radius-extra-small);
|
|
23867
|
+
--tooltip-content-border-top-right-radius: var(--corner-radius-extra-small);
|
|
23868
|
+
--tooltip-content-border-bottom-left-radius: var(--corner-radius-extra-small);
|
|
23869
|
+
--tooltip-content-border-bottom-right-radius: var(--corner-radius-extra-small);
|
|
23870
|
+
--tooltip-content-padding-left: var(--spacing-space-5);
|
|
23871
|
+
--tooltip-content-padding-right: var(--spacing-space-5);
|
|
23872
|
+
--tooltip-content-padding-top: var(--spacing-space-5);
|
|
23873
|
+
--tooltip-content-padding-bottom: var(--spacing-space-5);
|
|
23874
|
+
--tooltip-content-font-family: var(--font-family-body);
|
|
23875
|
+
--tooltip-content-font-size: var(--font-size-body-small);
|
|
23876
|
+
--tooltip-content-font-weight: var(--font-weight-medium);
|
|
23877
|
+
--tooltip-content-line-height: var(--line-height-body-small);
|
|
23878
|
+
--tooltip-content-paragraph-spacing: 0px;
|
|
23879
|
+
--tooltip-content-paragraph-indent: 0px
|
|
23880
|
+
}
|
|
23881
|
+
[data-theme='dark'] [component-variant="tooltip-end-bottom-outlined"], [data-theme='light'] [component-variant="tooltip-end-bottom-outlined"] {
|
|
23882
|
+
--tooltip-content-width: auto;
|
|
23883
|
+
--tooltip-content-background-color: var(--surface-background-6);
|
|
23884
|
+
--tooltip-content-border-top-left-radius: var(--corner-radius-extra-small);
|
|
23885
|
+
--tooltip-content-border-top-right-radius: var(--corner-radius-extra-small);
|
|
23886
|
+
--tooltip-content-border-bottom-left-radius: var(--corner-radius-extra-small);
|
|
23887
|
+
--tooltip-content-border-bottom-right-radius: var(--corner-radius-extra-small);
|
|
23888
|
+
--tooltip-content-outline-color: var(--border-border-grey-2);
|
|
23889
|
+
--tooltip-content-outline-width: 1px;
|
|
23890
|
+
--tooltip-content-padding-left: var(--spacing-space-5);
|
|
23891
|
+
--tooltip-content-padding-right: var(--spacing-space-5);
|
|
23892
|
+
--tooltip-content-padding-top: var(--spacing-space-5);
|
|
23893
|
+
--tooltip-content-padding-bottom: var(--spacing-space-5);
|
|
23894
|
+
--tooltip-content-font-family: var(--font-family-body);
|
|
23895
|
+
--tooltip-content-font-size: var(--font-size-body-small);
|
|
23896
|
+
--tooltip-content-font-weight: var(--font-weight-medium);
|
|
23897
|
+
--tooltip-content-line-height: var(--line-height-body-small);
|
|
23898
|
+
--tooltip-content-paragraph-spacing: 0px;
|
|
23899
|
+
--tooltip-content-paragraph-indent: 0px
|
|
23900
|
+
}
|
|
23901
|
+
[data-theme='dark'] [component-variant="tooltip-end-bottom-default"], [data-theme='light'] [component-variant="tooltip-end-bottom-default"] {
|
|
23902
|
+
--tooltip-content-width: auto;
|
|
23903
|
+
--tooltip-content-background-color: var(--surface-background-6);
|
|
23904
|
+
--tooltip-content-border-top-left-radius: var(--corner-radius-extra-small);
|
|
23905
|
+
--tooltip-content-border-top-right-radius: var(--corner-radius-extra-small);
|
|
23906
|
+
--tooltip-content-border-bottom-left-radius: var(--corner-radius-extra-small);
|
|
23907
|
+
--tooltip-content-border-bottom-right-radius: var(--corner-radius-extra-small);
|
|
23908
|
+
--tooltip-content-padding-left: var(--spacing-space-5);
|
|
23909
|
+
--tooltip-content-padding-right: var(--spacing-space-5);
|
|
23910
|
+
--tooltip-content-padding-top: var(--spacing-space-5);
|
|
23911
|
+
--tooltip-content-padding-bottom: var(--spacing-space-5);
|
|
23912
|
+
--tooltip-content-font-family: var(--font-family-body);
|
|
23913
|
+
--tooltip-content-font-size: var(--font-size-body-small);
|
|
23914
|
+
--tooltip-content-font-weight: var(--font-weight-medium);
|
|
23915
|
+
--tooltip-content-line-height: var(--line-height-body-small);
|
|
23916
|
+
--tooltip-content-paragraph-spacing: 0px;
|
|
23917
|
+
--tooltip-content-paragraph-indent: 0px
|
|
23918
|
+
}
|
|
23919
|
+
[data-theme='dark'] [component-variant="tooltip-end-top-outlined"], [data-theme='light'] [component-variant="tooltip-end-top-outlined"] {
|
|
23920
|
+
--tooltip-content-width: auto;
|
|
23921
|
+
--tooltip-content-background-color: var(--surface-background-6);
|
|
23922
|
+
--tooltip-content-border-top-left-radius: var(--corner-radius-extra-small);
|
|
23923
|
+
--tooltip-content-border-top-right-radius: var(--corner-radius-extra-small);
|
|
23924
|
+
--tooltip-content-border-bottom-left-radius: var(--corner-radius-extra-small);
|
|
23925
|
+
--tooltip-content-border-bottom-right-radius: var(--corner-radius-extra-small);
|
|
23926
|
+
--tooltip-content-outline-color: var(--border-border-grey-2);
|
|
23927
|
+
--tooltip-content-outline-width: 1px;
|
|
23928
|
+
--tooltip-content-padding-left: var(--spacing-space-5);
|
|
23929
|
+
--tooltip-content-padding-right: var(--spacing-space-5);
|
|
23930
|
+
--tooltip-content-padding-top: var(--spacing-space-5);
|
|
23931
|
+
--tooltip-content-padding-bottom: var(--spacing-space-5);
|
|
23932
|
+
--tooltip-content-font-family: var(--font-family-body);
|
|
23933
|
+
--tooltip-content-font-size: var(--font-size-body-small);
|
|
23934
|
+
--tooltip-content-font-weight: var(--font-weight-medium);
|
|
23935
|
+
--tooltip-content-line-height: var(--line-height-body-small);
|
|
23936
|
+
--tooltip-content-paragraph-spacing: 0px;
|
|
23937
|
+
--tooltip-content-paragraph-indent: 0px
|
|
23938
|
+
}
|
|
23939
|
+
[data-theme='dark'] [component-variant="tooltip-center-top-outlined"], [data-theme='light'] [component-variant="tooltip-center-top-outlined"] {
|
|
23940
|
+
--tooltip-message-font-family: var(--font-family-body);
|
|
23941
|
+
--tooltip-message-font-size: var(--font-size-body-small);
|
|
23942
|
+
--tooltip-message-font-weight: var(--font-weight-medium);
|
|
23943
|
+
--tooltip-message-line-height: var(--line-height-body-small);
|
|
23944
|
+
--tooltip-message-paragraph-spacing: 0px;
|
|
23945
|
+
--tooltip-message-paragraph-indent: 0px
|
|
23946
|
+
}
|
|
23947
|
+
[data-theme='dark'] [component-variant="tooltip-center-top-default"], [data-theme='light'] [component-variant="tooltip-center-top-default"] {
|
|
23948
|
+
--tooltip-message-font-family: var(--font-family-body);
|
|
23949
|
+
--tooltip-message-font-size: var(--font-size-body-small);
|
|
23950
|
+
--tooltip-message-font-weight: var(--font-weight-medium);
|
|
23951
|
+
--tooltip-message-line-height: var(--line-height-body-small);
|
|
23952
|
+
--tooltip-message-paragraph-spacing: 0px;
|
|
23953
|
+
--tooltip-message-paragraph-indent: 0px
|
|
23954
|
+
}
|
|
23955
|
+
[data-theme='dark'] [component-variant="tooltip-center-bottom-outlined"], [data-theme='light'] [component-variant="tooltip-center-bottom-outlined"] {
|
|
23956
|
+
--tooltip-message-font-family: var(--font-family-body);
|
|
23957
|
+
--tooltip-message-font-size: var(--font-size-body-small);
|
|
23958
|
+
--tooltip-message-font-weight: var(--font-weight-medium);
|
|
23959
|
+
--tooltip-message-line-height: var(--line-height-body-small);
|
|
23960
|
+
--tooltip-message-paragraph-spacing: 0px;
|
|
23961
|
+
--tooltip-message-paragraph-indent: 0px
|
|
23962
|
+
}
|
|
23963
|
+
[data-theme='dark'] [component-variant="tooltip-center-right-outlined"], [data-theme='light'] [component-variant="tooltip-center-right-outlined"] {
|
|
23964
|
+
--tooltip-message-font-family: var(--font-family-body);
|
|
23965
|
+
--tooltip-message-font-size: var(--font-size-body-small);
|
|
23966
|
+
--tooltip-message-font-weight: var(--font-weight-medium);
|
|
23967
|
+
--tooltip-message-line-height: var(--line-height-body-small);
|
|
23968
|
+
--tooltip-message-paragraph-spacing: 0px;
|
|
23969
|
+
--tooltip-message-paragraph-indent: 0px
|
|
23970
|
+
}
|
|
23971
|
+
[data-theme='dark'] [component-variant="tooltip-center-right-default"], [data-theme='light'] [component-variant="tooltip-center-right-default"] {
|
|
23972
|
+
--tooltip-message-font-family: var(--font-family-body);
|
|
23973
|
+
--tooltip-message-font-size: var(--font-size-body-small);
|
|
23974
|
+
--tooltip-message-font-weight: var(--font-weight-medium);
|
|
23975
|
+
--tooltip-message-line-height: var(--line-height-body-small);
|
|
23976
|
+
--tooltip-message-paragraph-spacing: 0px;
|
|
23977
|
+
--tooltip-message-paragraph-indent: 0px
|
|
23978
|
+
}
|
|
23979
|
+
[data-theme='dark'] [component-variant="tooltip-center-left-outlined"], [data-theme='light'] [component-variant="tooltip-center-left-outlined"] {
|
|
23980
|
+
--tooltip-message-font-family: var(--font-family-body);
|
|
23981
|
+
--tooltip-message-font-size: var(--font-size-body-small);
|
|
23982
|
+
--tooltip-message-font-weight: var(--font-weight-medium);
|
|
23983
|
+
--tooltip-message-line-height: var(--line-height-body-small);
|
|
23984
|
+
--tooltip-message-paragraph-spacing: 0px;
|
|
23985
|
+
--tooltip-message-paragraph-indent: 0px
|
|
23986
|
+
}
|
|
23987
|
+
[data-theme='dark'] [component-variant="tooltip-center-left-default"], [data-theme='light'] [component-variant="tooltip-center-left-default"] {
|
|
23988
|
+
--tooltip-message-font-family: var(--font-family-body);
|
|
23989
|
+
--tooltip-message-font-size: var(--font-size-body-small);
|
|
23990
|
+
--tooltip-message-font-weight: var(--font-weight-medium);
|
|
23991
|
+
--tooltip-message-line-height: var(--line-height-body-small);
|
|
23992
|
+
--tooltip-message-paragraph-spacing: 0px;
|
|
23993
|
+
--tooltip-message-paragraph-indent: 0px
|
|
23994
|
+
}
|
|
23995
|
+
[data-theme='dark'] [component-variant="tooltip-bottom-left-outlined"], [data-theme='light'] [component-variant="tooltip-bottom-left-outlined"] {
|
|
23996
|
+
--tooltip-message-font-family: var(--font-family-body);
|
|
23997
|
+
--tooltip-message-font-size: var(--font-size-body-small);
|
|
23998
|
+
--tooltip-message-font-weight: var(--font-weight-medium);
|
|
23999
|
+
--tooltip-message-line-height: var(--line-height-body-small);
|
|
24000
|
+
--tooltip-message-paragraph-spacing: 0px;
|
|
24001
|
+
--tooltip-message-paragraph-indent: 0px
|
|
24002
|
+
}
|
|
24003
|
+
[data-theme='dark'] [component-variant="tooltip-bottom-left-default"], [data-theme='light'] [component-variant="tooltip-bottom-left-default"] {
|
|
24004
|
+
--tooltip-message-font-family: var(--font-family-body);
|
|
24005
|
+
--tooltip-message-font-size: var(--font-size-body-small);
|
|
24006
|
+
--tooltip-message-font-weight: var(--font-weight-medium);
|
|
24007
|
+
--tooltip-message-line-height: var(--line-height-body-small);
|
|
24008
|
+
--tooltip-message-paragraph-spacing: 0px;
|
|
24009
|
+
--tooltip-message-paragraph-indent: 0px
|
|
24010
|
+
}
|
|
24011
|
+
[data-theme='dark'] [component-variant="tooltip-top-left-outlined"], [data-theme='light'] [component-variant="tooltip-top-left-outlined"] {
|
|
24012
|
+
--tooltip-message-font-family: var(--font-family-body);
|
|
24013
|
+
--tooltip-message-font-size: var(--font-size-body-small);
|
|
24014
|
+
--tooltip-message-font-weight: var(--font-weight-medium);
|
|
24015
|
+
--tooltip-message-line-height: var(--line-height-body-small);
|
|
24016
|
+
--tooltip-message-paragraph-spacing: 0px;
|
|
24017
|
+
--tooltip-message-paragraph-indent: 0px
|
|
24018
|
+
}
|
|
24019
|
+
[data-theme='dark'] [component-variant="tooltip-top-left-default"], [data-theme='light'] [component-variant="tooltip-top-left-default"] {
|
|
24020
|
+
--tooltip-message-font-family: var(--font-family-body);
|
|
24021
|
+
--tooltip-message-font-size: var(--font-size-body-small);
|
|
24022
|
+
--tooltip-message-font-weight: var(--font-weight-medium);
|
|
24023
|
+
--tooltip-message-line-height: var(--line-height-body-small);
|
|
24024
|
+
--tooltip-message-paragraph-spacing: 0px;
|
|
24025
|
+
--tooltip-message-paragraph-indent: 0px
|
|
24026
|
+
}
|
|
24027
|
+
[data-theme='dark'] [component-variant="tooltip-bottom-right-outlined"], [data-theme='light'] [component-variant="tooltip-bottom-right-outlined"] {
|
|
24028
|
+
--tooltip-message-font-family: var(--font-family-body);
|
|
24029
|
+
--tooltip-message-font-size: var(--font-size-body-small);
|
|
24030
|
+
--tooltip-message-font-weight: var(--font-weight-medium);
|
|
24031
|
+
--tooltip-message-line-height: var(--line-height-body-small);
|
|
24032
|
+
--tooltip-message-paragraph-spacing: 0px;
|
|
24033
|
+
--tooltip-message-paragraph-indent: 0px
|
|
24034
|
+
}
|
|
24035
|
+
[data-theme='dark'] [component-variant="tooltip-bottom-right-default"], [data-theme='light'] [component-variant="tooltip-bottom-right-default"] {
|
|
24036
|
+
--tooltip-message-font-family: var(--font-family-body);
|
|
24037
|
+
--tooltip-message-font-size: var(--font-size-body-small);
|
|
24038
|
+
--tooltip-message-font-weight: var(--font-weight-medium);
|
|
24039
|
+
--tooltip-message-line-height: var(--line-height-body-small);
|
|
24040
|
+
--tooltip-message-paragraph-spacing: 0px;
|
|
24041
|
+
--tooltip-message-paragraph-indent: 0px
|
|
24042
|
+
}
|
|
24043
|
+
[data-theme='dark'] [component-variant="tooltip-top-right-outlined"], [data-theme='light'] [component-variant="tooltip-top-right-outlined"] {
|
|
24044
|
+
--tooltip-message-font-family: var(--font-family-body);
|
|
24045
|
+
--tooltip-message-font-size: var(--font-size-body-small);
|
|
24046
|
+
--tooltip-message-font-weight: var(--font-weight-medium);
|
|
24047
|
+
--tooltip-message-line-height: var(--line-height-body-small);
|
|
24048
|
+
--tooltip-message-paragraph-spacing: 0px;
|
|
24049
|
+
--tooltip-message-paragraph-indent: 0px
|
|
24050
|
+
}
|
|
24051
|
+
[data-theme='dark'] [component-variant="tooltip-top-right-default"], [data-theme='light'] [component-variant="tooltip-top-right-default"] {
|
|
24052
|
+
--tooltip-message-font-family: var(--font-family-body);
|
|
24053
|
+
--tooltip-message-font-size: var(--font-size-body-small);
|
|
24054
|
+
--tooltip-message-font-weight: var(--font-weight-medium);
|
|
24055
|
+
--tooltip-message-line-height: var(--line-height-body-small);
|
|
24056
|
+
--tooltip-message-paragraph-spacing: 0px;
|
|
24057
|
+
--tooltip-message-paragraph-indent: 0px
|
|
24058
|
+
}
|
|
24059
|
+
[data-theme='dark'] [component-variant="tooltip-center-bottom-default"], [data-theme='light'] [component-variant="tooltip-center-bottom-default"] {
|
|
24060
|
+
--tooltip-message-font-family: var(--font-family-body);
|
|
24061
|
+
--tooltip-message-font-size: var(--font-size-body-small);
|
|
24062
|
+
--tooltip-message-font-weight: var(--font-weight-medium);
|
|
24063
|
+
--tooltip-message-line-height: var(--line-height-body-small);
|
|
24064
|
+
--tooltip-message-paragraph-spacing: 0px;
|
|
24065
|
+
--tooltip-message-paragraph-indent: 0px
|
|
24066
|
+
}
|
|
24067
|
+
[data-theme='dark'] [component-variant="tooltip-start-top-outlined"], [data-theme='light'] [component-variant="tooltip-start-top-outlined"] {
|
|
24068
|
+
--tooltip-message-font-family: var(--font-family-body);
|
|
24069
|
+
--tooltip-message-font-size: var(--font-size-body-small);
|
|
24070
|
+
--tooltip-message-font-weight: var(--font-weight-medium);
|
|
24071
|
+
--tooltip-message-line-height: var(--line-height-body-small);
|
|
24072
|
+
--tooltip-message-paragraph-spacing: 0px;
|
|
24073
|
+
--tooltip-message-paragraph-indent: 0px
|
|
24074
|
+
}
|
|
24075
|
+
[data-theme='dark'] [component-variant="tooltip-start-top-default"], [data-theme='light'] [component-variant="tooltip-start-top-default"] {
|
|
24076
|
+
--tooltip-message-font-family: var(--font-family-body);
|
|
24077
|
+
--tooltip-message-font-size: var(--font-size-body-small);
|
|
24078
|
+
--tooltip-message-font-weight: var(--font-weight-medium);
|
|
24079
|
+
--tooltip-message-line-height: var(--line-height-body-small);
|
|
24080
|
+
--tooltip-message-paragraph-spacing: 0px;
|
|
24081
|
+
--tooltip-message-paragraph-indent: 0px
|
|
24082
|
+
}
|
|
24083
|
+
[data-theme='dark'] [component-variant="tooltip-start-bottom-outlined"], [data-theme='light'] [component-variant="tooltip-start-bottom-outlined"] {
|
|
24084
|
+
--tooltip-message-font-family: var(--font-family-body);
|
|
24085
|
+
--tooltip-message-font-size: var(--font-size-body-small);
|
|
24086
|
+
--tooltip-message-font-weight: var(--font-weight-medium);
|
|
24087
|
+
--tooltip-message-line-height: var(--line-height-body-small);
|
|
24088
|
+
--tooltip-message-paragraph-spacing: 0px;
|
|
24089
|
+
--tooltip-message-paragraph-indent: 0px
|
|
24090
|
+
}
|
|
24091
|
+
[data-theme='dark'] [component-variant="tooltip-start-bottom-default"], [data-theme='light'] [component-variant="tooltip-start-bottom-default"] {
|
|
24092
|
+
--tooltip-message-font-family: var(--font-family-body);
|
|
24093
|
+
--tooltip-message-font-size: var(--font-size-body-small);
|
|
24094
|
+
--tooltip-message-font-weight: var(--font-weight-medium);
|
|
24095
|
+
--tooltip-message-line-height: var(--line-height-body-small);
|
|
24096
|
+
--tooltip-message-paragraph-spacing: 0px;
|
|
24097
|
+
--tooltip-message-paragraph-indent: 0px
|
|
24098
|
+
}
|
|
24099
|
+
[data-theme='dark'] [component-variant="tooltip-end-top-default"], [data-theme='light'] [component-variant="tooltip-end-top-default"] {
|
|
24100
|
+
--tooltip-message-font-family: var(--font-family-body);
|
|
24101
|
+
--tooltip-message-font-size: var(--font-size-body-small);
|
|
24102
|
+
--tooltip-message-font-weight: var(--font-weight-medium);
|
|
24103
|
+
--tooltip-message-line-height: var(--line-height-body-small);
|
|
24104
|
+
--tooltip-message-paragraph-spacing: 0px;
|
|
24105
|
+
--tooltip-message-paragraph-indent: 0px
|
|
24106
|
+
}
|
|
24107
|
+
[data-theme='dark'] [component-variant="tooltip-end-bottom-outlined"], [data-theme='light'] [component-variant="tooltip-end-bottom-outlined"] {
|
|
24108
|
+
--tooltip-message-font-family: var(--font-family-body);
|
|
24109
|
+
--tooltip-message-font-size: var(--font-size-body-small);
|
|
24110
|
+
--tooltip-message-font-weight: var(--font-weight-medium);
|
|
24111
|
+
--tooltip-message-line-height: var(--line-height-body-small);
|
|
24112
|
+
--tooltip-message-paragraph-spacing: 0px;
|
|
24113
|
+
--tooltip-message-paragraph-indent: 0px
|
|
24114
|
+
}
|
|
24115
|
+
[data-theme='dark'] [component-variant="tooltip-end-bottom-default"], [data-theme='light'] [component-variant="tooltip-end-bottom-default"] {
|
|
24116
|
+
--tooltip-message-font-family: var(--font-family-body);
|
|
24117
|
+
--tooltip-message-font-size: var(--font-size-body-small);
|
|
24118
|
+
--tooltip-message-font-weight: var(--font-weight-medium);
|
|
24119
|
+
--tooltip-message-line-height: var(--line-height-body-small);
|
|
24120
|
+
--tooltip-message-paragraph-spacing: 0px;
|
|
24121
|
+
--tooltip-message-paragraph-indent: 0px
|
|
24122
|
+
}
|
|
24123
|
+
[data-theme='dark'] [component-variant="tooltip-end-top-outlined"], [data-theme='light'] [component-variant="tooltip-end-top-outlined"] {
|
|
24124
|
+
--tooltip-message-font-family: var(--font-family-body);
|
|
24125
|
+
--tooltip-message-font-size: var(--font-size-body-small);
|
|
24126
|
+
--tooltip-message-font-weight: var(--font-weight-medium);
|
|
24127
|
+
--tooltip-message-line-height: var(--line-height-body-small);
|
|
24128
|
+
--tooltip-message-paragraph-spacing: 0px;
|
|
24129
|
+
--tooltip-message-paragraph-indent: 0px
|
|
24130
|
+
}
|
|
23248
24131
|
[data-theme='dark'] [component-variant^="chip-"], [data-theme='light'] [component-variant^="chip-"] {
|
|
23249
24132
|
--chip-opacity: 1;
|
|
23250
24133
|
--chip-height: auto;
|
|
@@ -34485,4 +35368,16 @@ span.flatpickr-weekday {
|
|
|
34485
35368
|
padding-bottom: var(--toast-notification-message-container-padding-bottom);
|
|
34486
35369
|
padding-left: var(--toast-notification-message-container-padding-left);
|
|
34487
35370
|
padding-right: var(--toast-notification-message-container-padding-right);
|
|
35371
|
+
}
|
|
35372
|
+
.ToastNotification-module_toastNotification__LCpoq .ToastNotification-module_text__OfAqs {
|
|
35373
|
+
--text-font-family: var(--toast-notification-font-family);
|
|
35374
|
+
--text-font-weight: var(--toast-notification-font-weight);
|
|
35375
|
+
--text-font-size: var(--toast-notification-font-size);
|
|
35376
|
+
--text-letter-spacing: var(--toast-notification-letter-spacing);
|
|
35377
|
+
--text-line-height: var(--toast-notification-line-height);
|
|
35378
|
+
font-family: var(--toast-notification-font-family);
|
|
35379
|
+
font-size: var(--toast-notification-font-size);
|
|
35380
|
+
font-weight: var(--toast-notification-font-weight);
|
|
35381
|
+
line-height: var(--toast-notification-line-height);
|
|
35382
|
+
letter-spacing: var(--toast-notification-letter-spacing);
|
|
34488
35383
|
}
|