@sage/design-tokens 18.12.2 → 18.14.0

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.
@@ -7,6 +7,9 @@
7
7
  */
8
8
 
9
9
  :root {
10
+ --container-size-dialog-maxwidth-s: 540px;
11
+ --container-size-dialog-maxwidth-m: 850px;
12
+ --container-size-dialog-maxwidth-l: 1080px;
10
13
  --container-size-fluid-items-2-xs: 80px;
11
14
  --container-size-fluid-items-xs: 128px;
12
15
  --container-size-fluid-items-s: 160px;
@@ -16,9 +19,11 @@
16
19
  --container-size-fluid-items-2-xl: 320px;
17
20
  --container-size-fluid-items-3-xl: 560px;
18
21
  --container-size-fluid-items-4-xl: 760px;
19
- --container-size-dialog-maxwidth-s: 540px;
20
- --container-size-dialog-maxwidth-m: 850px;
21
- --container-size-dialog-maxwidth-l: 1080px;
22
+ --container-size-layout-maxwidth-s: 720px;
23
+ --container-size-layout-maxwidth-m: 1200px;
24
+ --container-size-layout-maxwidth-l: 1520px;
25
+ --container-size-layout-maxwidth-xl: 1840px;
26
+ --container-draggable-ghost: 0.5;
22
27
  --container-action-bg-footer-activated: var(--mode-color-status-positive-default);
23
28
  --container-action-bg-footer-active: var(--mode-color-action-grayscale-active);
24
29
  --container-action-border-activated: var(--mode-color-status-positive-default);
@@ -17,4 +17,6 @@
17
17
  --focus-inverse-label: var(--mode-color-action-focus-inverse-txt);
18
18
  --focus-shadow-default: 0 0 0 2px var(--focus-borderalt), 0 0 0 4px var(--focus-border);
19
19
  --focus-shadow-inset: inset 0 0 0 2px var(--focus-border), inset 0 0 0 4px var(--focus-borderalt);
20
+ --focus-shadow-inverse-default: 0 0 0 2px var(--focus-inverse-borderalt), 0 0 0 4px var(--focus-inverse-border);
21
+ --focus-shadow-inverse-inset: inset 0 0 0 2px var(--focus-inverse-border), inset 0 0 0 4px var(--focus-inverse-borderalt);
20
22
  }
package/css/light-all.css CHANGED
@@ -955,6 +955,8 @@
955
955
  --focus-inverse-label: var(--mode-color-action-focus-inverse-txt);
956
956
  --focus-shadow-default: 0 0 0 2px var(--focus-borderalt), 0 0 0 4px var(--focus-border);
957
957
  --focus-shadow-inset: inset 0 0 0 2px var(--focus-border), inset 0 0 0 4px var(--focus-borderalt);
958
+ --focus-shadow-inverse-default: 0 0 0 2px var(--focus-inverse-borderalt), 0 0 0 4px var(--focus-inverse-border);
959
+ --focus-shadow-inverse-inset: inset 0 0 0 2px var(--focus-inverse-border), inset 0 0 0 4px var(--focus-inverse-borderalt);
958
960
  --dataviz-chart-bar-fuchsia-bg-alt: var(--mode-color-colorcode-pink-faint);
959
961
  --dataviz-chart-bar-fuchsia-bg-default: var(--mode-color-colorcode-pink-intense);
960
962
  --dataviz-chart-bar-fuchsia-border: var(--mode-color-colorcode-pink-intense);
@@ -1106,6 +1108,9 @@
1106
1108
  --dataviz-generic-slate-bg-default: var(--mode-color-colorcode-slate-faint);
1107
1109
  --dataviz-generic-slate-border: var(--mode-color-colorcode-slate-harsh);
1108
1110
  --dataviz-generic-slate-pattern: var(--mode-color-colorcode-slate-harsh);
1111
+ --container-size-dialog-maxwidth-s: 540px;
1112
+ --container-size-dialog-maxwidth-m: 850px;
1113
+ --container-size-dialog-maxwidth-l: 1080px;
1109
1114
  --container-size-fluid-items-2-xs: 80px;
1110
1115
  --container-size-fluid-items-xs: 128px;
1111
1116
  --container-size-fluid-items-s: 160px;
@@ -1115,9 +1120,11 @@
1115
1120
  --container-size-fluid-items-2-xl: 320px;
1116
1121
  --container-size-fluid-items-3-xl: 560px;
1117
1122
  --container-size-fluid-items-4-xl: 760px;
1118
- --container-size-dialog-maxwidth-s: 540px;
1119
- --container-size-dialog-maxwidth-m: 850px;
1120
- --container-size-dialog-maxwidth-l: 1080px;
1123
+ --container-size-layout-maxwidth-s: 720px;
1124
+ --container-size-layout-maxwidth-m: 1200px;
1125
+ --container-size-layout-maxwidth-l: 1520px;
1126
+ --container-size-layout-maxwidth-xl: 1840px;
1127
+ --container-draggable-ghost: 0.5;
1121
1128
  --container-action-bg-footer-activated: var(--mode-color-status-positive-default);
1122
1129
  --container-action-bg-footer-active: var(--mode-color-action-grayscale-active);
1123
1130
  --container-action-border-activated: var(--mode-color-status-positive-default);
@@ -104,6 +104,13 @@ declare const tokens: {
104
104
  border: DesignToken;
105
105
  };
106
106
  size: {
107
+ dialog: {
108
+ maxwidth: {
109
+ S: DesignToken;
110
+ M: DesignToken;
111
+ L: DesignToken;
112
+ };
113
+ };
107
114
  fluidItems: {
108
115
  "2XS": DesignToken;
109
116
  XS: DesignToken;
@@ -115,13 +122,17 @@ declare const tokens: {
115
122
  "3XL": DesignToken;
116
123
  "4XL": DesignToken;
117
124
  };
118
- dialog: {
125
+ layout: {
119
126
  maxwidth: {
120
127
  S: DesignToken;
121
128
  M: DesignToken;
122
129
  L: DesignToken;
130
+ XL: DesignToken;
123
131
  };
124
132
  };
125
133
  };
134
+ draggable: {
135
+ ghost: DesignToken;
136
+ };
126
137
  };
127
138
  };
@@ -65,6 +65,9 @@ module.exports.containerStandardPriorityInverseBgInfo = "var(--mode-color-status
65
65
  module.exports.containerStandardPriorityInverseBgNeutral = "var(--mode-color-status-neutral-inverse-default)";
66
66
  module.exports.containerStandardPriorityInverseBgPositive = "var(--mode-color-status-positive-inverse-default)";
67
67
  module.exports.containerQuoteBorder = "var(--mode-color-action-main-default)";
68
+ module.exports.containerSizeDialogMaxwidthS = "540px";
69
+ module.exports.containerSizeDialogMaxwidthM = "850px";
70
+ module.exports.containerSizeDialogMaxwidthL = "1080px";
68
71
  module.exports.containerSizeFluidItems2Xs = "80px";
69
72
  module.exports.containerSizeFluidItemsXs = "128px";
70
73
  module.exports.containerSizeFluidItemsS = "160px";
@@ -74,6 +77,8 @@ module.exports.containerSizeFluidItemsXl = "288px";
74
77
  module.exports.containerSizeFluidItems2Xl = "320px";
75
78
  module.exports.containerSizeFluidItems3Xl = "560px";
76
79
  module.exports.containerSizeFluidItems4Xl = "760px";
77
- module.exports.containerSizeDialogMaxwidthS = "540px";
78
- module.exports.containerSizeDialogMaxwidthM = "850px";
79
- module.exports.containerSizeDialogMaxwidthL = "1080px";
80
+ module.exports.containerSizeLayoutMaxwidthS = "720px";
81
+ module.exports.containerSizeLayoutMaxwidthM = "1200px";
82
+ module.exports.containerSizeLayoutMaxwidthL = "1520px";
83
+ module.exports.containerSizeLayoutMaxwidthXl = "1840px";
84
+ module.exports.containerDraggableGhost = "0.5";
@@ -33,6 +33,10 @@ declare const tokens: {
33
33
  shadow: {
34
34
  default: DesignToken;
35
35
  inset: DesignToken;
36
+ inverse: {
37
+ default: DesignToken;
38
+ inset: DesignToken;
39
+ };
36
40
  };
37
41
  };
38
42
  };
@@ -12,3 +12,5 @@ module.exports.focusInverseBorder = "var(--mode-color-action-focus-inverse-with-
12
12
  module.exports.focusInverseLabel = "var(--mode-color-action-focus-inverse-txt)";
13
13
  module.exports.focusShadowDefault = "0 0 0 2px var(--focus-borderalt), 0 0 0 4px var(--focus-border)";
14
14
  module.exports.focusShadowInset = "inset 0 0 0 2px var(--focus-border), inset 0 0 0 4px var(--focus-borderalt)";
15
+ module.exports.focusShadowInverseDefault = "0 0 0 2px var(--focus-inverse-borderalt), 0 0 0 4px var(--focus-inverse-border)";
16
+ module.exports.focusShadowInverseInset = "inset 0 0 0 2px var(--focus-inverse-border), inset 0 0 0 4px var(--focus-inverse-borderalt)";
@@ -93,6 +93,12 @@ export const containerStandardPriorityInverseBgInfo: string;
93
93
  export const containerStandardPriorityInverseBgNeutral: string;
94
94
  export const containerStandardPriorityInverseBgPositive: string;
95
95
  export const containerQuoteBorder: string;
96
+ /** max width for small dialog */
97
+ export const containerSizeDialogMaxwidthS: string;
98
+ /** max width for medium dialog */
99
+ export const containerSizeDialogMaxwidthM: string;
100
+ /** max width for large dialog */
101
+ export const containerSizeDialogMaxwidthL: string;
96
102
  /** min and max widths for responsive tile items */
97
103
  export const containerSizeFluidItems2Xs: string;
98
104
  /** min and max widths for responsive tile items */
@@ -111,9 +117,13 @@ export const containerSizeFluidItems2Xl: string;
111
117
  export const containerSizeFluidItems3Xl: string;
112
118
  /** Max width for single line of txt. */
113
119
  export const containerSizeFluidItems4Xl: string;
114
- /** max width for small dialog */
115
- export const containerSizeDialogMaxwidthS: string;
116
- /** max width for medium dialog */
117
- export const containerSizeDialogMaxwidthM: string;
118
- /** max width for large dialog */
119
- export const containerSizeDialogMaxwidthL: string;
120
+ /** Used on Text blocks. Maintains optimal line length for readability. */
121
+ export const containerSizeLayoutMaxwidthS: string;
122
+ /** Used on forms and editorial with supporting elements. Prevents excessive line length, supports comprehension and scanning. */
123
+ export const containerSizeLayoutMaxwidthM: string;
124
+ /** Used on card or tile mixed layouts, dashboards and overview pages. Balances information density with readability on wide application layouts. */
125
+ export const containerSizeLayoutMaxwidthL: string;
126
+ /** Used on data-heavy views such as dense tables or data grids. Enables wide data views without forcing horizontal scrolling. May be exceeded where tables or data‑dense views require additional horizontal space. */
127
+ export const containerSizeLayoutMaxwidthXl: string;
128
+ /** ghost state for draggable table row, tile or card */
129
+ export const containerDraggableGhost: string;
@@ -65,6 +65,9 @@ export const containerStandardPriorityInverseBgInfo = "var(--mode-color-status-i
65
65
  export const containerStandardPriorityInverseBgNeutral = "var(--mode-color-status-neutral-inverse-default)";
66
66
  export const containerStandardPriorityInverseBgPositive = "var(--mode-color-status-positive-inverse-default)";
67
67
  export const containerQuoteBorder = "var(--mode-color-action-main-default)";
68
+ export const containerSizeDialogMaxwidthS = "540px";
69
+ export const containerSizeDialogMaxwidthM = "850px";
70
+ export const containerSizeDialogMaxwidthL = "1080px";
68
71
  export const containerSizeFluidItems2Xs = "80px";
69
72
  export const containerSizeFluidItemsXs = "128px";
70
73
  export const containerSizeFluidItemsS = "160px";
@@ -74,6 +77,8 @@ export const containerSizeFluidItemsXl = "288px";
74
77
  export const containerSizeFluidItems2Xl = "320px";
75
78
  export const containerSizeFluidItems3Xl = "560px";
76
79
  export const containerSizeFluidItems4Xl = "760px";
77
- export const containerSizeDialogMaxwidthS = "540px";
78
- export const containerSizeDialogMaxwidthM = "850px";
79
- export const containerSizeDialogMaxwidthL = "1080px";
80
+ export const containerSizeLayoutMaxwidthS = "720px";
81
+ export const containerSizeLayoutMaxwidthM = "1200px";
82
+ export const containerSizeLayoutMaxwidthL = "1520px";
83
+ export const containerSizeLayoutMaxwidthXl = "1840px";
84
+ export const containerDraggableGhost = "0.5";
@@ -14,19 +14,75 @@ export const focusInverseBg: string;
14
14
  export const focusInverseBorderalt: string;
15
15
  export const focusInverseBorder: string;
16
16
  export const focusInverseLabel: string;
17
- export const focusShadowDefault: {
18
- blur: string;
19
- spread: string;
20
- color: string;
21
- type: string;
22
- offsetX: string;
23
- offsetY: string;
24
- }[];
25
- export const focusShadowInset: {
26
- blur: string;
27
- spread: string;
28
- color: string;
29
- type: string;
30
- offsetX: string;
31
- offsetY: string;
32
- }[];
17
+ export const focusShadowDefault: [
18
+ {
19
+ blur: string;
20
+ spread: string;
21
+ color: string;
22
+ type: string;
23
+ offsetX: string;
24
+ offsetY: string;
25
+ },
26
+ {
27
+ blur: string;
28
+ spread: string;
29
+ color: string;
30
+ type: string;
31
+ offsetX: string;
32
+ offsetY: string;
33
+ },
34
+ ];
35
+ export const focusShadowInset: [
36
+ {
37
+ blur: string;
38
+ spread: string;
39
+ color: string;
40
+ type: string;
41
+ offsetX: string;
42
+ offsetY: string;
43
+ },
44
+ {
45
+ blur: string;
46
+ spread: string;
47
+ color: string;
48
+ type: string;
49
+ offsetX: string;
50
+ offsetY: string;
51
+ },
52
+ ];
53
+ export const focusShadowInverseDefault: [
54
+ {
55
+ blur: string;
56
+ spread: string;
57
+ color: string;
58
+ type: string;
59
+ offsetX: string;
60
+ offsetY: string;
61
+ },
62
+ {
63
+ blur: string;
64
+ spread: string;
65
+ color: string;
66
+ type: string;
67
+ offsetX: string;
68
+ offsetY: string;
69
+ },
70
+ ];
71
+ export const focusShadowInverseInset: [
72
+ {
73
+ blur: string;
74
+ spread: string;
75
+ color: string;
76
+ type: string;
77
+ offsetX: string;
78
+ offsetY: string;
79
+ },
80
+ {
81
+ blur: string;
82
+ spread: string;
83
+ color: string;
84
+ type: string;
85
+ offsetX: string;
86
+ offsetY: string;
87
+ },
88
+ ];
@@ -12,3 +12,5 @@ export const focusInverseBorder = "var(--mode-color-action-focus-inverse-with-de
12
12
  export const focusInverseLabel = "var(--mode-color-action-focus-inverse-txt)";
13
13
  export const focusShadowDefault = "0 0 0 2px var(--focus-borderalt), 0 0 0 4px var(--focus-border)";
14
14
  export const focusShadowInset = "inset 0 0 0 2px var(--focus-border), inset 0 0 0 4px var(--focus-borderalt)";
15
+ export const focusShadowInverseDefault = "0 0 0 2px var(--focus-inverse-borderalt), 0 0 0 4px var(--focus-inverse-border)";
16
+ export const focusShadowInverseInset = "inset 0 0 0 2px var(--focus-inverse-border), inset 0 0 0 4px var(--focus-inverse-borderalt)";
@@ -610,86 +610,160 @@ export const globalRadiusActionXl: string;
610
610
  export const globalRadiusAction2Xl: string;
611
611
  /** Icon only buttons */
612
612
  export const globalRadiusActionCircle: string;
613
- export const globalDepthNone: {
614
- blur: string;
615
- spread: string;
616
- color: string;
617
- type: string;
618
- offsetX: string;
619
- offsetY: string;
620
- }[];
613
+ export const globalDepthNone: [
614
+ {
615
+ blur: string;
616
+ spread: string;
617
+ color: string;
618
+ type: string;
619
+ offsetX: string;
620
+ offsetY: string;
621
+ },
622
+ ];
621
623
  /** Card default state */
622
- export const globalDepthLvl0: {
623
- blur: string;
624
- spread: string;
625
- color: string;
626
- type: string;
627
- offsetX: string;
628
- offsetY: string;
629
- }[];
624
+ export const globalDepthLvl0: [
625
+ {
626
+ blur: string;
627
+ spread: string;
628
+ color: string;
629
+ type: string;
630
+ offsetX: string;
631
+ offsetY: string;
632
+ },
633
+ {
634
+ blur: string;
635
+ spread: string;
636
+ color: string;
637
+ type: string;
638
+ offsetX: string;
639
+ offsetY: string;
640
+ },
641
+ ];
630
642
  /** Card hover state, Popover menus used on split, multiaction, dropdown and action popovers */
631
- export const globalDepthLvl1: {
632
- blur: string;
633
- spread: string;
634
- color: string;
635
- type: string;
636
- offsetX: string;
637
- offsetY: string;
638
- }[];
643
+ export const globalDepthLvl1: [
644
+ {
645
+ blur: string;
646
+ spread: string;
647
+ color: string;
648
+ type: string;
649
+ offsetX: string;
650
+ offsetY: string;
651
+ },
652
+ {
653
+ blur: string;
654
+ spread: string;
655
+ color: string;
656
+ type: string;
657
+ offsetX: string;
658
+ offsetY: string;
659
+ },
660
+ ];
639
661
  /** Nav Menu */
640
- export const globalDepthLvl2: {
641
- blur: string;
642
- spread: string;
643
- color: string;
644
- type: string;
645
- offsetX: string;
646
- offsetY: string;
647
- }[];
662
+ export const globalDepthLvl2: [
663
+ {
664
+ blur: string;
665
+ spread: string;
666
+ color: string;
667
+ type: string;
668
+ offsetX: string;
669
+ offsetY: string;
670
+ },
671
+ {
672
+ blur: string;
673
+ spread: string;
674
+ color: string;
675
+ type: string;
676
+ offsetX: string;
677
+ offsetY: string;
678
+ },
679
+ ];
648
680
  /** Dialog, Menu, Sidebar, Card drag state */
649
- export const globalDepthLvl3: {
650
- blur: string;
651
- spread: string;
652
- color: string;
653
- type: string;
654
- offsetX: string;
655
- offsetY: string;
656
- }[];
681
+ export const globalDepthLvl3: [
682
+ {
683
+ blur: string;
684
+ spread: string;
685
+ color: string;
686
+ type: string;
687
+ offsetX: string;
688
+ offsetY: string;
689
+ },
690
+ {
691
+ blur: string;
692
+ spread: string;
693
+ color: string;
694
+ type: string;
695
+ offsetX: string;
696
+ offsetY: string;
697
+ },
698
+ ];
657
699
  /** Sticky footer on dialogs, drawer and sidebar */
658
- export const globalDepthStickyB: {
659
- blur: string;
660
- spread: string;
661
- color: string;
662
- type: string;
663
- offsetX: string;
664
- offsetY: string;
665
- }[];
700
+ export const globalDepthStickyB: [
701
+ {
702
+ blur: string;
703
+ spread: string;
704
+ color: string;
705
+ type: string;
706
+ offsetX: string;
707
+ offsetY: string;
708
+ },
709
+ {
710
+ blur: string;
711
+ spread: string;
712
+ color: string;
713
+ type: string;
714
+ offsetX: string;
715
+ offsetY: string;
716
+ },
717
+ ];
666
718
  /** Left sticky column in Table. */
667
- export const globalDepthStickyL: {
668
- blur: string;
669
- spread: string;
670
- color: string;
671
- type: string;
672
- offsetX: string;
673
- offsetY: string;
674
- }[];
719
+ export const globalDepthStickyL: [
720
+ {
721
+ blur: string;
722
+ spread: string;
723
+ color: string;
724
+ type: string;
725
+ offsetX: string;
726
+ offsetY: string;
727
+ },
728
+ {
729
+ blur: string;
730
+ spread: string;
731
+ color: string;
732
+ type: string;
733
+ offsetX: string;
734
+ offsetY: string;
735
+ },
736
+ ];
675
737
  /** Right sticky column in Table. */
676
- export const globalDepthStickyR: {
677
- blur: string;
678
- spread: string;
679
- color: string;
680
- type: string;
681
- offsetX: string;
682
- offsetY: string;
683
- }[];
738
+ export const globalDepthStickyR: [
739
+ {
740
+ blur: string;
741
+ spread: string;
742
+ color: string;
743
+ type: string;
744
+ offsetX: string;
745
+ offsetY: string;
746
+ },
747
+ {
748
+ blur: string;
749
+ spread: string;
750
+ color: string;
751
+ type: string;
752
+ offsetX: string;
753
+ offsetY: string;
754
+ },
755
+ ];
684
756
  /** Sticky inset shadow applied to first child cells on expandable table */
685
- export const globalDepthStickyT: {
686
- blur: string;
687
- spread: string;
688
- color: string;
689
- type: string;
690
- offsetX: string;
691
- offsetY: string;
692
- }[];
757
+ export const globalDepthStickyT: [
758
+ {
759
+ blur: string;
760
+ spread: string;
761
+ color: string;
762
+ type: string;
763
+ offsetX: string;
764
+ offsetY: string;
765
+ },
766
+ ];
693
767
  export const globalSizeNone: string;
694
768
  export const globalSize6Xs: string;
695
769
  export const globalSize5Xs: string;
@@ -62,6 +62,9 @@
62
62
  "containerStandardPriorityInverseBgNeutral": "var(--mode-color-status-neutral-inverse-default)",
63
63
  "containerStandardPriorityInverseBgPositive": "var(--mode-color-status-positive-inverse-default)",
64
64
  "containerQuoteBorder": "var(--mode-color-action-main-default)",
65
+ "containerSizeDialogMaxwidthS": "540px",
66
+ "containerSizeDialogMaxwidthM": "850px",
67
+ "containerSizeDialogMaxwidthL": "1080px",
65
68
  "containerSizeFluidItems2Xs": "80px",
66
69
  "containerSizeFluidItemsXs": "128px",
67
70
  "containerSizeFluidItemsS": "160px",
@@ -71,7 +74,9 @@
71
74
  "containerSizeFluidItems2Xl": "320px",
72
75
  "containerSizeFluidItems3Xl": "560px",
73
76
  "containerSizeFluidItems4Xl": "760px",
74
- "containerSizeDialogMaxwidthS": "540px",
75
- "containerSizeDialogMaxwidthM": "850px",
76
- "containerSizeDialogMaxwidthL": "1080px"
77
+ "containerSizeLayoutMaxwidthS": "720px",
78
+ "containerSizeLayoutMaxwidthM": "1200px",
79
+ "containerSizeLayoutMaxwidthL": "1520px",
80
+ "containerSizeLayoutMaxwidthXl": "1840px",
81
+ "containerDraggableGhost": "0.5"
77
82
  }
@@ -8,5 +8,7 @@
8
8
  "focusInverseBorder": "var(--mode-color-action-focus-inverse-with-default)",
9
9
  "focusInverseLabel": "var(--mode-color-action-focus-inverse-txt)",
10
10
  "focusShadowDefault": "0 0 0 2px var(--focus-borderalt), 0 0 0 4px var(--focus-border)",
11
- "focusShadowInset": "inset 0 0 0 2px var(--focus-border), inset 0 0 0 4px var(--focus-borderalt)"
11
+ "focusShadowInset": "inset 0 0 0 2px var(--focus-border), inset 0 0 0 4px var(--focus-borderalt)",
12
+ "focusShadowInverseDefault": "0 0 0 2px var(--focus-inverse-borderalt), 0 0 0 4px var(--focus-inverse-border)",
13
+ "focusShadowInverseInset": "inset 0 0 0 2px var(--focus-inverse-border), inset 0 0 0 4px var(--focus-inverse-borderalt)"
12
14
  }
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  },
7
7
  "description": "Design tokens for the Sage Design System.",
8
8
  "author": "The Sage Group plc",
9
- "version": "18.12.2",
9
+ "version": "18.14.0",
10
10
  "license": "SEE LICENSE IN https://github.com/Sage/design-tokens/blob/master/license",
11
11
  "tags": [
12
12
  "design tokens",
@@ -3,6 +3,9 @@
3
3
 
4
4
  // Do not edit directly, this file was auto-generated.
5
5
 
6
+ $container-size-dialog-maxwidth-s: 540px;
7
+ $container-size-dialog-maxwidth-m: 850px;
8
+ $container-size-dialog-maxwidth-l: 1080px;
6
9
  $container-size-fluid-items-2-xs: 80px;
7
10
  $container-size-fluid-items-xs: 128px;
8
11
  $container-size-fluid-items-s: 160px;
@@ -12,9 +15,11 @@ $container-size-fluid-items-xl: 288px;
12
15
  $container-size-fluid-items-2-xl: 320px;
13
16
  $container-size-fluid-items-3-xl: 560px;
14
17
  $container-size-fluid-items-4-xl: 760px;
15
- $container-size-dialog-maxwidth-s: 540px;
16
- $container-size-dialog-maxwidth-m: 850px;
17
- $container-size-dialog-maxwidth-l: 1080px;
18
+ $container-size-layout-maxwidth-s: 720px;
19
+ $container-size-layout-maxwidth-m: 1200px;
20
+ $container-size-layout-maxwidth-l: 1520px;
21
+ $container-size-layout-maxwidth-xl: 1840px;
22
+ $container-draggable-ghost: 0.5;
18
23
  $container-action-bg-footer-activated: $mode-color-status-positive-default;
19
24
  $container-action-bg-footer-active: $mode-color-action-grayscale-active;
20
25
  $container-action-border-activated: $mode-color-status-positive-default;
@@ -13,3 +13,5 @@ $focus-inverse-border: $mode-color-action-focus-inverse-with-default;
13
13
  $focus-inverse-label: $mode-color-action-focus-inverse-txt;
14
14
  $focus-shadow-default: 0 0 0 2px $focus-borderalt, 0 0 0 4px $focus-border;
15
15
  $focus-shadow-inset: inset 0 0 0 2px $focus-border, inset 0 0 0 4px $focus-borderalt;
16
+ $focus-shadow-inverse-default: 0 0 0 2px $focus-inverse-borderalt, 0 0 0 4px $focus-inverse-border;
17
+ $focus-shadow-inverse-inset: inset 0 0 0 2px $focus-inverse-border, inset 0 0 0 4px $focus-inverse-borderalt;