@deque/cauldron-styles 4.7.0-canary.299bd7ab → 4.7.0-canary.2b7d027e
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 +62 -14
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
--focus-light: #c11bde;
|
|
40
40
|
--focus-dark: #eb94ff;
|
|
41
41
|
--issue-critical: var(--accent-danger);
|
|
42
|
-
--issue-serious:
|
|
43
|
-
--issue-moderate:
|
|
42
|
+
--issue-serious: var(--accent-warning);
|
|
43
|
+
--issue-moderate: #f0c4f8;
|
|
44
44
|
--issue-minor: var(--gray-20);
|
|
45
45
|
|
|
46
46
|
/* text colours */
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
--space-small: 16px;
|
|
70
70
|
--space-medium: 18px;
|
|
71
71
|
--space-large: 24px;
|
|
72
|
-
--space-largest:
|
|
72
|
+
--space-largest: 32px;
|
|
73
73
|
--space-half: 4px;
|
|
74
74
|
--space-three-quarters: 6px;
|
|
75
75
|
--space-quarter: 2px;
|
|
@@ -662,7 +662,7 @@ button.Link {
|
|
|
662
662
|
--button-background-color-secondary-active
|
|
663
663
|
);
|
|
664
664
|
--icon-button-outline-color-secondary: var(--button-outline-color-secondary);
|
|
665
|
-
--icon-button-border-color-secondary:
|
|
665
|
+
--icon-button-border-color-secondary: var(--gray-40);
|
|
666
666
|
|
|
667
667
|
--icon-button-background-color-error: var(--button-background-color-error);
|
|
668
668
|
--icon-button-background-color-error-disabled: var(
|
|
@@ -690,6 +690,7 @@ button.Link {
|
|
|
690
690
|
display: inline-flex;
|
|
691
691
|
justify-content: center;
|
|
692
692
|
align-content: center;
|
|
693
|
+
align-items: center;
|
|
693
694
|
height: var(--button-thin-height);
|
|
694
695
|
width: var(--button-thin-height);
|
|
695
696
|
border-radius: 3px;
|
|
@@ -704,11 +705,12 @@ button.Link {
|
|
|
704
705
|
|
|
705
706
|
a.IconButton {
|
|
706
707
|
vertical-align: middle;
|
|
708
|
+
line-height: unset;
|
|
707
709
|
}
|
|
708
710
|
|
|
709
711
|
.IconButton .Icon {
|
|
710
|
-
|
|
711
|
-
|
|
712
|
+
height: var(--space-small);
|
|
713
|
+
width: var(--space-small);
|
|
712
714
|
pointer-events: none;
|
|
713
715
|
}
|
|
714
716
|
|
|
@@ -2815,6 +2817,12 @@ button.TooltipTabstop {
|
|
|
2815
2817
|
background-color: var(--top-bar-text-color);
|
|
2816
2818
|
}
|
|
2817
2819
|
|
|
2820
|
+
@media (max-width: 71.25rem) {
|
|
2821
|
+
.TopBar > ul {
|
|
2822
|
+
border: 0;
|
|
2823
|
+
}
|
|
2824
|
+
}
|
|
2825
|
+
|
|
2818
2826
|
:root {
|
|
2819
2827
|
--skip-link-background-color: rgba(255, 255, 255, 0.95);
|
|
2820
2828
|
--skip-link-focus-color: var(--focus-light);
|
|
@@ -3433,7 +3441,7 @@ button.TooltipTabstop {
|
|
|
3433
3441
|
background: var(--table-header-background-color);
|
|
3434
3442
|
font-weight: var(--font-weight-medium);
|
|
3435
3443
|
color: var(--table-header-text-color);
|
|
3436
|
-
border-bottom:
|
|
3444
|
+
border-bottom: 3px solid var(--table-row-border-color);
|
|
3437
3445
|
}
|
|
3438
3446
|
|
|
3439
3447
|
.TableHeader[aria-sort] {
|
|
@@ -3462,10 +3470,11 @@ button.TooltipTabstop {
|
|
|
3462
3470
|
outline-offset: unset;
|
|
3463
3471
|
}
|
|
3464
3472
|
|
|
3473
|
+
.TableHeader,
|
|
3465
3474
|
.TableHeader--sort-ascending,
|
|
3466
3475
|
.TableHeader--sort-descending {
|
|
3467
3476
|
background: var(--table-header-sorting-background-color);
|
|
3468
|
-
border-bottom:
|
|
3477
|
+
border-bottom: 3px solid var(--table-header-sorting-border-color);
|
|
3469
3478
|
}
|
|
3470
3479
|
|
|
3471
3480
|
.TableHeader--sort-ascending .TableHeader__sort-button,
|
|
@@ -3486,7 +3495,8 @@ button.TooltipTabstop {
|
|
|
3486
3495
|
}
|
|
3487
3496
|
|
|
3488
3497
|
.TableCell,
|
|
3489
|
-
.TableHeader
|
|
3498
|
+
.TableHeader,
|
|
3499
|
+
.TableFooter {
|
|
3490
3500
|
padding: var(--table-space) var(--space-smallest);
|
|
3491
3501
|
}
|
|
3492
3502
|
|
|
@@ -3498,25 +3508,41 @@ button.TooltipTabstop {
|
|
|
3498
3508
|
box-shadow: var(--table-box-shadow);
|
|
3499
3509
|
}
|
|
3500
3510
|
|
|
3511
|
+
.TableCell {
|
|
3512
|
+
color: var(--gray-90);
|
|
3513
|
+
}
|
|
3514
|
+
|
|
3515
|
+
.cauldron--theme-dark .TableCell {
|
|
3516
|
+
color: var(--white);
|
|
3517
|
+
}
|
|
3518
|
+
|
|
3501
3519
|
.Table--border,
|
|
3502
3520
|
.Table--border .TableHeader,
|
|
3521
|
+
.Table--border .TableFooter,
|
|
3503
3522
|
.Table--border .TableCell {
|
|
3504
3523
|
border: 1px solid var(--gray-40);
|
|
3505
3524
|
}
|
|
3506
3525
|
|
|
3507
3526
|
.cauldron--theme-dark .Table--border,
|
|
3508
3527
|
.cauldron--theme-dark .Table--border .TableHeader,
|
|
3528
|
+
.cauldron--theme-dark .Table--border .TableFooter,
|
|
3509
3529
|
.cauldron--theme-dark .Table--border .TableCell {
|
|
3510
3530
|
border-color: var(--stroke-dark);
|
|
3511
3531
|
}
|
|
3512
3532
|
|
|
3533
|
+
.TableFooter .TableCell {
|
|
3534
|
+
background: var(--table-header-background-color);
|
|
3535
|
+
font-weight: var(--font-weight-medium);
|
|
3536
|
+
color: var(--table-header-text-color);
|
|
3537
|
+
}
|
|
3538
|
+
|
|
3513
3539
|
:root {
|
|
3514
3540
|
--data-list-background-color: var(--gray-20);
|
|
3515
3541
|
--data-list-value-background-color: var(--white);
|
|
3516
3542
|
--data-list-border-color: var(--gray-40);
|
|
3517
3543
|
--data-list-text-color: var(--gray-90);
|
|
3518
|
-
--data-list-value-text-color: var(--gray-
|
|
3519
|
-
--data-list-space:
|
|
3544
|
+
--data-list-value-text-color: var(--gray-90);
|
|
3545
|
+
--data-list-space: var(--space-small);
|
|
3520
3546
|
--data-list-value-width: 187px;
|
|
3521
3547
|
}
|
|
3522
3548
|
|
|
@@ -3534,7 +3560,7 @@ button.TooltipTabstop {
|
|
|
3534
3560
|
border-radius: 3px;
|
|
3535
3561
|
border: 1px solid var(--data-list-border-color);
|
|
3536
3562
|
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
|
|
3537
|
-
margin-bottom: var(--space-small)
|
|
3563
|
+
margin-bottom: var(--space-small);
|
|
3538
3564
|
}
|
|
3539
3565
|
|
|
3540
3566
|
.DescriptionList.DescriptionList--collapsed {
|
|
@@ -3556,7 +3582,7 @@ button.TooltipTabstop {
|
|
|
3556
3582
|
|
|
3557
3583
|
.DescriptionList--collapsed .DescriptionList__item {
|
|
3558
3584
|
border: 0;
|
|
3559
|
-
margin-bottom:
|
|
3585
|
+
margin-bottom: 12px;
|
|
3560
3586
|
display: block;
|
|
3561
3587
|
background-color: var(--data-list-value-background-color);
|
|
3562
3588
|
}
|
|
@@ -3589,6 +3615,7 @@ button.TooltipTabstop {
|
|
|
3589
3615
|
background-color: transparent;
|
|
3590
3616
|
width: auto;
|
|
3591
3617
|
border-right: none;
|
|
3618
|
+
margin-bottom: 2px;
|
|
3592
3619
|
}
|
|
3593
3620
|
|
|
3594
3621
|
.DescriptionList__details {
|
|
@@ -3620,6 +3647,16 @@ button.TooltipTabstop {
|
|
|
3620
3647
|
color: var(--white);
|
|
3621
3648
|
}
|
|
3622
3649
|
|
|
3650
|
+
@media screen and (max-width: 32rem) {
|
|
3651
|
+
.DescriptionList {
|
|
3652
|
+
margin-bottom: 0;
|
|
3653
|
+
box-shadow: none;
|
|
3654
|
+
border-bottom: 0;
|
|
3655
|
+
border-left: 1px solid var(--gray-40);
|
|
3656
|
+
border-right: 1px solid var(--gray-40);
|
|
3657
|
+
}
|
|
3658
|
+
}
|
|
3659
|
+
|
|
3623
3660
|
.Stepper {
|
|
3624
3661
|
--step-indicator-size: 2em;
|
|
3625
3662
|
--step-line-height: 0.53em;
|
|
@@ -3747,7 +3784,7 @@ button.TooltipTabstop {
|
|
|
3747
3784
|
}
|
|
3748
3785
|
|
|
3749
3786
|
.Panel {
|
|
3750
|
-
padding: var(--space-
|
|
3787
|
+
padding: var(--space-small);
|
|
3751
3788
|
border: 1px solid var(--panel-border-color);
|
|
3752
3789
|
border-radius: 3px;
|
|
3753
3790
|
box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
|
|
@@ -4066,6 +4103,7 @@ fieldset.Panel {
|
|
|
4066
4103
|
display: flex;
|
|
4067
4104
|
align-items: center;
|
|
4068
4105
|
font-size: var(--text-size-small);
|
|
4106
|
+
margin: 0;
|
|
4069
4107
|
}
|
|
4070
4108
|
|
|
4071
4109
|
.Pagination > ul > li:not(:last-child) {
|
|
@@ -4116,6 +4154,16 @@ fieldset.Panel {
|
|
|
4116
4154
|
color: var(--accent-light);
|
|
4117
4155
|
}
|
|
4118
4156
|
|
|
4157
|
+
@media (max-width: 28.125rem) {
|
|
4158
|
+
.Pagination [role='log'] {
|
|
4159
|
+
margin: 0;
|
|
4160
|
+
}
|
|
4161
|
+
|
|
4162
|
+
.Pagination--thin [role='log'] {
|
|
4163
|
+
margin: 0;
|
|
4164
|
+
}
|
|
4165
|
+
}
|
|
4166
|
+
|
|
4119
4167
|
.Breadcrumb ol {
|
|
4120
4168
|
display: flex;
|
|
4121
4169
|
align-items: center;
|
package/package.json
CHANGED