@deque/cauldron-styles 6.22.0-canary.0869b40a → 6.22.0-canary.a2c25cdb
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 +3 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -3546,6 +3546,7 @@ button.TooltipTabstop {
|
|
|
3546
3546
|
--tab-shadow-color: var(--accent-primary);
|
|
3547
3547
|
--tab-inactive-background-color: #fff;
|
|
3548
3548
|
--tab-inactive-text-color: var(--gray-60);
|
|
3549
|
+
--tab-panel-background-color: #fff;
|
|
3549
3550
|
--tab-active-background-color: #fff;
|
|
3550
3551
|
--tab-hover-background-color: var(--gray-20);
|
|
3551
3552
|
--tab-panel-color: var(--gray-80);
|
|
@@ -3558,6 +3559,7 @@ button.TooltipTabstop {
|
|
|
3558
3559
|
.cauldron--theme-dark {
|
|
3559
3560
|
--tabs-border-color: var(--accent-dark);
|
|
3560
3561
|
--tab-shadow-color: var(--accent-info);
|
|
3562
|
+
--tab-panel-background-color: var(--accent-medium);
|
|
3561
3563
|
--tab-inactive-background-color: var(--accent-medium);
|
|
3562
3564
|
--tab-inactive-text-color: var(--accent-light);
|
|
3563
3565
|
--tab-active-background-color: var(--accent-medium);
|
|
@@ -3655,7 +3657,7 @@ button.TooltipTabstop {
|
|
|
3655
3657
|
.TabPanel {
|
|
3656
3658
|
overflow-wrap: break-word;
|
|
3657
3659
|
color: var(--tab-panel-color);
|
|
3658
|
-
background-color: var(--tab-
|
|
3660
|
+
background-color: var(--tab-panel-background-color);
|
|
3659
3661
|
}
|
|
3660
3662
|
|
|
3661
3663
|
.TabPanel > * {
|
package/package.json
CHANGED