@deque/cauldron-styles 1.0.0-canary.f7873643 → 2.0.0-canary.32ba415d
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +486 -159
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -112,7 +112,11 @@
|
|
|
112
112
|
}
|
|
113
113
|
|
|
114
114
|
:root {
|
|
115
|
-
--workspace-background-color:
|
|
115
|
+
--workspace-background-color: #f0f2f5;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.cauldron--theme-dark {
|
|
119
|
+
--workspace-background-color: var(--dark-workspace-color);
|
|
116
120
|
}
|
|
117
121
|
|
|
118
122
|
html {
|
|
@@ -270,7 +274,7 @@ p {
|
|
|
270
274
|
/* Dark Theme */
|
|
271
275
|
|
|
272
276
|
.cauldron--theme-dark .Layout {
|
|
273
|
-
background-color: var(--dark
|
|
277
|
+
background-color: var(--dark-workspace-color);
|
|
274
278
|
color: var(--white);
|
|
275
279
|
}
|
|
276
280
|
|
|
@@ -512,8 +516,6 @@ button.Link {
|
|
|
512
516
|
--button-background-color-error-active: #fea7a6;
|
|
513
517
|
|
|
514
518
|
--button-focus-ring-color: var(--focus-dark);
|
|
515
|
-
|
|
516
|
-
--header-text-color-dark: var(--white);
|
|
517
519
|
--field-label-text-color: var(--accent-light);
|
|
518
520
|
--field-border-color-error: var(--accent-danger);
|
|
519
521
|
--error: var(--accent-danger);
|
|
@@ -540,7 +542,7 @@ button.Link {
|
|
|
540
542
|
.cauldron--theme-dark .Button--secondary[disabled],
|
|
541
543
|
.cauldron--theme-dark .Button--error[aria-disabled='true'],
|
|
542
544
|
.cauldron--theme-dark .Button--error[disabled] {
|
|
543
|
-
color: var(--dark
|
|
545
|
+
color: var(--dark-workspace-color);
|
|
544
546
|
}
|
|
545
547
|
|
|
546
548
|
.cauldron--theme-dark .Button--primary:active,
|
|
@@ -563,19 +565,19 @@ button.Link {
|
|
|
563
565
|
|
|
564
566
|
.cauldron--theme-dark
|
|
565
567
|
.Button--primary:not([disabled]):not([aria-disabled='true']):hover:before {
|
|
566
|
-
box-shadow: 0 0 0 1px var(--dark
|
|
568
|
+
box-shadow: 0 0 0 1px var(--dark-workspace-color),
|
|
567
569
|
0 0 0 2px var(--accent-info);
|
|
568
570
|
}
|
|
569
571
|
|
|
570
572
|
.cauldron--theme-dark
|
|
571
573
|
.Button--secondary:not([disabled]):not([aria-disabled='true']):hover:before {
|
|
572
|
-
box-shadow: 0 0 0 1px var(--dark
|
|
574
|
+
box-shadow: 0 0 0 1px var(--dark-workspace-color),
|
|
573
575
|
0 0 0 2px var(--accent-light);
|
|
574
576
|
}
|
|
575
577
|
|
|
576
578
|
.cauldron--theme-dark
|
|
577
579
|
.Button--error:not([disabled]):not([aria-disabled='true']):hover:before {
|
|
578
|
-
box-shadow: 0 0 0 1px var(--dark
|
|
580
|
+
box-shadow: 0 0 0 1px var(--dark-workspace-color),
|
|
579
581
|
0 0 0 2px var(--accent-danger);
|
|
580
582
|
}
|
|
581
583
|
|
|
@@ -685,20 +687,6 @@ button.Link {
|
|
|
685
687
|
cursor: default;
|
|
686
688
|
}
|
|
687
689
|
|
|
688
|
-
.IconButton--light[aria-disabled='true'],
|
|
689
|
-
.IconButton--light[disabled] {
|
|
690
|
-
color: var(--icon-button-content-color-light-disabled);
|
|
691
|
-
background-color: var(--icon-button-background-color-light);
|
|
692
|
-
cursor: default;
|
|
693
|
-
}
|
|
694
|
-
|
|
695
|
-
.IconButton--dark[aria-disabled='true'],
|
|
696
|
-
.IconButton--dark[disabled] {
|
|
697
|
-
color: var(--icon-button-content-color-dark-disabled);
|
|
698
|
-
background-color: var(--icon-button-background-color-dark);
|
|
699
|
-
cursor: default;
|
|
700
|
-
}
|
|
701
|
-
|
|
702
690
|
.IconButton:focus:before {
|
|
703
691
|
box-shadow: 0 0 1px 2px var(--button-focus-ring-color);
|
|
704
692
|
}
|
|
@@ -743,30 +731,60 @@ button.Link {
|
|
|
743
731
|
background-color: var(--icon-button-background-color-error-active);
|
|
744
732
|
}
|
|
745
733
|
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
734
|
+
/* Dark Theme */
|
|
735
|
+
|
|
736
|
+
.cauldron--theme-dark {
|
|
737
|
+
--icon-button-border-color-secondary: var(--accent-medium);
|
|
738
|
+
--icon-button-background-color-secondary: var(--accent-medium);
|
|
739
|
+
--icon-button-background-color-primary: var(--gray-20);
|
|
740
|
+
--icon-button-icon-color: var(--white);
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
.cauldron--theme-dark .IconButton--error {
|
|
744
|
+
background-color: var(--accent-dark);
|
|
745
|
+
color: var(--white);
|
|
749
746
|
}
|
|
750
747
|
|
|
751
|
-
.
|
|
752
|
-
|
|
748
|
+
.cauldron--theme-dark .IconButton--primary {
|
|
749
|
+
color: var(--gray-90);
|
|
753
750
|
}
|
|
754
751
|
|
|
755
|
-
.IconButton--
|
|
756
|
-
|
|
752
|
+
.cauldron--theme-dark .IconButton--primary[aria-disabled='true'],
|
|
753
|
+
.cauldron--theme-dark .IconButton--primary[disabled] {
|
|
754
|
+
background-color: var(--gray-20);
|
|
755
|
+
color: var(--gray-40);
|
|
757
756
|
}
|
|
758
757
|
|
|
759
|
-
.
|
|
760
|
-
|
|
761
|
-
color:
|
|
758
|
+
.cauldron--theme-dark .IconButton--secondary[aria-disabled='true'],
|
|
759
|
+
.cauldron--theme-dark .IconButton--secondary[disabled] {
|
|
760
|
+
color: #5d676f;
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
.cauldron--theme-dark .IconButton--secondary {
|
|
764
|
+
color: var(--white);
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
.cauldron--theme-dark .IconButton--error {
|
|
768
|
+
background-color: var(--accent-danger);
|
|
769
|
+
color: var(--accent-dark);
|
|
762
770
|
}
|
|
763
771
|
|
|
764
|
-
.IconButton--
|
|
765
|
-
|
|
772
|
+
.cauldron--theme-dark .IconButton--primary:active {
|
|
773
|
+
background-color: #e5ebec;
|
|
766
774
|
}
|
|
767
775
|
|
|
768
|
-
.IconButton--
|
|
769
|
-
background-color: var(--
|
|
776
|
+
.cauldron--theme-dark .IconButton--secondary:active {
|
|
777
|
+
background-color: var(--accent-dark);
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
.cauldron--theme-dark
|
|
781
|
+
.IconButton--primary:not([disabled]):not([aria-disabled='true']):hover:before {
|
|
782
|
+
box-shadow: 0 0 0 1px var(--accent-light);
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
.cauldron--theme-dark
|
|
786
|
+
.IconButton--secondary:not([disabled]):not([aria-disabled='true']):hover:before {
|
|
787
|
+
box-shadow: 0 0 0 1px var(--white);
|
|
770
788
|
}
|
|
771
789
|
|
|
772
790
|
:root {
|
|
@@ -910,6 +928,52 @@ button.Link {
|
|
|
910
928
|
border-top: none;
|
|
911
929
|
}
|
|
912
930
|
|
|
931
|
+
/* Dark Theme */
|
|
932
|
+
|
|
933
|
+
.cauldron--theme-dark .Dialog__inner {
|
|
934
|
+
background-color: var(--accent-medium);
|
|
935
|
+
color: var(--white);
|
|
936
|
+
border: 4px solid var(--gray-20);
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
.cauldron--theme-dark .Dialog__header {
|
|
940
|
+
border-bottom: 1px solid #5d676f;
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
.cauldron--theme-dark .Dialog__footer {
|
|
944
|
+
border-top: 1px solid #5d676f;
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
.cauldron--theme-dark .Dialog__header,
|
|
948
|
+
.cauldron--theme-dark .Dialog__footer {
|
|
949
|
+
background-color: var(--accent-dark);
|
|
950
|
+
color: var(--gray-20);
|
|
951
|
+
}
|
|
952
|
+
|
|
953
|
+
.cauldron--theme-dark .Dialog__close {
|
|
954
|
+
color: var(--gray-20);
|
|
955
|
+
}
|
|
956
|
+
|
|
957
|
+
.cauldron--theme-dark .Dialog__heading:focus,
|
|
958
|
+
.cauldron--theme-dark .Dialog__close:focus,
|
|
959
|
+
.cauldron--theme-dark .Dialog__close:hover {
|
|
960
|
+
border-bottom-color: var(--white);
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
.cauldron--theme-dark .Modal--info .Dialog__header,
|
|
964
|
+
.cauldron--theme-dark .Modal--info .Dialog__content,
|
|
965
|
+
.cauldron--theme-dark .Modal--info .Dialog__footer {
|
|
966
|
+
background-color: var(--accent-medium);
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
.cauldron--theme-dark .Modal--info .Dialog__header {
|
|
970
|
+
border-bottom: none;
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
.cauldron--theme-dark .Modal--info .Dialog__footer {
|
|
974
|
+
border-top: none;
|
|
975
|
+
}
|
|
976
|
+
|
|
913
977
|
.Dropdown {
|
|
914
978
|
position: absolute;
|
|
915
979
|
padding: 8px;
|
|
@@ -952,7 +1016,7 @@ button.Link {
|
|
|
952
1016
|
}
|
|
953
1017
|
|
|
954
1018
|
.TopBar .Dropdown {
|
|
955
|
-
top:
|
|
1019
|
+
top: var(--top-bar-height);
|
|
956
1020
|
right: 0;
|
|
957
1021
|
}
|
|
958
1022
|
|
|
@@ -1474,10 +1538,6 @@ textarea.Field--has-error:focus,
|
|
|
1474
1538
|
cursor: default;
|
|
1475
1539
|
}
|
|
1476
1540
|
|
|
1477
|
-
.Field__label.Field__label--disabled {
|
|
1478
|
-
color: var(--disabled);
|
|
1479
|
-
}
|
|
1480
|
-
|
|
1481
1541
|
.Field__required-text {
|
|
1482
1542
|
flex: 1;
|
|
1483
1543
|
text-align: right;
|
|
@@ -1609,6 +1669,31 @@ textarea.Field--has-error:focus,
|
|
|
1609
1669
|
border: 1px solid currentColor;
|
|
1610
1670
|
}
|
|
1611
1671
|
|
|
1672
|
+
/* Dark Theme */
|
|
1673
|
+
|
|
1674
|
+
.cauldron--theme-dark {
|
|
1675
|
+
--field-label-text-color: var(--white);
|
|
1676
|
+
}
|
|
1677
|
+
|
|
1678
|
+
.cauldron--theme-dark .Radio__overlay,
|
|
1679
|
+
.cauldron--theme-dark .Checkbox__overlay {
|
|
1680
|
+
color: var(--white);
|
|
1681
|
+
}
|
|
1682
|
+
|
|
1683
|
+
.cauldron--theme-dark .Checkbox__overlay.Icon--checkbox-checked {
|
|
1684
|
+
color: var(--accent-light);
|
|
1685
|
+
}
|
|
1686
|
+
|
|
1687
|
+
.cauldron--theme-dark .Checkbox__overlay.Field--has-error {
|
|
1688
|
+
color: var(--accent-danger);
|
|
1689
|
+
}
|
|
1690
|
+
|
|
1691
|
+
.cauldron--theme-dark .Radio__overlay--disabled,
|
|
1692
|
+
.cauldron--theme-dark .Checkbox__overlay--disabled.Icon--checkbox-checked,
|
|
1693
|
+
.cauldron--theme-dark .Checkbox__overlay--disabled.Icon--checkbox-unchecked {
|
|
1694
|
+
color: #4c99a9;
|
|
1695
|
+
}
|
|
1696
|
+
|
|
1612
1697
|
:root {
|
|
1613
1698
|
--link-text-color: var(--accent-primary);
|
|
1614
1699
|
--link-text-color-light: rgba(60, 122, 174, 0.1);
|
|
@@ -1845,7 +1930,7 @@ p .Link {
|
|
|
1845
1930
|
top: var(--top-bar-height);
|
|
1846
1931
|
bottom: 0;
|
|
1847
1932
|
overflow: auto;
|
|
1848
|
-
background-color: var(--
|
|
1933
|
+
background-color: var(--white);
|
|
1849
1934
|
width: var(--menu-width);
|
|
1850
1935
|
left: calc(-1 * var(--menu-width));
|
|
1851
1936
|
box-sizing: border-box;
|
|
@@ -1875,18 +1960,19 @@ p .Link {
|
|
|
1875
1960
|
border-left: var(--border-width) solid transparent;
|
|
1876
1961
|
}
|
|
1877
1962
|
|
|
1878
|
-
.SideBar li:not([aria-controls]):hover,
|
|
1963
|
+
.SideBar li:not([aria-controls]):not(.MenuItem--active):hover,
|
|
1879
1964
|
.SideBar li:not([aria-controls]):focus-within {
|
|
1880
1965
|
outline: 0;
|
|
1881
|
-
|
|
1966
|
+
background-color: var(--gray-20);
|
|
1882
1967
|
}
|
|
1883
1968
|
|
|
1884
1969
|
.SideBar li:not([aria-controls]).MenuItem--active {
|
|
1885
|
-
border-left: var(--border-width) solid var(--
|
|
1970
|
+
border-left: var(--border-width) solid var(--accent-primary);
|
|
1971
|
+
background-color: var(--white);
|
|
1886
1972
|
}
|
|
1887
1973
|
|
|
1888
1974
|
.SideBar li:not([aria-controls]).MenuItem--active a {
|
|
1889
|
-
color: var(--
|
|
1975
|
+
color: var(--gray-90);
|
|
1890
1976
|
font-weight: var(--font-weight-medium);
|
|
1891
1977
|
}
|
|
1892
1978
|
|
|
@@ -1901,10 +1987,12 @@ p .Link {
|
|
|
1901
1987
|
}
|
|
1902
1988
|
|
|
1903
1989
|
.SideBar > li {
|
|
1904
|
-
color: var(--
|
|
1990
|
+
color: var(--gray-60);
|
|
1905
1991
|
font-size: var(--text-size-small);
|
|
1906
1992
|
font-weight: var(--font-weight-light);
|
|
1907
1993
|
cursor: pointer;
|
|
1994
|
+
border-right: 1px solid #b3bfc6;
|
|
1995
|
+
border-bottom: 1px solid#b3bfc6;
|
|
1908
1996
|
}
|
|
1909
1997
|
|
|
1910
1998
|
.SideBar > li:focus {
|
|
@@ -1913,7 +2001,7 @@ p .Link {
|
|
|
1913
2001
|
|
|
1914
2002
|
.SideBar > li a {
|
|
1915
2003
|
text-decoration: none;
|
|
1916
|
-
color: var(--
|
|
2004
|
+
color: var(--gray-60);
|
|
1917
2005
|
font-size: var(--text-size-small);
|
|
1918
2006
|
font-weight: var(--font-weight-light);
|
|
1919
2007
|
}
|
|
@@ -1922,6 +2010,40 @@ p .Link {
|
|
|
1922
2010
|
outline: 0;
|
|
1923
2011
|
}
|
|
1924
2012
|
|
|
2013
|
+
/* Dark Theme */
|
|
2014
|
+
|
|
2015
|
+
.cauldron--theme-dark .SideBar {
|
|
2016
|
+
background-color: var(--accent-medium);
|
|
2017
|
+
color: var(--accent-light);
|
|
2018
|
+
}
|
|
2019
|
+
|
|
2020
|
+
.cauldron--theme-dark .SideBar > li a {
|
|
2021
|
+
color: var(--accent-light);
|
|
2022
|
+
}
|
|
2023
|
+
|
|
2024
|
+
.cauldron--theme-dark .SideBar > li {
|
|
2025
|
+
color: var(--accent-light);
|
|
2026
|
+
border-right: 2px solid #5d676f;
|
|
2027
|
+
border-bottom: 2px solid #5d676f;
|
|
2028
|
+
}
|
|
2029
|
+
|
|
2030
|
+
.cauldron--theme-dark .SideBar li:not([aria-controls]).MenuItem--active {
|
|
2031
|
+
border-left: var(--border-width) solid var(--accent-info);
|
|
2032
|
+
background-color: var(--accent-medium);
|
|
2033
|
+
}
|
|
2034
|
+
|
|
2035
|
+
.cauldron--theme-dark .SideBar li:not([aria-controls]).MenuItem--active a {
|
|
2036
|
+
color: var(--white);
|
|
2037
|
+
font-weight: var(--font-weight-medium);
|
|
2038
|
+
}
|
|
2039
|
+
|
|
2040
|
+
.cauldron--theme-dark
|
|
2041
|
+
.SideBar
|
|
2042
|
+
li:not([aria-controls]):not(.MenuItem--active):hover,
|
|
2043
|
+
.cauldron--theme-dark .SideBar li:not([aria-controls]):focus-within {
|
|
2044
|
+
background-color: var(--accent-dark);
|
|
2045
|
+
}
|
|
2046
|
+
|
|
1925
2047
|
:root {
|
|
1926
2048
|
--tile-background-color: var(--white);
|
|
1927
2049
|
--list-separator: rgba(153, 153, 153, 0.15);
|
|
@@ -1977,7 +2099,7 @@ p .Link {
|
|
|
1977
2099
|
.Toast {
|
|
1978
2100
|
top: var(--top-bar-height);
|
|
1979
2101
|
position: fixed;
|
|
1980
|
-
color:
|
|
2102
|
+
color: #0b0e11;
|
|
1981
2103
|
font-size: var(--text-size-small);
|
|
1982
2104
|
z-index: var(--z-index-toast);
|
|
1983
2105
|
align-items: center;
|
|
@@ -2244,15 +2366,11 @@ button.TooltipTabstop {
|
|
|
2244
2366
|
}
|
|
2245
2367
|
|
|
2246
2368
|
:root {
|
|
2247
|
-
--top-bar-background-color: var(--
|
|
2248
|
-
--top-bar-background-color-active:
|
|
2249
|
-
--top-bar-
|
|
2250
|
-
--top-bar-
|
|
2251
|
-
--top-bar-
|
|
2252
|
-
--top-bar-text-color-light: var(--accent-dark);
|
|
2253
|
-
--top-bar-menuitem-separator: rgba(255, 255, 255, 0.4);
|
|
2254
|
-
--top-bar-menuitem-separator-light: var(--gray-40);
|
|
2255
|
-
--top-bar-border-bottom-color-light: var(--gray-40);
|
|
2369
|
+
--top-bar-background-color: var(--white);
|
|
2370
|
+
--top-bar-background-color-active: var(--white);
|
|
2371
|
+
--top-bar-text-color: var(--accent-dark);
|
|
2372
|
+
--top-bar-menuitem-separator: #b3bfc6;
|
|
2373
|
+
--top-bar-border-bottom-color: var(--gray-40);
|
|
2256
2374
|
--top-bar-accent-primary: var(--accent-info);
|
|
2257
2375
|
--top-bar-accent-warning: var(--accent-warning);
|
|
2258
2376
|
--top-bar-accent-error: var(--accent-danger);
|
|
@@ -2263,8 +2381,6 @@ button.TooltipTabstop {
|
|
|
2263
2381
|
}
|
|
2264
2382
|
|
|
2265
2383
|
.TopBar {
|
|
2266
|
-
background-color: var(--top-bar-background-color);
|
|
2267
|
-
color: var(--top-bar-text-color);
|
|
2268
2384
|
position: fixed;
|
|
2269
2385
|
width: 100%;
|
|
2270
2386
|
height: var(--top-bar-height);
|
|
@@ -2275,12 +2391,9 @@ button.TooltipTabstop {
|
|
|
2275
2391
|
z-index: var(--z-index-top-bar);
|
|
2276
2392
|
display: flex;
|
|
2277
2393
|
align-items: center;
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
background-color: var(--top-bar-background-color-light);
|
|
2282
|
-
color: var(--top-bar-text-color-light);
|
|
2283
|
-
border-bottom: solid 1px var(--top-bar-border-bottom-color-light);
|
|
2394
|
+
background-color: var(--top-bar-background-color);
|
|
2395
|
+
color: var(--top-bar-text-color);
|
|
2396
|
+
border-bottom: solid 1px var(--top-bar-border-bottom-color);
|
|
2284
2397
|
}
|
|
2285
2398
|
|
|
2286
2399
|
.TopBar--thin .TopBar {
|
|
@@ -2322,8 +2435,8 @@ button.TooltipTabstop {
|
|
|
2322
2435
|
height: var(--top-bar-height-thin);
|
|
2323
2436
|
}
|
|
2324
2437
|
|
|
2325
|
-
.TopBar
|
|
2326
|
-
border-bottom: solid 1px var(--top-bar-border-bottom-color
|
|
2438
|
+
.TopBar > ul > .TopBar__menu-trigger {
|
|
2439
|
+
border-bottom: solid 1px var(--top-bar-border-bottom-color);
|
|
2327
2440
|
}
|
|
2328
2441
|
|
|
2329
2442
|
.TopBar > ul > li:focus-within,
|
|
@@ -2338,13 +2451,8 @@ button.TooltipTabstop {
|
|
|
2338
2451
|
bottom: 0;
|
|
2339
2452
|
left: 0;
|
|
2340
2453
|
width: 100%;
|
|
2341
|
-
background-color: var(--top-bar-text-color);
|
|
2342
2454
|
height: var(--border-width);
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
.TopBar--light > ul > li:focus-within:before,
|
|
2346
|
-
.TopBar--light > ul > li:hover:before {
|
|
2347
|
-
background-color: var(--top-bar-text-color-light);
|
|
2455
|
+
background-color: var(--top-bar-text-color);
|
|
2348
2456
|
}
|
|
2349
2457
|
|
|
2350
2458
|
.TopBar > ul > li .fa {
|
|
@@ -2361,10 +2469,6 @@ button.TooltipTabstop {
|
|
|
2361
2469
|
text-decoration: none;
|
|
2362
2470
|
}
|
|
2363
2471
|
|
|
2364
|
-
.TopBar--light a {
|
|
2365
|
-
color: var(--top-bar-text-color-light);
|
|
2366
|
-
}
|
|
2367
|
-
|
|
2368
2472
|
.TopBar .MenuItem--align-right {
|
|
2369
2473
|
margin-left: auto;
|
|
2370
2474
|
}
|
|
@@ -2374,11 +2478,6 @@ button.TooltipTabstop {
|
|
|
2374
2478
|
background-color: var(--top-bar-background-color-active);
|
|
2375
2479
|
}
|
|
2376
2480
|
|
|
2377
|
-
.TopBar--light li.MenuItem--active,
|
|
2378
|
-
.TopBar--light [aria-current='page'] {
|
|
2379
|
-
background-color: var(--top-bar-background-color-light-active);
|
|
2380
|
-
}
|
|
2381
|
-
|
|
2382
2481
|
.TopBar li.MenuItem--active:hover,
|
|
2383
2482
|
.TopBar [aria-current='page'] {
|
|
2384
2483
|
border-bottom: var(--border-width) solid transparent !important;
|
|
@@ -2387,17 +2486,12 @@ button.TooltipTabstop {
|
|
|
2387
2486
|
.TopBar .TopBar__menu-trigger {
|
|
2388
2487
|
display: flex;
|
|
2389
2488
|
align-items: center;
|
|
2390
|
-
background-color: var(--top-bar-background-color);
|
|
2391
|
-
color: var(--top-bar-text-color);
|
|
2392
2489
|
font-size: var(--text-size-medium);
|
|
2393
2490
|
padding: 0 var(--space-small);
|
|
2394
2491
|
align-self: flex-start;
|
|
2395
2492
|
box-sizing: border-box;
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
.TopBar--light .TopBar__menu-trigger {
|
|
2399
|
-
background-color: var(--top-bar-background-color-light);
|
|
2400
|
-
color: var(--top-bar-text-color-light);
|
|
2493
|
+
background-color: var(--top-bar-background-color);
|
|
2494
|
+
color: var(--top-bar-text-color);
|
|
2401
2495
|
}
|
|
2402
2496
|
|
|
2403
2497
|
.TopBar__item--icon {
|
|
@@ -2414,8 +2508,46 @@ button.TooltipTabstop {
|
|
|
2414
2508
|
border-left: 1px solid var(--top-bar-menuitem-separator);
|
|
2415
2509
|
}
|
|
2416
2510
|
|
|
2417
|
-
|
|
2418
|
-
|
|
2511
|
+
/* Dark Theme */
|
|
2512
|
+
|
|
2513
|
+
.cauldron--theme-dark {
|
|
2514
|
+
--top-bar-background-color: var(--accent-dark);
|
|
2515
|
+
--top-bar-menuitem-separator: #5d676f;
|
|
2516
|
+
--top-bar-border-bottom-color: var(--gray-70);
|
|
2517
|
+
--top-bar-text-color: var(--accent-light);
|
|
2518
|
+
--top-bar-background-color-active: #0b0e11;
|
|
2519
|
+
}
|
|
2520
|
+
|
|
2521
|
+
.cauldron--theme-dark .TopBar {
|
|
2522
|
+
background-color: var(--top-bar-background-color);
|
|
2523
|
+
color: var(--top-bar-text-color);
|
|
2524
|
+
border-bottom: none;
|
|
2525
|
+
}
|
|
2526
|
+
|
|
2527
|
+
.cauldron--theme-dark .MenuItem--separator {
|
|
2528
|
+
border-left: 1px solid var(--top-bar-menuitem-separator);
|
|
2529
|
+
}
|
|
2530
|
+
|
|
2531
|
+
.cauldron--theme-dark .TopBar__menu-trigger {
|
|
2532
|
+
background-color: var(--top-bar-background-color);
|
|
2533
|
+
color: var(--top-bar-text-color);
|
|
2534
|
+
}
|
|
2535
|
+
|
|
2536
|
+
.cauldron--theme-dark .TopBar [aria-current='page'] {
|
|
2537
|
+
background-color: var(--top-bar-background-color-active);
|
|
2538
|
+
}
|
|
2539
|
+
|
|
2540
|
+
.cauldron--theme-dark a {
|
|
2541
|
+
color: var(--top-bar-text-color);
|
|
2542
|
+
}
|
|
2543
|
+
|
|
2544
|
+
.cauldron--theme-dark .TopBar > ul > .TopBar__menu-trigger {
|
|
2545
|
+
border-bottom: solid 1px var(--top-bar-border-bottom-color);
|
|
2546
|
+
}
|
|
2547
|
+
|
|
2548
|
+
.cauldron--theme-dark .TopBar > ul > li:focus-within:before,
|
|
2549
|
+
.cauldron--theme-dark .TopBar > ul > li:hover:before {
|
|
2550
|
+
background-color: var(--top-bar-text-color);
|
|
2419
2551
|
}
|
|
2420
2552
|
|
|
2421
2553
|
:root {
|
|
@@ -2514,7 +2646,7 @@ button.TooltipTabstop {
|
|
|
2514
2646
|
}
|
|
2515
2647
|
|
|
2516
2648
|
.Loader__overlay {
|
|
2517
|
-
background:
|
|
2649
|
+
background: var(--workspace-background-color);
|
|
2518
2650
|
position: absolute;
|
|
2519
2651
|
display: inline-flex;
|
|
2520
2652
|
flex-direction: column;
|
|
@@ -2532,14 +2664,22 @@ button.TooltipTabstop {
|
|
|
2532
2664
|
z-index: var(--z-index-loader);
|
|
2533
2665
|
}
|
|
2534
2666
|
|
|
2667
|
+
.cauldron--theme-dark .Loader__overlay {
|
|
2668
|
+
border: 2px solid var(--white);
|
|
2669
|
+
}
|
|
2670
|
+
|
|
2535
2671
|
.Loader {
|
|
2536
2672
|
font-size: 10px;
|
|
2537
2673
|
margin: 50px auto;
|
|
2538
2674
|
width: 7em;
|
|
2539
2675
|
height: 7em;
|
|
2540
2676
|
border-radius: 50%;
|
|
2541
|
-
background:
|
|
2542
|
-
background: linear-gradient(
|
|
2677
|
+
background: var(--gray-60);
|
|
2678
|
+
background: linear-gradient(
|
|
2679
|
+
to right,
|
|
2680
|
+
var(--gray-60) 10%,
|
|
2681
|
+
rgba(255, 255, 255, 0) 42%
|
|
2682
|
+
);
|
|
2543
2683
|
transform: translateZ(0);
|
|
2544
2684
|
position: relative;
|
|
2545
2685
|
animation: load 1.4s linear infinite;
|
|
@@ -2548,7 +2688,7 @@ button.TooltipTabstop {
|
|
|
2548
2688
|
.Loader:before {
|
|
2549
2689
|
width: 50%;
|
|
2550
2690
|
height: 50%;
|
|
2551
|
-
background:
|
|
2691
|
+
background: var(--gray-60);
|
|
2552
2692
|
border-radius: 100% 0 0 0;
|
|
2553
2693
|
position: absolute;
|
|
2554
2694
|
top: 0;
|
|
@@ -2570,6 +2710,18 @@ button.TooltipTabstop {
|
|
|
2570
2710
|
right: 0;
|
|
2571
2711
|
}
|
|
2572
2712
|
|
|
2713
|
+
.cauldron--theme-dark .Loader {
|
|
2714
|
+
background: linear-gradient(
|
|
2715
|
+
to right,
|
|
2716
|
+
var(--white) 10%,
|
|
2717
|
+
var(--workspace-background-color) 45%
|
|
2718
|
+
);
|
|
2719
|
+
}
|
|
2720
|
+
|
|
2721
|
+
.cauldron--theme-dark .Loader:before {
|
|
2722
|
+
background: var(--white);
|
|
2723
|
+
}
|
|
2724
|
+
|
|
2573
2725
|
@keyframes load {
|
|
2574
2726
|
0% {
|
|
2575
2727
|
transform: rotate(0deg);
|
|
@@ -2593,12 +2745,14 @@ button.TooltipTabstop {
|
|
|
2593
2745
|
display: block;
|
|
2594
2746
|
overflow-x: auto;
|
|
2595
2747
|
padding: 0.5em;
|
|
2596
|
-
background:
|
|
2597
|
-
color:
|
|
2748
|
+
background: var(--gray-20);
|
|
2749
|
+
color: var(--gray-90);
|
|
2750
|
+
border: 1px solid var(--gray-40);
|
|
2751
|
+
color: var(--accent-primary-active);
|
|
2598
2752
|
}
|
|
2599
2753
|
|
|
2600
2754
|
.Code .hljs-comment {
|
|
2601
|
-
color: #
|
|
2755
|
+
color: #575957;
|
|
2602
2756
|
font-style: italic;
|
|
2603
2757
|
}
|
|
2604
2758
|
|
|
@@ -2607,24 +2761,12 @@ button.TooltipTabstop {
|
|
|
2607
2761
|
font-style: italic;
|
|
2608
2762
|
}
|
|
2609
2763
|
|
|
2610
|
-
.Code .hljs-keyword
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
.Code .hljs-selector-tag {
|
|
2615
|
-
color: #cc99cc;
|
|
2616
|
-
}
|
|
2617
|
-
|
|
2618
|
-
.Code .hljs-literal {
|
|
2619
|
-
color: #cc99cc;
|
|
2620
|
-
}
|
|
2621
|
-
|
|
2622
|
-
.Code .hljs-type {
|
|
2623
|
-
color: #cc99cc;
|
|
2624
|
-
}
|
|
2625
|
-
|
|
2764
|
+
.Code .hljs-keyword,
|
|
2765
|
+
.Code .hljs-selector-tag,
|
|
2766
|
+
.Code .hljs-literal,
|
|
2767
|
+
.Code .hljs-type,
|
|
2626
2768
|
.Code .hljs-addition {
|
|
2627
|
-
color: #
|
|
2769
|
+
color: #8a0c8a;
|
|
2628
2770
|
}
|
|
2629
2771
|
|
|
2630
2772
|
.Code .hljs-number {
|
|
@@ -2640,7 +2782,7 @@ button.TooltipTabstop {
|
|
|
2640
2782
|
}
|
|
2641
2783
|
|
|
2642
2784
|
.Code .hljs-string {
|
|
2643
|
-
color:
|
|
2785
|
+
color: var(--gray-60);
|
|
2644
2786
|
}
|
|
2645
2787
|
|
|
2646
2788
|
.Code .hljs-doctag {
|
|
@@ -2651,36 +2793,20 @@ button.TooltipTabstop {
|
|
|
2651
2793
|
color: #8abeb7;
|
|
2652
2794
|
}
|
|
2653
2795
|
|
|
2796
|
+
.Code .hljs-built_in,
|
|
2654
2797
|
.Code .hljs-title {
|
|
2655
|
-
color:
|
|
2656
|
-
}
|
|
2657
|
-
|
|
2658
|
-
.Code .hljs-name {
|
|
2659
|
-
color: #b5bd68;
|
|
2660
|
-
font-weight: bold;
|
|
2798
|
+
color: var(--accent-dark);
|
|
2661
2799
|
}
|
|
2662
2800
|
|
|
2801
|
+
.Code .hljs-name,
|
|
2663
2802
|
.Code .hljs-section {
|
|
2664
|
-
color:
|
|
2803
|
+
color: var(--accent-primary-active);
|
|
2665
2804
|
font-weight: bold;
|
|
2666
2805
|
}
|
|
2667
2806
|
|
|
2668
|
-
.Code .hljs-
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
.Code .hljs-variable {
|
|
2673
|
-
color: #ffcc66;
|
|
2674
|
-
}
|
|
2675
|
-
|
|
2676
|
-
.Code .hljs-template-variable {
|
|
2677
|
-
color: #ffcc66;
|
|
2678
|
-
}
|
|
2679
|
-
|
|
2680
|
-
.Code .hljs-selector-id {
|
|
2681
|
-
color: #ffcc66;
|
|
2682
|
-
}
|
|
2683
|
-
|
|
2807
|
+
.Code .hljs-variable,
|
|
2808
|
+
.Code .hljs-template-variable,
|
|
2809
|
+
.Code .hljs-selector-id,
|
|
2684
2810
|
.Code .hljs-class .hljs-title {
|
|
2685
2811
|
color: #ffcc66;
|
|
2686
2812
|
}
|
|
@@ -2689,44 +2815,65 @@ button.TooltipTabstop {
|
|
|
2689
2815
|
font-weight: bold;
|
|
2690
2816
|
}
|
|
2691
2817
|
|
|
2692
|
-
.Code .hljs-symbol
|
|
2818
|
+
.Code .hljs-symbol,
|
|
2819
|
+
.Code .hljs-bullet,
|
|
2820
|
+
.Code .hljs-subst,
|
|
2821
|
+
.Code .hljs-meta,
|
|
2822
|
+
.Code .hljs-link {
|
|
2693
2823
|
color: #f99157;
|
|
2694
2824
|
}
|
|
2695
2825
|
|
|
2696
|
-
.Code .hljs-
|
|
2697
|
-
color: #
|
|
2826
|
+
.Code .hljs-deletion {
|
|
2827
|
+
color: #dc322f;
|
|
2698
2828
|
}
|
|
2699
2829
|
|
|
2700
|
-
.Code .hljs-
|
|
2701
|
-
|
|
2830
|
+
.Code .hljs-formula {
|
|
2831
|
+
background: #eee8d5;
|
|
2702
2832
|
}
|
|
2703
2833
|
|
|
2704
|
-
.Code .hljs-
|
|
2705
|
-
|
|
2834
|
+
.Code .hljs-attr,
|
|
2835
|
+
.Code .hljs-attribute {
|
|
2836
|
+
color: var(--accent-error);
|
|
2706
2837
|
}
|
|
2707
2838
|
|
|
2708
|
-
.Code .hljs-
|
|
2709
|
-
|
|
2839
|
+
.Code .hljs-emphasis {
|
|
2840
|
+
font-style: italic;
|
|
2710
2841
|
}
|
|
2711
2842
|
|
|
2712
|
-
|
|
2713
|
-
|
|
2843
|
+
/* Dark Theme */
|
|
2844
|
+
|
|
2845
|
+
.cauldron--theme-dark .Code.hljs {
|
|
2846
|
+
background: var(--accent-dark);
|
|
2847
|
+
color: var(--accent-light);
|
|
2848
|
+
border: 1px solid transparent;
|
|
2714
2849
|
}
|
|
2715
2850
|
|
|
2716
|
-
.Code .hljs-
|
|
2717
|
-
|
|
2851
|
+
.cauldron--theme-dark .Code .hljs-string {
|
|
2852
|
+
color: #8abeb7;
|
|
2718
2853
|
}
|
|
2719
2854
|
|
|
2720
|
-
.Code .hljs-
|
|
2721
|
-
|
|
2855
|
+
.cauldron--theme-dark .Code .hljs-keyword,
|
|
2856
|
+
.cauldron--theme-dark .Code .hljs-selector-tag,
|
|
2857
|
+
.cauldron--theme-dark .Code .hljs-literal,
|
|
2858
|
+
.cauldron--theme-dark .Code .hljs-type,
|
|
2859
|
+
.cauldron--theme-dark .Code .hljs-addition {
|
|
2860
|
+
color: #cc99cc;
|
|
2722
2861
|
}
|
|
2723
2862
|
|
|
2724
|
-
.Code .hljs-
|
|
2725
|
-
color: #
|
|
2863
|
+
.cauldron--theme-dark .Code .hljs-comment {
|
|
2864
|
+
color: #969896;
|
|
2726
2865
|
}
|
|
2727
2866
|
|
|
2728
|
-
.Code .hljs-
|
|
2729
|
-
|
|
2867
|
+
.cauldron--theme-dark .Code .hljs-built_in,
|
|
2868
|
+
.cauldron--theme-dark .Code .hljs-title,
|
|
2869
|
+
.cauldron--theme-dark .Code .hljs-name,
|
|
2870
|
+
.cauldron--theme-dark .Code .hljs-section {
|
|
2871
|
+
color: #b5bd68;
|
|
2872
|
+
}
|
|
2873
|
+
|
|
2874
|
+
.cauldron--theme-dark .Code .hljs-attr,
|
|
2875
|
+
.cauldron--theme-dark .Code .hljs-attribute {
|
|
2876
|
+
color: #81a2be;
|
|
2730
2877
|
}
|
|
2731
2878
|
|
|
2732
2879
|
.Line {
|
|
@@ -2751,6 +2898,98 @@ button.TooltipTabstop {
|
|
|
2751
2898
|
border: 1px solid #ccc;
|
|
2752
2899
|
}
|
|
2753
2900
|
|
|
2901
|
+
:root {
|
|
2902
|
+
--tabs-border-color: #b3bfc6;
|
|
2903
|
+
--tab-shadow-color: var(--accent-primary);
|
|
2904
|
+
--tab-inactive-background-color: var(--gray-20);
|
|
2905
|
+
--tab-inactive-text-color: var(--gray-60);
|
|
2906
|
+
--tab-active-background-color: var(--white);
|
|
2907
|
+
--tabs-active-text-color: var(--gray-90);
|
|
2908
|
+
}
|
|
2909
|
+
|
|
2910
|
+
.cauldron--theme-dark {
|
|
2911
|
+
--tabs-border-color: #5d676f;
|
|
2912
|
+
--tab-shadow-color: var(--accent-info);
|
|
2913
|
+
--tab-inactive-background-color: var(--accent-medium);
|
|
2914
|
+
--tab-inactive-text-color: var(--accent-light);
|
|
2915
|
+
--tab-active-background-color: var(--accent-dark);
|
|
2916
|
+
--tabs-active-text-color: var(--white);
|
|
2917
|
+
}
|
|
2918
|
+
|
|
2919
|
+
.Tabs {
|
|
2920
|
+
width: -moz-fit-content;
|
|
2921
|
+
width: fit-content;
|
|
2922
|
+
}
|
|
2923
|
+
|
|
2924
|
+
.Tablist {
|
|
2925
|
+
display: flex;
|
|
2926
|
+
flex-direction: row;
|
|
2927
|
+
border-left: 1px solid var(--tabs-border-color);
|
|
2928
|
+
}
|
|
2929
|
+
|
|
2930
|
+
.Tab {
|
|
2931
|
+
display: block;
|
|
2932
|
+
text-align: center;
|
|
2933
|
+
height: 2.875rem;
|
|
2934
|
+
width: 9.375rem;
|
|
2935
|
+
white-space: nowrap;
|
|
2936
|
+
overflow: hidden;
|
|
2937
|
+
text-overflow: ellipsis;
|
|
2938
|
+
list-style-type: none;
|
|
2939
|
+
border-top: 1px solid var(--tabs-border-color);
|
|
2940
|
+
border-right: 1px solid var(--tabs-border-color);
|
|
2941
|
+
text-decoration: underline;
|
|
2942
|
+
background-color: var(--tab-inactive-background-color);
|
|
2943
|
+
color: var(--tab-inactive-text-color);
|
|
2944
|
+
padding: var(--space-small);
|
|
2945
|
+
}
|
|
2946
|
+
|
|
2947
|
+
.Tab:hover {
|
|
2948
|
+
cursor: pointer;
|
|
2949
|
+
background-color: var(--tab-active-background-color);
|
|
2950
|
+
color: var(--tabs-active-text-color);
|
|
2951
|
+
}
|
|
2952
|
+
|
|
2953
|
+
.Tab--active {
|
|
2954
|
+
color: var(--tabs-active-text-color);
|
|
2955
|
+
background-color: var(--tab-active-background-color);
|
|
2956
|
+
font-weight: bold;
|
|
2957
|
+
text-decoration: none;
|
|
2958
|
+
box-shadow: inset 0px 4px 0px var(--tab-shadow-color);
|
|
2959
|
+
z-index: 1;
|
|
2960
|
+
}
|
|
2961
|
+
|
|
2962
|
+
.TabPanel {
|
|
2963
|
+
overflow-wrap: break-word;
|
|
2964
|
+
color: var(--tabs-active-text-color);
|
|
2965
|
+
background-color: var(--tab-active-background-color);
|
|
2966
|
+
border: 1px solid var(--tabs-border-color);
|
|
2967
|
+
padding: 1rem;
|
|
2968
|
+
}
|
|
2969
|
+
|
|
2970
|
+
.TabPanel > * {
|
|
2971
|
+
margin-top: 0;
|
|
2972
|
+
}
|
|
2973
|
+
|
|
2974
|
+
.TabPanel--hidden {
|
|
2975
|
+
display: none;
|
|
2976
|
+
}
|
|
2977
|
+
|
|
2978
|
+
.Tabs--thin .Tab {
|
|
2979
|
+
height: 2.125rem;
|
|
2980
|
+
padding: var(--space-smallest);
|
|
2981
|
+
}
|
|
2982
|
+
|
|
2983
|
+
/* variant */
|
|
2984
|
+
|
|
2985
|
+
.Tablist--full-width {
|
|
2986
|
+
justify-content: space-evenly;
|
|
2987
|
+
}
|
|
2988
|
+
|
|
2989
|
+
.Tab--full-width {
|
|
2990
|
+
width: 100%;
|
|
2991
|
+
}
|
|
2992
|
+
|
|
2754
2993
|
:root {
|
|
2755
2994
|
--tag-text-color: var(--gray-90);
|
|
2756
2995
|
--tag-label-text-color: var(--gray-60);
|
|
@@ -2993,3 +3232,91 @@ button.TooltipTabstop {
|
|
|
2993
3232
|
background: var(--accent-dark);
|
|
2994
3233
|
color: var(--white);
|
|
2995
3234
|
}
|
|
3235
|
+
|
|
3236
|
+
/* Dark Theme */
|
|
3237
|
+
|
|
3238
|
+
.cauldron--theme-dark .Stepper {
|
|
3239
|
+
color: var(--accent-light);
|
|
3240
|
+
background-color: var(--accent-dark);
|
|
3241
|
+
}
|
|
3242
|
+
|
|
3243
|
+
.cauldron--theme-dark .Stepper__step-line {
|
|
3244
|
+
border-top: var(--step-line-height) solid var(--accent-medium);
|
|
3245
|
+
}
|
|
3246
|
+
|
|
3247
|
+
.cauldron--theme-dark .Stepper__step-indicator {
|
|
3248
|
+
color: var(--white);
|
|
3249
|
+
background: var(--accent-medium);
|
|
3250
|
+
}
|
|
3251
|
+
|
|
3252
|
+
.cauldron--theme-dark .Stepper__step--current .Stepper__step-indicator {
|
|
3253
|
+
background: var(--white);
|
|
3254
|
+
color: var(--accent-dark);
|
|
3255
|
+
box-shadow: 0 0 0 2px var(--accent-dark), 0 0 0 4px var(--accent-info);
|
|
3256
|
+
}
|
|
3257
|
+
|
|
3258
|
+
.cauldron--theme-dark .Stepper__step--current .Stepper__step-line,
|
|
3259
|
+
.cauldron--theme-dark .Stepper__step--complete .Stepper__step-line {
|
|
3260
|
+
border-color: var(--accent-info);
|
|
3261
|
+
}
|
|
3262
|
+
|
|
3263
|
+
.cauldron--theme-dark .Stepper__step--complete .Stepper__step-indicator {
|
|
3264
|
+
background: var(--accent-info);
|
|
3265
|
+
color: var(--accent-dark);
|
|
3266
|
+
}
|
|
3267
|
+
|
|
3268
|
+
:root {
|
|
3269
|
+
--panel-border-color: var(--gray-40);
|
|
3270
|
+
--panel-header-background-color: var(--gray-20);
|
|
3271
|
+
--panel-header-color: var(--gray-90);
|
|
3272
|
+
--panel-content-background-color: var(--white);
|
|
3273
|
+
--panel-content-color: var(--gray-60);
|
|
3274
|
+
}
|
|
3275
|
+
|
|
3276
|
+
.Panel {
|
|
3277
|
+
border: 1px solid var(--panel-border-color);
|
|
3278
|
+
}
|
|
3279
|
+
|
|
3280
|
+
.Panel__Header {
|
|
3281
|
+
background-color: var(--panel-header-background-color);
|
|
3282
|
+
color: var(--panel-header-color);
|
|
3283
|
+
font-size: var(--text-size-normal);
|
|
3284
|
+
display: flex;
|
|
3285
|
+
border-bottom: 1px solid var(--panel-border-color);
|
|
3286
|
+
align-items: center;
|
|
3287
|
+
padding: var(--space-half) 0;
|
|
3288
|
+
}
|
|
3289
|
+
|
|
3290
|
+
.Panel__Header-title {
|
|
3291
|
+
flex-grow: 1;
|
|
3292
|
+
display: flex;
|
|
3293
|
+
font-weight: var(--font-weight-bold);
|
|
3294
|
+
padding-left: var(--space-small);
|
|
3295
|
+
}
|
|
3296
|
+
|
|
3297
|
+
.Panel__Header-actions {
|
|
3298
|
+
flex-grow: 1;
|
|
3299
|
+
text-align: right;
|
|
3300
|
+
margin-right: var(--space-smallest);
|
|
3301
|
+
}
|
|
3302
|
+
|
|
3303
|
+
.Panel__Content {
|
|
3304
|
+
font-size: var(--text-size-smaller);
|
|
3305
|
+
background-color: var(--panel-content-background-color);
|
|
3306
|
+
color: var(--panel-content-color);
|
|
3307
|
+
padding: var(--space-small);
|
|
3308
|
+
}
|
|
3309
|
+
|
|
3310
|
+
/* Dark Theme */
|
|
3311
|
+
|
|
3312
|
+
.cauldron--theme-dark {
|
|
3313
|
+
--panel-border-color: #5d676f;
|
|
3314
|
+
--panel-header-background-color: var(--accent-dark);
|
|
3315
|
+
--panel-header-color: var(--white);
|
|
3316
|
+
--panel-content-background-color: var(--accent-medium);
|
|
3317
|
+
--panel-content-color: var(--accent-light);
|
|
3318
|
+
}
|
|
3319
|
+
|
|
3320
|
+
.cauldron--theme-dark .Panel__Header {
|
|
3321
|
+
border-bottom: 1px solid var(--panel-border-color);
|
|
3322
|
+
}
|
package/package.json
CHANGED