@deque/cauldron-styles 6.26.0-canary.0d4f60be → 6.26.0-canary.290ddaeb
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 -29
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -196,7 +196,6 @@
|
|
|
196
196
|
:root {
|
|
197
197
|
--workspace-background-color: #f0f2f5;
|
|
198
198
|
--heading-text-color: var(--header-text-color-dark);
|
|
199
|
-
--heading-font-family: var(--base-font-family);
|
|
200
199
|
}
|
|
201
200
|
|
|
202
201
|
.cauldron--theme-dark {
|
|
@@ -247,7 +246,6 @@ h5,
|
|
|
247
246
|
h6,
|
|
248
247
|
[role='heading'] {
|
|
249
248
|
color: var(--heading-text-color);
|
|
250
|
-
font-family: var(--heading-font-family);
|
|
251
249
|
}
|
|
252
250
|
|
|
253
251
|
ul {
|
|
@@ -1499,22 +1497,10 @@ button.Link {
|
|
|
1499
1497
|
min-width: var(--button-thin-height);
|
|
1500
1498
|
}
|
|
1501
1499
|
|
|
1502
|
-
|
|
1503
|
-
margin-left: var(--button-adjacent-spacing, var(--space-smallest));
|
|
1504
|
-
}
|
|
1505
|
-
|
|
1506
|
-
/* Gap-based button grouping — use instead of relying on adjacent-sibling margins.
|
|
1507
|
-
Handles flex-wrap correctly and avoids spacing issues in flex containers.
|
|
1508
|
-
See https://github.com/dequelabs/cauldron/issues/1944 */
|
|
1509
|
-
|
|
1510
|
-
.ButtonGroup {
|
|
1511
|
-
display: flex;
|
|
1512
|
-
flex-wrap: wrap;
|
|
1513
|
-
gap: var(--button-group-gap, var(--space-smallest));
|
|
1514
|
-
}
|
|
1500
|
+
/* Custom property for button sibling gap. Will be deprecated in https://github.com/dequelabs/cauldron/issues/1944 */
|
|
1515
1501
|
|
|
1516
|
-
|
|
1517
|
-
margin-left:
|
|
1502
|
+
[class*='Button--'] + [class*='Button--'] {
|
|
1503
|
+
margin-left: var(--button-sibling-gap, var(--space-smallest));
|
|
1518
1504
|
}
|
|
1519
1505
|
|
|
1520
1506
|
/* Dark Theme */
|
|
@@ -3432,7 +3418,6 @@ button.TooltipTabstop {
|
|
|
3432
3418
|
--code-padding: var(--space-smaller);
|
|
3433
3419
|
--code-border: 1px solid var(--code-border-color);
|
|
3434
3420
|
--code-display: block;
|
|
3435
|
-
--code-margin: 0 0 var(--space-smallest) 0;
|
|
3436
3421
|
}
|
|
3437
3422
|
|
|
3438
3423
|
.cauldron--theme-dark {
|
|
@@ -3453,7 +3438,6 @@ button.TooltipTabstop {
|
|
|
3453
3438
|
.Code.hljs {
|
|
3454
3439
|
display: var(--code-display);
|
|
3455
3440
|
padding: var(--code-padding);
|
|
3456
|
-
margin: var(--code-margin);
|
|
3457
3441
|
background: var(--code-background-color);
|
|
3458
3442
|
border: var(--code-border);
|
|
3459
3443
|
border-radius: 3px;
|
|
@@ -6461,13 +6445,6 @@ button.Accordion__trigger {
|
|
|
6461
6445
|
--dialog-vertical-offset: clamp(8px, calc(18vh - 50px), 100px);
|
|
6462
6446
|
--dialog-content-line-height: 1.4;
|
|
6463
6447
|
|
|
6464
|
-
/* ProgressBar: thinner default */
|
|
6465
|
-
--progress-bar-padding: 3px;
|
|
6466
|
-
--progress-bar-border-radius: 3px;
|
|
6467
|
-
--progress-bar-fill-height: var(--space-half);
|
|
6468
|
-
--progress-bar-fill-border-radius: 1px;
|
|
6469
|
-
--progress-bar-fill-min-width: 1px;
|
|
6470
|
-
|
|
6471
6448
|
/* OptionsMenu: auto-width for narrow viewports */
|
|
6472
6449
|
--options-menu-width: auto;
|
|
6473
6450
|
|
|
@@ -6477,9 +6454,6 @@ button.Accordion__trigger {
|
|
|
6477
6454
|
/* Field select: constrained width */
|
|
6478
6455
|
--select-width: clamp(0px, 25rem, 100%);
|
|
6479
6456
|
|
|
6480
|
-
/* ExpandCollapse: adjust trigger icon position */
|
|
6481
|
-
--expandcollapse-trigger-icon-offset: -8px;
|
|
6482
|
-
|
|
6483
6457
|
/* Code: inline compact display */
|
|
6484
6458
|
--code-display: inline;
|
|
6485
6459
|
--code-padding: var(--space-quarter) var(--space-half);
|
package/package.json
CHANGED