@deque/cauldron-styles 5.7.0-canary.f86d18ec → 5.7.1-canary.024ab594
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 +15 -4
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1929,7 +1929,6 @@ p .Link {
|
|
|
1929
1929
|
|
|
1930
1930
|
.OptionsMenu {
|
|
1931
1931
|
position: relative;
|
|
1932
|
-
width: 34px;
|
|
1933
1932
|
color: var(--text-color-base);
|
|
1934
1933
|
}
|
|
1935
1934
|
|
|
@@ -3548,7 +3547,7 @@ button.TooltipTabstop {
|
|
|
3548
3547
|
color: var(--table-header-text-color);
|
|
3549
3548
|
display: flex;
|
|
3550
3549
|
align-items: center;
|
|
3551
|
-
justify-content:
|
|
3550
|
+
justify-content: flex-start;
|
|
3552
3551
|
padding: var(--table-space) var(--space-smallest);
|
|
3553
3552
|
}
|
|
3554
3553
|
|
|
@@ -3613,6 +3612,10 @@ button.TooltipTabstop {
|
|
|
3613
3612
|
border: 1px solid var(--gray-40);
|
|
3614
3613
|
}
|
|
3615
3614
|
|
|
3615
|
+
.Table--border .TableHeader {
|
|
3616
|
+
border-bottom: 2px solid var(--gray-40);
|
|
3617
|
+
}
|
|
3618
|
+
|
|
3616
3619
|
.cauldron--theme-dark .Table--border,
|
|
3617
3620
|
.cauldron--theme-dark .Table--border .TableHeader,
|
|
3618
3621
|
.cauldron--theme-dark .Table--border .TableFooter,
|
|
@@ -4345,6 +4348,14 @@ fieldset.Panel {
|
|
|
4345
4348
|
}
|
|
4346
4349
|
}
|
|
4347
4350
|
|
|
4351
|
+
:root {
|
|
4352
|
+
--breadcrumb-separator-color: var(--gray-60);
|
|
4353
|
+
}
|
|
4354
|
+
|
|
4355
|
+
.cauldron--theme-dark {
|
|
4356
|
+
--breadcrumb-separator-color: var(--accent-light);
|
|
4357
|
+
}
|
|
4358
|
+
|
|
4348
4359
|
.Breadcrumb ol {
|
|
4349
4360
|
display: block;
|
|
4350
4361
|
word-break: break-all;
|
|
@@ -4355,8 +4366,8 @@ fieldset.Panel {
|
|
|
4355
4366
|
}
|
|
4356
4367
|
|
|
4357
4368
|
.Breadcrumb__Separator {
|
|
4358
|
-
color: var(--gray-40);
|
|
4359
4369
|
padding: 0 var(--space-half);
|
|
4370
|
+
color: var(--breadcrumb-separator-color);
|
|
4360
4371
|
}
|
|
4361
4372
|
|
|
4362
4373
|
.Breadcrumb__Link {
|
|
@@ -4663,7 +4674,7 @@ fieldset.Panel {
|
|
|
4663
4674
|
|
|
4664
4675
|
:root {
|
|
4665
4676
|
--accordion-trigger-background-color: var(--white);
|
|
4666
|
-
--accordion-trigger-background-color-expanded: var(--
|
|
4677
|
+
--accordion-trigger-background-color-expanded: var(--white);
|
|
4667
4678
|
--accordion-trigger-text-color: var(--gray-90);
|
|
4668
4679
|
--accordion-trigger-text-color-hover: var(--accent-primary);
|
|
4669
4680
|
--accordion-trigger-box-shadow-hover: var(--accent-primary);
|
package/package.json
CHANGED