@deque/cauldron-styles 6.0.0-canary.f84823fa → 6.1.0-canary.e8a7f45e
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 +219 -113
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -423,6 +423,8 @@ p {
|
|
|
423
423
|
--button-text-color-light: var(--white);
|
|
424
424
|
--button-focus-ring-color: var(--focus-light);
|
|
425
425
|
--button-thin-height: 23px;
|
|
426
|
+
|
|
427
|
+
--button-height: 36px;
|
|
426
428
|
}
|
|
427
429
|
|
|
428
430
|
.Button--primary,
|
|
@@ -436,7 +438,7 @@ p {
|
|
|
436
438
|
padding: 0 16px;
|
|
437
439
|
position: relative;
|
|
438
440
|
text-align: center;
|
|
439
|
-
min-height:
|
|
441
|
+
min-height: var(--button-height);
|
|
440
442
|
min-width: 100px;
|
|
441
443
|
display: inline-grid;
|
|
442
444
|
grid-auto-flow: column;
|
|
@@ -512,7 +514,7 @@ button.Link {
|
|
|
512
514
|
background-color: var(--button-background-color-primary-disabled);
|
|
513
515
|
}
|
|
514
516
|
|
|
515
|
-
.Button--primary:active {
|
|
517
|
+
.Button--primary:not([disabled]):not([aria-disabled='true']):active {
|
|
516
518
|
background: var(--button-background-color-primary-active);
|
|
517
519
|
}
|
|
518
520
|
|
|
@@ -528,7 +530,7 @@ button.Link {
|
|
|
528
530
|
background-color: var(--button-background-color-secondary-disabled);
|
|
529
531
|
}
|
|
530
532
|
|
|
531
|
-
.Button--secondary:active {
|
|
533
|
+
.Button--secondary:not([disabled]):not([aria-disabled='true']):active {
|
|
532
534
|
background-color: var(--button-background-color-secondary-active);
|
|
533
535
|
}
|
|
534
536
|
|
|
@@ -545,7 +547,7 @@ button.Link {
|
|
|
545
547
|
background-color: var(--button-background-color-error-disabled);
|
|
546
548
|
}
|
|
547
549
|
|
|
548
|
-
.Button--error:active {
|
|
550
|
+
.Button--error:not([disabled]):not([aria-disabled='true']):active {
|
|
549
551
|
background-color: var(--button-background-color-error-active);
|
|
550
552
|
}
|
|
551
553
|
|
|
@@ -642,12 +644,15 @@ button.Link {
|
|
|
642
644
|
color: var(--dark-workspace-color);
|
|
643
645
|
}
|
|
644
646
|
|
|
645
|
-
.cauldron--theme-dark
|
|
646
|
-
.
|
|
647
|
+
.cauldron--theme-dark
|
|
648
|
+
.Button--primary:not([disabled]):not([aria-disabled='true']):active,
|
|
649
|
+
.cauldron--theme-dark
|
|
650
|
+
.Button--secondary:not([disabled]):not([aria-disabled='true']):active {
|
|
647
651
|
color: var(--accent-medium);
|
|
648
652
|
}
|
|
649
653
|
|
|
650
|
-
.cauldron--theme-dark
|
|
654
|
+
.cauldron--theme-dark
|
|
655
|
+
.Button--error:not([disabled]):not([aria-disabled='true']):active {
|
|
651
656
|
background-color: #fea7a6;
|
|
652
657
|
color: var(--accent-medium);
|
|
653
658
|
}
|
|
@@ -685,38 +690,37 @@ button.Link {
|
|
|
685
690
|
}
|
|
686
691
|
|
|
687
692
|
:root {
|
|
693
|
+
/* Primary */
|
|
694
|
+
--icon-button-primary-color: var(--button-text-color-light);
|
|
688
695
|
--icon-button-background-color-primary: var(
|
|
689
696
|
--button-background-color-primary
|
|
690
697
|
);
|
|
691
|
-
--icon-button-background-color-primary-disabled: var(
|
|
692
|
-
--button-background-color-primary-disabled
|
|
693
|
-
);
|
|
694
698
|
--icon-button-background-color-primary-active: var(
|
|
695
699
|
--button-background-color-primary-active
|
|
696
700
|
);
|
|
697
701
|
--icon-button-outline-color-primary: var(--button-outline-color-primary);
|
|
698
702
|
|
|
703
|
+
--icon-button-large-height: var(--button-height);
|
|
704
|
+
|
|
705
|
+
/* Secondary */
|
|
706
|
+
--icon-button-secondary-color: var(--button-text-color-dark);
|
|
699
707
|
--icon-button-background-color-secondary: var(
|
|
700
708
|
--button-background-color-secondary
|
|
701
709
|
);
|
|
702
|
-
--icon-button-background-color-secondary-disabled: var(
|
|
703
|
-
--button-background-color-secondary-disabled
|
|
704
|
-
);
|
|
705
710
|
--icon-button-background-color-secondary-active: var(
|
|
706
711
|
--button-background-color-secondary-active
|
|
707
712
|
);
|
|
708
713
|
--icon-button-outline-color-secondary: var(--button-outline-color-secondary);
|
|
709
714
|
--icon-button-border-color-secondary: var(--gray-40);
|
|
710
715
|
|
|
716
|
+
/* Error */
|
|
711
717
|
--icon-button-background-color-error: var(--button-background-color-error);
|
|
712
|
-
--icon-button-
|
|
713
|
-
--button-background-color-error-disabled
|
|
714
|
-
);
|
|
718
|
+
--icon-button-outline-color-error: var(--button-outline-color-error);
|
|
715
719
|
--icon-button-background-color-error-active: var(
|
|
716
720
|
--button-background-color-error-active
|
|
717
721
|
);
|
|
718
|
-
--icon-button-outline-color-error: var(--button-outline-color-error);
|
|
719
722
|
|
|
723
|
+
/* Deprecated variables */
|
|
720
724
|
--icon-button-content-color-light-disabled: #ccc;
|
|
721
725
|
--icon-button-background-color-light: #dadada;
|
|
722
726
|
--icon-button-background-color-light-active: #c2c2c2;
|
|
@@ -727,6 +731,12 @@ button.Link {
|
|
|
727
731
|
--icon-button-background-color-dark-disabled: var(--accent-medium);
|
|
728
732
|
--icon-button-background-color-dark-active: var(--accent-dark);
|
|
729
733
|
--icon-button-outline-color-dark: var(--icon-button-background-color-dark);
|
|
734
|
+
--icon-button-background-color-secondary-disabled: var(
|
|
735
|
+
--button-background-color-secondary-disabled
|
|
736
|
+
);
|
|
737
|
+
--icon-button-background-color-error-disabled: var(
|
|
738
|
+
--button-background-color-error-disabled
|
|
739
|
+
);
|
|
730
740
|
}
|
|
731
741
|
|
|
732
742
|
.IconButton {
|
|
@@ -778,21 +788,26 @@ a.IconButton {
|
|
|
778
788
|
pointer-events: none;
|
|
779
789
|
}
|
|
780
790
|
|
|
781
|
-
.IconButton--
|
|
782
|
-
|
|
791
|
+
.IconButton--large {
|
|
792
|
+
height: var(--icon-button-large-height);
|
|
793
|
+
width: var(--icon-button-large-height);
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
.IconButton--secondary:is([aria-disabled='true'], [disabled]),
|
|
797
|
+
.IconButton--secondary:is([aria-disabled='true'], [disabled]):active {
|
|
783
798
|
color: var(--disabled);
|
|
784
799
|
background-color: var(--button-background-color-secondary-disabled);
|
|
785
800
|
cursor: default;
|
|
786
801
|
}
|
|
787
802
|
|
|
788
|
-
.IconButton--primary[aria-disabled='true'],
|
|
789
|
-
.IconButton--primary[disabled] {
|
|
803
|
+
.IconButton--primary:is([aria-disabled='true'], [disabled]),
|
|
804
|
+
.IconButton--primary:is([aria-disabled='true'], [disabled]):active {
|
|
790
805
|
background-color: var(--button-background-color-primary-disabled);
|
|
791
806
|
cursor: default;
|
|
792
807
|
}
|
|
793
808
|
|
|
794
|
-
.IconButton--error[aria-disabled='true'],
|
|
795
|
-
.IconButton--error[disabled] {
|
|
809
|
+
.IconButton--error:is([aria-disabled='true'], [disabled]),
|
|
810
|
+
.IconButton--error:is([aria-disabled='true'], [disabled]):active {
|
|
796
811
|
color: var(--button-text-color-light);
|
|
797
812
|
background-color: var(--button-background-color-error-disabled);
|
|
798
813
|
cursor: default;
|
|
@@ -804,7 +819,7 @@ a.IconButton {
|
|
|
804
819
|
|
|
805
820
|
.IconButton--primary {
|
|
806
821
|
background-color: var(--icon-button-background-color-primary);
|
|
807
|
-
color: var(--button-
|
|
822
|
+
color: var(--icon-button-primary-color);
|
|
808
823
|
}
|
|
809
824
|
|
|
810
825
|
.IconButton--primary:not([disabled]):not([aria-disabled='true']):hover:before {
|
|
@@ -818,10 +833,12 @@ a.IconButton {
|
|
|
818
833
|
.IconButton--secondary {
|
|
819
834
|
border: 1px solid var(--icon-button-border-color-secondary);
|
|
820
835
|
background-color: var(--icon-button-background-color-secondary);
|
|
821
|
-
color: var(--button-
|
|
836
|
+
color: var(--icon-button-secondary-color);
|
|
822
837
|
}
|
|
823
838
|
|
|
824
|
-
.IconButton--secondary:not([disabled]):not(
|
|
839
|
+
.IconButton--secondary:not([disabled]):not(
|
|
840
|
+
[aria-disabled='true']
|
|
841
|
+
):hover:before {
|
|
825
842
|
box-shadow: 0 0 0 1px var(--icon-button-outline-color-secondary);
|
|
826
843
|
}
|
|
827
844
|
|
|
@@ -845,57 +862,91 @@ a.IconButton {
|
|
|
845
862
|
/* Dark Theme */
|
|
846
863
|
|
|
847
864
|
.cauldron--theme-dark {
|
|
848
|
-
--icon-button-border-color-secondary: var(--accent-medium);
|
|
849
|
-
--icon-button-background-color-secondary: var(--accent-medium);
|
|
850
|
-
--icon-button-background-color-primary: var(--gray-20);
|
|
851
865
|
--icon-button-icon-color: var(--white);
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
866
|
+
--icon-button-outline-shadow-color: var(--accent-medium);
|
|
867
|
+
--icon-button-disabled-color: var(--dark-workspace-color);
|
|
868
|
+
--icon-button-active-color: var(--accent-medium);
|
|
869
|
+
|
|
870
|
+
/* Primary */
|
|
871
|
+
--icon-button-primary-color: var(--white);
|
|
872
|
+
--icon-button-background-color-primary: var(--accent-medium);
|
|
873
|
+
--icon-button-background-color-primary-active: var(--accent-info-active);
|
|
874
|
+
--icon-button-outline-color-primary: var(--accent-info);
|
|
875
|
+
--icon-button-border-color-primary: var(--accent-info);
|
|
876
|
+
|
|
877
|
+
/* Secondary */
|
|
878
|
+
--icon-button-border-color-secondary: var(--accent-light);
|
|
879
|
+
--icon-button-background-color-secondary: var(--accent-medium);
|
|
880
|
+
--icon-button-secondary-color: var(--white);
|
|
881
|
+
--icon-button-background-color-secondary-active: var(--accent-light);
|
|
882
|
+
--icon-button-outline-color-secondary: var(--accent-light);
|
|
883
|
+
|
|
884
|
+
/* Error */
|
|
885
|
+
--icon-button-background-color-error: var(--accent-medium);
|
|
886
|
+
--icon-button-border-color-error: var(--accent-danger);
|
|
887
|
+
--icon-button-outline-color-error: var(--accent-danger);
|
|
888
|
+
--icon-button-background-color-error-active: var(
|
|
889
|
+
--button-background-color-error-active
|
|
890
|
+
);
|
|
857
891
|
}
|
|
858
892
|
|
|
859
893
|
.cauldron--theme-dark .IconButton--primary {
|
|
860
|
-
|
|
894
|
+
border: 2px solid var(--icon-button-border-color-primary);
|
|
861
895
|
}
|
|
862
896
|
|
|
863
|
-
.cauldron--theme-dark .IconButton--
|
|
864
|
-
|
|
865
|
-
background-color: var(--gray-20);
|
|
866
|
-
color: var(--gray-40);
|
|
897
|
+
.cauldron--theme-dark .IconButton--secondary {
|
|
898
|
+
border-width: 2px;
|
|
867
899
|
}
|
|
868
900
|
|
|
869
|
-
.cauldron--theme-dark .IconButton--
|
|
870
|
-
|
|
871
|
-
color: #5d676f;
|
|
901
|
+
.cauldron--theme-dark .IconButton--error {
|
|
902
|
+
border: 2px solid var(--icon-button-border-color-error);
|
|
872
903
|
}
|
|
873
904
|
|
|
874
|
-
.cauldron--theme-dark
|
|
875
|
-
|
|
905
|
+
.cauldron--theme-dark
|
|
906
|
+
.IconButton--primary:is([aria-disabled='true'], [disabled]),
|
|
907
|
+
.cauldron--theme-dark
|
|
908
|
+
.IconButton--secondary:is([aria-disabled='true'], [disabled]),
|
|
909
|
+
.cauldron--theme-dark
|
|
910
|
+
.IconButton--error:is([aria-disabled='true'], [disabled]) {
|
|
911
|
+
color: var(--icon-button-disabled-color);
|
|
876
912
|
}
|
|
877
913
|
|
|
878
|
-
.cauldron--theme-dark .IconButton--
|
|
879
|
-
|
|
880
|
-
|
|
914
|
+
.cauldron--theme-dark .IconButton--primary:active,
|
|
915
|
+
.cauldron--theme-dark .IconButton--secondary:active,
|
|
916
|
+
.cauldron--theme-dark .IconButton--error:active {
|
|
917
|
+
color: var(--icon-button-active-color);
|
|
881
918
|
}
|
|
882
919
|
|
|
883
|
-
.cauldron--theme-dark
|
|
884
|
-
|
|
920
|
+
.cauldron--theme-dark
|
|
921
|
+
.IconButton:is([aria-disabled='true'], [disabled]):active {
|
|
922
|
+
color: var(--icon-button-disabled-color);
|
|
885
923
|
}
|
|
886
924
|
|
|
887
|
-
.cauldron--theme-dark
|
|
888
|
-
|
|
925
|
+
.cauldron--theme-dark
|
|
926
|
+
.IconButton--primary:not([disabled]):not(
|
|
927
|
+
[aria-disabled='true']
|
|
928
|
+
):hover:before {
|
|
929
|
+
box-shadow: 0 0 0 1px var(--icon-button-outline-shadow-color),
|
|
930
|
+
0 0 0 2px var(--icon-button-outline-color-primary);
|
|
889
931
|
}
|
|
890
932
|
|
|
891
933
|
.cauldron--theme-dark
|
|
892
|
-
.IconButton--
|
|
893
|
-
|
|
934
|
+
.IconButton--secondary:not([disabled]):not(
|
|
935
|
+
[aria-disabled='true']
|
|
936
|
+
):hover:before {
|
|
937
|
+
box-shadow: 0 0 0 1px var(--icon-button-outline-shadow-color),
|
|
938
|
+
0 0 0 2px var(--icon-button-outline-color-secondary);
|
|
894
939
|
}
|
|
895
940
|
|
|
896
941
|
.cauldron--theme-dark
|
|
897
|
-
.IconButton--
|
|
898
|
-
box-shadow: 0 0 0 1px var(--
|
|
942
|
+
.IconButton--error:not([disabled]):not([aria-disabled='true']):hover:before {
|
|
943
|
+
box-shadow: 0 0 0 1px var(--icon-button-outline-shadow-color),
|
|
944
|
+
0 0 0 2px var(--icon-button-outline-color-error);
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
.cauldron--theme-dark .IconButton:focus:before {
|
|
948
|
+
box-shadow: 0 0 0 2px var(--icon-button-outline-shadow-color),
|
|
949
|
+
0 0 0 4px var(--button-focus-ring-color, --focus);
|
|
899
950
|
}
|
|
900
951
|
|
|
901
952
|
:root {
|
|
@@ -1228,6 +1279,7 @@ ul.semantic-only {
|
|
|
1228
1279
|
.cauldron--theme-dark {
|
|
1229
1280
|
--field-background-color: var(--accent-medium);
|
|
1230
1281
|
--field-content-color: var(--white);
|
|
1282
|
+
--field-border-color: #74818b;
|
|
1231
1283
|
--field-border-color-hover: var(--accent-info-light);
|
|
1232
1284
|
--field-border-color-focus: var(--accent-info);
|
|
1233
1285
|
--field-border-color-focus-hover: var(--accent-info-light);
|
|
@@ -1289,7 +1341,7 @@ textarea:focus,
|
|
|
1289
1341
|
[role='spinbutton']:focus {
|
|
1290
1342
|
outline: 0;
|
|
1291
1343
|
border: 1px solid var(--field-border-color-focus);
|
|
1292
|
-
box-shadow: 0 0 0
|
|
1344
|
+
box-shadow: 0 0 0 1px var(--field-border-color-focus),
|
|
1293
1345
|
0 0 5px var(--field-border-color-focus-glow),
|
|
1294
1346
|
inset 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
1295
1347
|
}
|
|
@@ -1314,6 +1366,9 @@ textarea:focus:hover,
|
|
|
1314
1366
|
[role='listbox']:focus:hover,
|
|
1315
1367
|
[role='spinbutton']:focus:hover {
|
|
1316
1368
|
border: 1px solid var(--field-border-color-focus-hover);
|
|
1369
|
+
box-shadow: 0 0 0 1px var(--field-border-color-focus-hover),
|
|
1370
|
+
0 0 5px var(--field-border-color-focus-glow),
|
|
1371
|
+
inset 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
1317
1372
|
}
|
|
1318
1373
|
|
|
1319
1374
|
input.Field--has-error,
|
|
@@ -1325,6 +1380,8 @@ textarea.Field--has-error,
|
|
|
1325
1380
|
[role='listbox'].Field--has-error,
|
|
1326
1381
|
[role='spinbutton'].Field--has-error {
|
|
1327
1382
|
border: 1px solid var(--field-border-color-error);
|
|
1383
|
+
box-shadow: 0 0 0 1px var(--field-border-color-error),
|
|
1384
|
+
inset 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
1328
1385
|
}
|
|
1329
1386
|
|
|
1330
1387
|
.Checkbox__overlay.Field--has-error {
|
|
@@ -1357,9 +1414,9 @@ textarea.Field--has-error:focus,
|
|
|
1357
1414
|
[role='listbox'].Field--has-error:focus,
|
|
1358
1415
|
[role='spinbutton'].Field--has-error:focus {
|
|
1359
1416
|
border: 1px solid var(--field-border-color-error);
|
|
1360
|
-
box-shadow: 0 0 0 1px var(--field-border-color-error
|
|
1361
|
-
|
|
1362
|
-
0 0
|
|
1417
|
+
box-shadow: 0 0 0 1px var(--field-border-color-error),
|
|
1418
|
+
0 0 5px var(--field-border-color-error-focus-glow),
|
|
1419
|
+
inset 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
1363
1420
|
}
|
|
1364
1421
|
|
|
1365
1422
|
input.Field--has-error:focus:hover,
|
|
@@ -3510,15 +3567,62 @@ button.TooltipTabstop {
|
|
|
3510
3567
|
}
|
|
3511
3568
|
}
|
|
3512
3569
|
|
|
3513
|
-
|
|
3514
|
-
--step-indicator-size:
|
|
3515
|
-
--step-line-height: 0.
|
|
3516
|
-
--step-line-offset: 1.
|
|
3570
|
+
:root {
|
|
3571
|
+
--step-indicator-size: 1.75rem;
|
|
3572
|
+
--step-line-height: 0.5rem;
|
|
3573
|
+
--step-line-offset: 1.438rem;
|
|
3574
|
+
|
|
3575
|
+
--step-indicator-content-size: 1rem;
|
|
3576
|
+
|
|
3577
|
+
--step-label-color: var(--gray-60);
|
|
3578
|
+
--step-line-color: var(--accent-light);
|
|
3579
|
+
--step-indicator-background: var(--accent-light);
|
|
3580
|
+
--step-indicator-color: var(--gray-90);
|
|
3581
|
+
|
|
3582
|
+
--step-current-indicator-background: #fff;
|
|
3583
|
+
--step-current-indicator-color: var(--accent-dark);
|
|
3584
|
+
--step-current-indicator-shadow: 0 0 0 2px var(--accent-dark);
|
|
3585
|
+
--step-current-complete-line-border-color: var(--accent-dark);
|
|
3586
|
+
|
|
3587
|
+
--step-complete-indicator-background: var(--accent-dark);
|
|
3588
|
+
--step-complete-indicator-color: #fff;
|
|
3589
|
+
|
|
3590
|
+
--step-current-label-color: var(--gray-90);
|
|
3591
|
+
--step-complete-indicator-svg-color: var(--accent-success);
|
|
3592
|
+
|
|
3593
|
+
--stepper-color: var(--gray-90);
|
|
3594
|
+
}
|
|
3595
|
+
|
|
3596
|
+
/* Dark theme variables */
|
|
3597
|
+
|
|
3598
|
+
.cauldron--theme-dark {
|
|
3599
|
+
--step-label-color: var(--accent-light);
|
|
3600
|
+
--step-line-color: var(--accent-medium);
|
|
3601
|
+
--step-indicator-color: #fff;
|
|
3602
|
+
--step-indicator-background: var(--accent-medium);
|
|
3603
|
+
|
|
3604
|
+
--step-current-indicator-background: #fff;
|
|
3605
|
+
--step-current-indicator-color: var(--accent-dark);
|
|
3606
|
+
--step-current-indicator-shadow: 0 0 0 2px var(--accent-dark),
|
|
3607
|
+
0 0 0 4px var(--accent-info);
|
|
3608
|
+
--step-current-complete-line-border-color: var(--accent-info);
|
|
3517
3609
|
|
|
3610
|
+
--step-complete-indicator-background: var(--accent-info);
|
|
3611
|
+
--step-complete-indicator-color: var(--accent-dark);
|
|
3612
|
+
|
|
3613
|
+
--step-current-label-color: #fff;
|
|
3614
|
+
--step-complete-indicator-svg-color: #000;
|
|
3615
|
+
|
|
3616
|
+
--stepper-color: var(--accent-light);
|
|
3617
|
+
--stepper-background-color: var(--accent-dark);
|
|
3618
|
+
}
|
|
3619
|
+
|
|
3620
|
+
.Stepper {
|
|
3518
3621
|
display: flex;
|
|
3519
3622
|
padding: var(--space-medium);
|
|
3520
3623
|
align-items: flex-start;
|
|
3521
|
-
color: var(--
|
|
3624
|
+
color: var(--stepper-color);
|
|
3625
|
+
background-color: var(--stepper-background-color);
|
|
3522
3626
|
counter-reset: stepper;
|
|
3523
3627
|
list-style-type: none;
|
|
3524
3628
|
margin: 0 auto;
|
|
@@ -3536,7 +3640,7 @@ button.TooltipTabstop {
|
|
|
3536
3640
|
left: calc(-50% + var(--step-line-offset));
|
|
3537
3641
|
right: calc(50% + var(--step-line-offset));
|
|
3538
3642
|
flex: 1 1 auto;
|
|
3539
|
-
border-top: var(--step-line-height) solid var(--
|
|
3643
|
+
border-top: var(--step-line-height) solid var(--step-line-color);
|
|
3540
3644
|
}
|
|
3541
3645
|
|
|
3542
3646
|
.Stepper__step:first-child .Stepper__step-line {
|
|
@@ -3553,16 +3657,16 @@ button.TooltipTabstop {
|
|
|
3553
3657
|
width: var(--step-indicator-size);
|
|
3554
3658
|
height: var(--step-indicator-size);
|
|
3555
3659
|
border-radius: 50%;
|
|
3556
|
-
background: var(--
|
|
3557
|
-
color: var(--
|
|
3660
|
+
background: var(--step-indicator-background);
|
|
3661
|
+
color: var(--step-indicator-color);
|
|
3558
3662
|
display: flex;
|
|
3559
3663
|
align-items: center;
|
|
3560
3664
|
justify-content: center;
|
|
3561
3665
|
flex-shrink: 0;
|
|
3562
3666
|
}
|
|
3563
3667
|
|
|
3564
|
-
.Stepper__step-indicator
|
|
3565
|
-
font-size: var(--text-size-
|
|
3668
|
+
.Stepper__step-indicator:before {
|
|
3669
|
+
font-size: var(--text-size-small);
|
|
3566
3670
|
counter-increment: stepper;
|
|
3567
3671
|
content: counter(stepper);
|
|
3568
3672
|
}
|
|
@@ -3572,62 +3676,46 @@ button.TooltipTabstop {
|
|
|
3572
3676
|
width: 100%;
|
|
3573
3677
|
padding-top: var(--space-smallest);
|
|
3574
3678
|
font-size: var(--text-size-smaller);
|
|
3679
|
+
color: var(--step-label-color);
|
|
3575
3680
|
}
|
|
3576
3681
|
|
|
3577
3682
|
/*
|
|
3578
3683
|
status-specific styles
|
|
3579
3684
|
*/
|
|
3580
3685
|
|
|
3581
|
-
.Stepper__step--current
|
|
3582
|
-
background: var(--
|
|
3583
|
-
color: var(--
|
|
3584
|
-
box-shadow:
|
|
3686
|
+
.Stepper__step--current-indicator {
|
|
3687
|
+
background: var(--step-current-indicator-background);
|
|
3688
|
+
color: var(--step-current-indicator-color);
|
|
3689
|
+
box-shadow: var(--step-current-indicator-shadow);
|
|
3585
3690
|
}
|
|
3586
3691
|
|
|
3587
|
-
.Stepper__step--current
|
|
3588
|
-
font-weight: var(--font-weight-
|
|
3589
|
-
}
|
|
3590
|
-
|
|
3591
|
-
.Stepper__step--current .Stepper__step-line,
|
|
3592
|
-
.Stepper__step--complete .Stepper__step-line {
|
|
3593
|
-
border-color: var(--accent-dark);
|
|
3594
|
-
}
|
|
3595
|
-
|
|
3596
|
-
.Stepper__step--complete .Stepper__step-indicator {
|
|
3597
|
-
background: var(--accent-dark);
|
|
3598
|
-
color: var(--white);
|
|
3599
|
-
}
|
|
3600
|
-
|
|
3601
|
-
/* Dark Theme */
|
|
3602
|
-
|
|
3603
|
-
.cauldron--theme-dark .Stepper {
|
|
3604
|
-
color: var(--accent-light);
|
|
3605
|
-
background-color: var(--accent-dark);
|
|
3692
|
+
.Stepper__step--current-indicator:before {
|
|
3693
|
+
font-weight: var(--font-weight-medium);
|
|
3606
3694
|
}
|
|
3607
3695
|
|
|
3608
|
-
.
|
|
3609
|
-
|
|
3696
|
+
.Stepper__step--current-label {
|
|
3697
|
+
font-weight: var(--font-weight-medium);
|
|
3698
|
+
color: var(--step-current-label-color);
|
|
3610
3699
|
}
|
|
3611
3700
|
|
|
3612
|
-
.
|
|
3613
|
-
|
|
3614
|
-
|
|
3701
|
+
.Stepper__step--current-line,
|
|
3702
|
+
.Stepper__step--complete-line {
|
|
3703
|
+
border-color: var(--step-current-complete-line-border-color);
|
|
3615
3704
|
}
|
|
3616
3705
|
|
|
3617
|
-
.
|
|
3618
|
-
background: var(--
|
|
3619
|
-
color: var(--
|
|
3620
|
-
box-shadow: 0 0 0 2px var(--accent-dark), 0 0 0 4px var(--accent-info);
|
|
3706
|
+
.Stepper__step--complete-indicator {
|
|
3707
|
+
background: var(--step-complete-indicator-background);
|
|
3708
|
+
color: var(--step-complete-indicator-color);
|
|
3621
3709
|
}
|
|
3622
3710
|
|
|
3623
|
-
.
|
|
3624
|
-
|
|
3625
|
-
border-color: var(--accent-info);
|
|
3711
|
+
.Stepper__step--complete-indicator:before {
|
|
3712
|
+
content: '';
|
|
3626
3713
|
}
|
|
3627
3714
|
|
|
3628
|
-
.
|
|
3629
|
-
|
|
3630
|
-
|
|
3715
|
+
.Stepper__step--complete-indicator svg {
|
|
3716
|
+
height: var(--step-indicator-content-size);
|
|
3717
|
+
width: var(--step-indicator-content-size);
|
|
3718
|
+
color: var(--step-complete-indicator-svg-color);
|
|
3631
3719
|
}
|
|
3632
3720
|
|
|
3633
3721
|
:root {
|
|
@@ -4752,8 +4840,11 @@ button.Accordion__trigger {
|
|
|
4752
4840
|
border: 1px solid var(--combobox-input-border-color);
|
|
4753
4841
|
}
|
|
4754
4842
|
|
|
4755
|
-
.Combobox__input
|
|
4756
|
-
|
|
4843
|
+
.cauldron--theme-dark .Combobox__input--error {
|
|
4844
|
+
border: 1px solid var(--combobox-input-error-border-color);
|
|
4845
|
+
}
|
|
4846
|
+
|
|
4847
|
+
.Combobox__input:hover {
|
|
4757
4848
|
border-color: var(--combobox-input-border-hover-color);
|
|
4758
4849
|
}
|
|
4759
4850
|
|
|
@@ -4765,7 +4856,7 @@ button.Accordion__trigger {
|
|
|
4765
4856
|
|
|
4766
4857
|
.Combobox__input:focus-within {
|
|
4767
4858
|
border: 1px solid var(--combobox-input-border-focus-color);
|
|
4768
|
-
box-shadow: 0 0 0
|
|
4859
|
+
box-shadow: 0 0 0 1px var(--combobox-input-border-focus-color),
|
|
4769
4860
|
0 0 5px var(--combobox-input-border-focus-glow-color),
|
|
4770
4861
|
inset 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
4771
4862
|
}
|
|
@@ -4908,13 +4999,28 @@ button.Accordion__trigger {
|
|
|
4908
4999
|
|
|
4909
5000
|
.Combobox__input--error {
|
|
4910
5001
|
border: 1px solid var(--combobox-input-error-border-color);
|
|
5002
|
+
box-shadow: 0 0 0 1px var(--combobox-input-error-border-color),
|
|
5003
|
+
inset 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
4911
5004
|
}
|
|
4912
5005
|
|
|
4913
5006
|
.Combobox__input--error:focus-within {
|
|
4914
5007
|
border: 1px solid var(--combobox-input-error-border-color);
|
|
4915
|
-
box-shadow: 0 0 0 1px var(--combobox-input-error-
|
|
4916
|
-
|
|
4917
|
-
0 0
|
|
5008
|
+
box-shadow: 0 0 0 1px var(--combobox-input-error-border-color),
|
|
5009
|
+
0 0 5px var(--field-border-color-error-focus-glow),
|
|
5010
|
+
inset 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
5011
|
+
}
|
|
5012
|
+
|
|
5013
|
+
.Combobox__input--error:focus-within:hover {
|
|
5014
|
+
border: 1px solid var(--combobox-input-error-border-color);
|
|
5015
|
+
box-shadow: 0 0 0 1px var(--combobox-input-error-border-color),
|
|
5016
|
+
0 0 5px var(--field-border-color-error-focus-glow),
|
|
5017
|
+
inset 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
5018
|
+
}
|
|
5019
|
+
|
|
5020
|
+
.Combobox__input--error:hover {
|
|
5021
|
+
border: 1px solid var(--combobox-input-error-border-color);
|
|
5022
|
+
box-shadow: 0 0 0 1px var(--combobox-input-error-border-color),
|
|
5023
|
+
inset 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
4918
5024
|
}
|
|
4919
5025
|
|
|
4920
5026
|
.ComboboxListbox__empty {
|
package/package.json
CHANGED