@stackoverflow/stacks 0.75.0 → 0.76.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.
Files changed (87) hide show
  1. package/LICENSE.MD +9 -9
  2. package/README.md +47 -47
  3. package/dist/controllers/index.d.ts +7 -0
  4. package/dist/controllers/s-expandable-control.d.ts +17 -0
  5. package/dist/controllers/s-modal.d.ts +97 -0
  6. package/dist/controllers/s-navigation-tablist.d.ts +36 -0
  7. package/dist/controllers/s-popover.d.ts +155 -0
  8. package/dist/controllers/s-table.d.ts +8 -0
  9. package/dist/controllers/s-tooltip.d.ts +82 -0
  10. package/dist/controllers/s-uploader.d.ts +48 -0
  11. package/dist/css/stacks.css +86 -53
  12. package/dist/css/stacks.min.css +1 -1
  13. package/dist/index.d.ts +3 -0
  14. package/dist/js/stacks.js +6128 -5505
  15. package/dist/js/stacks.min.js +1 -1
  16. package/dist/stacks.d.ts +21 -0
  17. package/lib/css/atomic/_stacks-borders.less +378 -378
  18. package/lib/css/atomic/_stacks-colors.less +209 -209
  19. package/lib/css/atomic/_stacks-flex.less +374 -374
  20. package/lib/css/atomic/_stacks-grid.less +174 -173
  21. package/lib/css/atomic/_stacks-misc.less +343 -343
  22. package/lib/css/atomic/_stacks-spacing.less +168 -168
  23. package/lib/css/atomic/_stacks-typography.less +273 -273
  24. package/lib/css/atomic/_stacks-width-height.less +195 -195
  25. package/lib/css/base/_stacks-body.less +44 -46
  26. package/lib/css/base/_stacks-configuration-static.less +59 -59
  27. package/lib/css/base/_stacks-icons.less +20 -20
  28. package/lib/css/base/_stacks-internals.less +220 -230
  29. package/lib/css/base/_stacks-reset-meyer.less +64 -64
  30. package/lib/css/base/_stacks-reset-normalize.less +449 -449
  31. package/lib/css/base/_stacks-reset.less +20 -20
  32. package/lib/css/components/_stacks-activity-indicator.less +45 -45
  33. package/lib/css/components/_stacks-avatars.less +189 -189
  34. package/lib/css/components/_stacks-badges.less +209 -209
  35. package/lib/css/components/_stacks-banners.less +80 -81
  36. package/lib/css/components/_stacks-blank-states.less +26 -26
  37. package/lib/css/components/_stacks-breadcrumbs.less +44 -44
  38. package/lib/css/components/_stacks-button-groups.less +104 -104
  39. package/lib/css/components/_stacks-buttons.less +658 -660
  40. package/lib/css/components/_stacks-cards.less +44 -44
  41. package/lib/css/components/_stacks-code-blocks.less +130 -130
  42. package/lib/css/components/_stacks-collapsible.less +104 -104
  43. package/lib/css/components/_stacks-inputs.less +728 -728
  44. package/lib/css/components/_stacks-link-previews.less +136 -136
  45. package/lib/css/components/_stacks-links.less +218 -218
  46. package/lib/css/components/_stacks-menu.less +47 -47
  47. package/lib/css/components/_stacks-modals.less +133 -133
  48. package/lib/css/components/_stacks-navigation.less +146 -146
  49. package/lib/css/components/_stacks-notices.less +233 -233
  50. package/lib/css/components/_stacks-page-titles.less +60 -60
  51. package/lib/css/components/_stacks-pagination.less +55 -55
  52. package/lib/css/components/_stacks-popovers.less +197 -197
  53. package/lib/css/components/_stacks-post-summary.less +425 -425
  54. package/lib/css/components/_stacks-progress-bars.less +331 -331
  55. package/lib/css/components/_stacks-prose.less +503 -503
  56. package/lib/css/components/_stacks-spinner.less +107 -107
  57. package/lib/css/components/_stacks-tables.less +341 -341
  58. package/lib/css/components/_stacks-tags.less +236 -244
  59. package/lib/css/components/_stacks-toggle-switches.less +144 -144
  60. package/lib/css/components/_stacks-topbar.less +425 -440
  61. package/lib/css/components/_stacks-uploader.less +210 -210
  62. package/lib/css/components/_stacks-user-cards.less +169 -169
  63. package/lib/css/components/_stacks-widget-dynamic.less +33 -33
  64. package/lib/css/components/_stacks-widget-static.less +272 -272
  65. package/lib/css/exports/_stacks-constants-colors.less +1112 -1112
  66. package/lib/css/exports/_stacks-constants-helpers.less +139 -139
  67. package/lib/css/exports/_stacks-constants-type.less +152 -91
  68. package/lib/css/exports/_stacks-exports.less +15 -15
  69. package/lib/css/exports/_stacks-mixins.less +220 -220
  70. package/lib/css/stacks-dynamic.less +35 -36
  71. package/lib/css/stacks-static.less +86 -86
  72. package/lib/ts/controllers/index.ts +8 -0
  73. package/lib/ts/controllers/s-expandable-control.ts +189 -190
  74. package/lib/ts/controllers/s-modal.ts +321 -323
  75. package/lib/ts/controllers/s-navigation-tablist.ts +118 -119
  76. package/lib/ts/controllers/s-popover.ts +547 -549
  77. package/lib/ts/controllers/s-table.ts +220 -220
  78. package/lib/ts/controllers/s-tooltip.ts +246 -247
  79. package/lib/ts/controllers/s-uploader.ts +172 -174
  80. package/lib/ts/index.ts +20 -0
  81. package/lib/ts/stacks.ts +88 -83
  82. package/lib/tsconfig.json +13 -11
  83. package/package.json +87 -71
  84. package/dist/css/stacks-flexgrid-shim.min.css +0 -1
  85. package/lib/css/base/_stacks-configuration-dynamic.less +0 -106
  86. package/lib/ts/finalize.ts +0 -1
  87. package/lib/ts/stimulus.d.ts +0 -4
@@ -1,220 +1,220 @@
1
- /* stylelint-disable indentation */
2
- //
3
- // STACK OVERFLOW
4
- // MIXINS
5
- //
6
- // This CSS comes from Stacks, our CSS & Pattern library for rapidly building
7
- // Stack Overflow. For documentation of all these classes and how to contribute,
8
- // visit https://stackoverflow.design/
9
- //
10
- // ============================================================================
11
- // $ Clearfix
12
- // -----------------------------------------------------------------------------
13
- .clearfix() {
14
- &:before,
15
- &:after {
16
- content: "";
17
- display: table;
18
- }
19
- &:after { clear: both; }
20
- }
21
-
22
- // ===========================================================================
23
- // -- DARKMODE
24
- // .darkmode renders a dark mode override behind the
25
- // prefers-color-scheme: dark media query and .theme-system. It also
26
- // renders the same rules outside of the media query with .theme-dark
27
- //
28
- // Usage example:
29
- //
30
- // .dark-mode({ background-color: var(--black-100); });
31
- //
32
- // ---------------------------------------------------------------------------
33
-
34
- .dark-mode(@rules) {
35
- body.theme-system & {
36
- @media (prefers-color-scheme: dark) {
37
- @rules();
38
- }
39
- }
40
-
41
- body.theme-dark &,
42
- .theme-dark__forced & {
43
- @rules();
44
- }
45
- }
46
-
47
- // ===========================================================================
48
- // -- HIGHCONTRAST
49
- // .highcontrast-mode renders a high contrast mode override for .theme-highcontrast
50
- //
51
- // Usage example:
52
- //
53
- // .highcontrast-mode({ background-color: var(--black-100); });
54
- //
55
- // ---------------------------------------------------------------------------
56
-
57
- .highcontrast-mode(@rules) {
58
- body.theme-highcontrast & {
59
- @rules();
60
- }
61
- }
62
-
63
- .highcontrast-dark-mode(@rules) {
64
- body.theme-highcontrast.theme-system & {
65
- @media (prefers-color-scheme: dark) {
66
- @rules();
67
- }
68
- }
69
- body.theme-highcontrast.theme-dark & {
70
- @rules();
71
- }
72
- }
73
-
74
- // ===========================================================================
75
- // -- APPEARANCE
76
- // Use this to overwrite the default appearance properties
77
- // ---------------------------------------------------------------------------
78
- .appearance(@all) {
79
- -webkit-appearance: @all;
80
- -moz-appearance: @all;
81
- appearance: @all;
82
- }
83
-
84
-
85
- // ===========================================================================
86
- // -- FONT FACE
87
- // Used to load hosted, custom webfonts. You must provide the font's
88
- // full file path in the mixin. All modern browsers the WOFF file format.
89
- // Will automatically add various local()s to try using already-installed
90
- // fonts before downloading.
91
- // ---------------------------------------------------------------------------
92
- .font-face(@family, @path, @weight, @style) {
93
- @font-face {
94
- font-family: "@{family}";
95
- font-style: @style;
96
- font-weight: @weight;
97
- & when (@style=italic) {
98
- #stacks-internals #font-face-src(@family, @path, @weight, " Italic");
99
- }
100
- & when not (@style=italic) {
101
- #stacks-internals #font-face-src(@family, @path, @weight, "");
102
- }
103
- }
104
- }
105
-
106
-
107
- // =============================================================================
108
- // -- COLORS
109
- // The following mixins let us do color math on the browser. They take a
110
- // color prefix, and they expect the different values to be stored in
111
- // --{prefix}-h, --{prefix}-s and --{prefix}-l
112
- // -----------------------------------------------------------------------------
113
-
114
- .load-color-variables(@amount) {
115
- @amountDecimal: (@amount / 100);
116
- @amountPercentage: @amount * 1%;
117
- @complementDecimal: 1 - @amountDecimal;
118
- @additionDecimal: 1 + @amountDecimal;
119
- }
120
-
121
- .assemble-color(@color-prefix) {
122
- @result: hsl(var(~"--@{color-prefix}-h"),
123
- var(~"--@{color-prefix}-s"),
124
- var(~"--@{color-prefix}-l"));
125
- }
126
-
127
- // Increase the lightness of a color in the HSL color space by an absolute amount.
128
- .native-lighten(@color-prefix, @amount) {
129
- .load-color-variables(@amount);
130
- @result: hsl(var(~"--@{color-prefix}-h"),
131
- var(~"--@{color-prefix}-s"),
132
- calc(var(~"--@{color-prefix}-l") + @amountPercentage));
133
- }
134
-
135
- // Decrease the lightness and saturation of a color in the HSL color space by absolute amounts.
136
- .native-darken-desaturate(@color-prefix, @darken-amount, @desaturate-amount) {
137
- @darkenAmountPercentage: .load-color-variables(@darken-amount)[@amountPercentage];
138
- @desaturateAmountPercentage: .load-color-variables(@desaturate-amount)[@amountPercentage];
139
- @result: hsl(var(~"--@{color-prefix}-h"),
140
- clamp(10%, calc(var(~"--@{color-prefix}-s") - @desaturateAmountPercentage), 90%),
141
- clamp(20%, calc(var(~"--@{color-prefix}-l") - @darkenAmountPercentage), 100%));
142
- }
143
-
144
- // Decrease the lightness of a color in the HSL color space by an absolute amount.
145
- .native-darken(@color-prefix, @amount) {
146
- .load-color-variables(@amount);
147
- @result: hsl(var(~"--@{color-prefix}-h"),
148
- var(~"--@{color-prefix}-s"),
149
- calc(var(~"--@{color-prefix}-l") - @amountPercentage));
150
- }
151
-
152
- // Mix color with white in variable proportion
153
- .native-tint(@color-prefix, @amount) {
154
- .load-color-variables(@amount);
155
- @ramount: 255 * @amountDecimal;
156
- @gamount: 255 * @amountDecimal;
157
- @bamount: 255 * @amountDecimal;
158
- @result: rgb(calc(@ramount + var(~"--@{color-prefix}-r") * @complementDecimal),
159
- calc(@gamount + var(~"--@{color-prefix}-g") * @complementDecimal),
160
- calc(@bamount + var(~"--@{color-prefix}-b") * @complementDecimal));
161
- }
162
-
163
- // Mix color with black in variable proportion
164
- .native-shade(@color-prefix, @amount) {
165
- .load-color-variables(@amount);
166
- @result: rgb(calc(var(~"--@{color-prefix}-r") * @complementDecimal),
167
- calc(var(~"--@{color-prefix}-g") * @complementDecimal),
168
- calc(var(~"--@{color-prefix}-b") * @complementDecimal));
169
- }
170
-
171
- // Set the absolute opacity of a color.
172
- .native-fade(@color-prefix, @amount) {
173
- .load-color-variables(@amount);
174
- @result: hsla(var(~"--@{color-prefix}-h"),
175
- var(~"--@{color-prefix}-s"),
176
- var(~"--@{color-prefix}-l"),
177
- @amountDecimal);
178
- }
179
-
180
- // ===========================================================================
181
- // Internals only beyond this point -- helpers for .font-face()
182
- // ---------------------------------------------------------------------------
183
-
184
-
185
- #stacks-internals() {
186
-
187
- // Generate all common variants for local names that this font face may have.
188
- // The CSS spec (Font Module Level 3, Section 4.3) says to use "only the Postscript
189
- // name or the full font name".
190
- // For example, given the family "Comic Sans MS", weight 800, italic, we're
191
- // trying these local names:
192
- //
193
- // - Comic Sans MS Extra Bold Italic
194
- // - ComicSansMS-ExtraBoldItalic
195
- // - Comic Sans MS 800 Italic
196
- // - ComicSansMS-800Italic
197
- //
198
- // For the weight 400 we also include the un-weight-postfixed name ("Comic Sans MS Italic").
199
-
200
- #font-face-src(@family, @path, @weight, @style-postfix) {
201
- @index: round(@weight/100);
202
- @weight-names: "Thin", "Extra Light", "Light", "Regular", "Medium", "Semi Bold", "Bold", "Extra Bold", "Black";
203
- @weight-name: extract(@weight-names, @index);
204
- #stacks-internals #font-face-src-postfix(@family, @path, "@{weight-name}", @weight, @style-postfix);
205
- }
206
-
207
- #font-face-src-postfix(@family, @path, @postfix-name, @postfix-number, @style-postfix) {
208
- @family-nospace: replace(@family, " ", "");
209
- @postfix-name-nospace: replace("@{postfix-name}@{style-postfix}", " ", "");
210
- @postfix-number-nospace: replace("@{postfix-number}@{style-postfix}", " ", "");
211
-
212
- & when (@postfix-name="Regular") {
213
- src: local("@{family} @{postfix-name}@{style-postfix}"), local("@{family-nospace}-@{postfix-name-nospace}"), local("@{family} @{postfix-number}@{style-postfix}"), local("@{family-nospace}-@{postfix-number-nospace}"), local("@{family}@{style-postfix}"), @path format("woff");
214
- }
215
-
216
- & when not (@postfix-name="Regular") {
217
- src: local("@{family} @{postfix-name}@{style-postfix}"), local("@{family-nospace}-@{postfix-name-nospace}"), local("@{family} @{postfix-number}@{style-postfix}"), local("@{family-nospace}-@{postfix-number-nospace}"), @path format("woff");
218
- }
219
- }
220
- }
1
+ /* stylelint-disable indentation */
2
+ //
3
+ // STACK OVERFLOW
4
+ // MIXINS
5
+ //
6
+ // This CSS comes from Stacks, our CSS & Pattern library for rapidly building
7
+ // Stack Overflow. For documentation of all these classes and how to contribute,
8
+ // visit https://stackoverflow.design/
9
+ //
10
+ // ============================================================================
11
+ // $ Clearfix
12
+ // -----------------------------------------------------------------------------
13
+ .clearfix() {
14
+ &:before,
15
+ &:after {
16
+ content: "";
17
+ display: table;
18
+ }
19
+ &:after { clear: both; }
20
+ }
21
+
22
+ // ===========================================================================
23
+ // -- DARKMODE
24
+ // .darkmode renders a dark mode override behind the
25
+ // prefers-color-scheme: dark media query and .theme-system. It also
26
+ // renders the same rules outside of the media query with .theme-dark
27
+ //
28
+ // Usage example:
29
+ //
30
+ // .dark-mode({ background-color: var(--black-100); });
31
+ //
32
+ // ---------------------------------------------------------------------------
33
+
34
+ .dark-mode(@rules) {
35
+ body.theme-system & {
36
+ @media (prefers-color-scheme: dark) {
37
+ @rules();
38
+ }
39
+ }
40
+
41
+ body.theme-dark &,
42
+ .theme-dark__forced & {
43
+ @rules();
44
+ }
45
+ }
46
+
47
+ // ===========================================================================
48
+ // -- HIGHCONTRAST
49
+ // .highcontrast-mode renders a high contrast mode override for .theme-highcontrast
50
+ //
51
+ // Usage example:
52
+ //
53
+ // .highcontrast-mode({ background-color: var(--black-100); });
54
+ //
55
+ // ---------------------------------------------------------------------------
56
+
57
+ .highcontrast-mode(@rules) {
58
+ body.theme-highcontrast & {
59
+ @rules();
60
+ }
61
+ }
62
+
63
+ .highcontrast-dark-mode(@rules) {
64
+ body.theme-highcontrast.theme-system & {
65
+ @media (prefers-color-scheme: dark) {
66
+ @rules();
67
+ }
68
+ }
69
+ body.theme-highcontrast.theme-dark & {
70
+ @rules();
71
+ }
72
+ }
73
+
74
+ // ===========================================================================
75
+ // -- APPEARANCE
76
+ // Use this to overwrite the default appearance properties
77
+ // ---------------------------------------------------------------------------
78
+ .appearance(@all) {
79
+ -webkit-appearance: @all;
80
+ -moz-appearance: @all;
81
+ appearance: @all;
82
+ }
83
+
84
+
85
+ // ===========================================================================
86
+ // -- FONT FACE
87
+ // Used to load hosted, custom webfonts. You must provide the font's
88
+ // full file path in the mixin. All modern browsers the WOFF file format.
89
+ // Will automatically add various local()s to try using already-installed
90
+ // fonts before downloading.
91
+ // ---------------------------------------------------------------------------
92
+ .font-face(@family, @path, @weight, @style) {
93
+ @font-face {
94
+ font-family: "@{family}";
95
+ font-style: @style;
96
+ font-weight: @weight;
97
+ & when (@style=italic) {
98
+ #stacks-internals #font-face-src(@family, @path, @weight, " Italic");
99
+ }
100
+ & when not (@style=italic) {
101
+ #stacks-internals #font-face-src(@family, @path, @weight, "");
102
+ }
103
+ }
104
+ }
105
+
106
+
107
+ // =============================================================================
108
+ // -- COLORS
109
+ // The following mixins let us do color math on the browser. They take a
110
+ // color prefix, and they expect the different values to be stored in
111
+ // --{prefix}-h, --{prefix}-s and --{prefix}-l
112
+ // -----------------------------------------------------------------------------
113
+
114
+ .load-color-variables(@amount) {
115
+ @amountDecimal: (@amount / 100);
116
+ @amountPercentage: @amount * 1%;
117
+ @complementDecimal: 1 - @amountDecimal;
118
+ @additionDecimal: 1 + @amountDecimal;
119
+ }
120
+
121
+ .assemble-color(@color-prefix) {
122
+ @result: hsl(var(~"--@{color-prefix}-h"),
123
+ var(~"--@{color-prefix}-s"),
124
+ var(~"--@{color-prefix}-l"));
125
+ }
126
+
127
+ // Increase the lightness of a color in the HSL color space by an absolute amount.
128
+ .native-lighten(@color-prefix, @amount) {
129
+ .load-color-variables(@amount);
130
+ @result: hsl(var(~"--@{color-prefix}-h"),
131
+ var(~"--@{color-prefix}-s"),
132
+ calc(var(~"--@{color-prefix}-l") + @amountPercentage));
133
+ }
134
+
135
+ // Decrease the lightness and saturation of a color in the HSL color space by absolute amounts.
136
+ .native-darken-desaturate(@color-prefix, @darken-amount, @desaturate-amount) {
137
+ @darkenAmountPercentage: .load-color-variables(@darken-amount)[@amountPercentage];
138
+ @desaturateAmountPercentage: .load-color-variables(@desaturate-amount)[@amountPercentage];
139
+ @result: hsl(var(~"--@{color-prefix}-h"),
140
+ clamp(10%, calc(var(~"--@{color-prefix}-s") - @desaturateAmountPercentage), 90%),
141
+ clamp(20%, calc(var(~"--@{color-prefix}-l") - @darkenAmountPercentage), 100%));
142
+ }
143
+
144
+ // Decrease the lightness of a color in the HSL color space by an absolute amount.
145
+ .native-darken(@color-prefix, @amount) {
146
+ .load-color-variables(@amount);
147
+ @result: hsl(var(~"--@{color-prefix}-h"),
148
+ var(~"--@{color-prefix}-s"),
149
+ calc(var(~"--@{color-prefix}-l") - @amountPercentage));
150
+ }
151
+
152
+ // Mix color with white in variable proportion
153
+ .native-tint(@color-prefix, @amount) {
154
+ .load-color-variables(@amount);
155
+ @ramount: 255 * @amountDecimal;
156
+ @gamount: 255 * @amountDecimal;
157
+ @bamount: 255 * @amountDecimal;
158
+ @result: rgb(calc(@ramount + var(~"--@{color-prefix}-r") * @complementDecimal),
159
+ calc(@gamount + var(~"--@{color-prefix}-g") * @complementDecimal),
160
+ calc(@bamount + var(~"--@{color-prefix}-b") * @complementDecimal));
161
+ }
162
+
163
+ // Mix color with black in variable proportion
164
+ .native-shade(@color-prefix, @amount) {
165
+ .load-color-variables(@amount);
166
+ @result: rgb(calc(var(~"--@{color-prefix}-r") * @complementDecimal),
167
+ calc(var(~"--@{color-prefix}-g") * @complementDecimal),
168
+ calc(var(~"--@{color-prefix}-b") * @complementDecimal));
169
+ }
170
+
171
+ // Set the absolute opacity of a color.
172
+ .native-fade(@color-prefix, @amount) {
173
+ .load-color-variables(@amount);
174
+ @result: hsla(var(~"--@{color-prefix}-h"),
175
+ var(~"--@{color-prefix}-s"),
176
+ var(~"--@{color-prefix}-l"),
177
+ @amountDecimal);
178
+ }
179
+
180
+ // ===========================================================================
181
+ // Internals only beyond this point -- helpers for .font-face()
182
+ // ---------------------------------------------------------------------------
183
+
184
+
185
+ #stacks-internals() {
186
+
187
+ // Generate all common variants for local names that this font face may have.
188
+ // The CSS spec (Font Module Level 3, Section 4.3) says to use "only the Postscript
189
+ // name or the full font name".
190
+ // For example, given the family "Comic Sans MS", weight 800, italic, we're
191
+ // trying these local names:
192
+ //
193
+ // - Comic Sans MS Extra Bold Italic
194
+ // - ComicSansMS-ExtraBoldItalic
195
+ // - Comic Sans MS 800 Italic
196
+ // - ComicSansMS-800Italic
197
+ //
198
+ // For the weight 400 we also include the un-weight-postfixed name ("Comic Sans MS Italic").
199
+
200
+ #font-face-src(@family, @path, @weight, @style-postfix) {
201
+ @index: round(@weight/100);
202
+ @weight-names: "Thin", "Extra Light", "Light", "Regular", "Medium", "Semi Bold", "Bold", "Extra Bold", "Black";
203
+ @weight-name: extract(@weight-names, @index);
204
+ #stacks-internals #font-face-src-postfix(@family, @path, "@{weight-name}", @weight, @style-postfix);
205
+ }
206
+
207
+ #font-face-src-postfix(@family, @path, @postfix-name, @postfix-number, @style-postfix) {
208
+ @family-nospace: replace(@family, " ", "");
209
+ @postfix-name-nospace: replace("@{postfix-name}@{style-postfix}", " ", "");
210
+ @postfix-number-nospace: replace("@{postfix-number}@{style-postfix}", " ", "");
211
+
212
+ & when (@postfix-name="Regular") {
213
+ src: local("@{family} @{postfix-name}@{style-postfix}"), local("@{family-nospace}-@{postfix-name-nospace}"), local("@{family} @{postfix-number}@{style-postfix}"), local("@{family-nospace}-@{postfix-number-nospace}"), local("@{family}@{style-postfix}"), @path format("woff");
214
+ }
215
+
216
+ & when not (@postfix-name="Regular") {
217
+ src: local("@{family} @{postfix-name}@{style-postfix}"), local("@{family-nospace}-@{postfix-name-nospace}"), local("@{family} @{postfix-number}@{style-postfix}"), local("@{family-nospace}-@{postfix-number-nospace}"), @path format("woff");
218
+ }
219
+ }
220
+ }
@@ -1,36 +1,35 @@
1
- //
2
- // STACK OVERFLOW
3
- // DYNAMIC STACK ITEMS
4
- //
5
- // This CSS comes from Stacks, our CSS & Pattern library for rapidly building
6
- // Stack Overflow. For documentation of all these classes and how to contribute,
7
- // visit https://stackoverflow.design/
8
- //
9
- // This is where all the magic happens.
10
- //
11
- //
12
- // ============================================================================
13
- // $ DYNAMIC ELEMENTS
14
- // The following items are elements which we allow communities to modify
15
- // via variables.
16
- // ----------------------------------------------------------------------------
17
- // -- SET BASIC STYLES FOR BODY
18
- @import "base/_stacks-body.less";
19
-
20
- // -- COMPONENTS
21
- @import "components/_stacks-banners.less";
22
- @import "components/_stacks-buttons.less";
23
- @import "components/_stacks-links.less";
24
- @import "components/_stacks-link-previews.less";
25
- @import "components/_stacks-notices.less";
26
- @import "components/_stacks-tags.less";
27
- @import "components/_stacks-pagination.less";
28
- @import "components/_stacks-widget-dynamic.less";
29
-
30
- // -- LESS CONSTANTS AND MIXINS
31
- @import "exports/_stacks-exports.less";
32
-
33
- // -- CONFIG
34
- @import "base/_stacks-configuration-static.less";
35
- @import "base/_stacks-configuration-dynamic.less";
36
- @import "base/_stacks-internals.less";
1
+ //
2
+ // STACK OVERFLOW
3
+ // DYNAMIC STACK ITEMS
4
+ //
5
+ // This CSS comes from Stacks, our CSS & Pattern library for rapidly building
6
+ // Stack Overflow. For documentation of all these classes and how to contribute,
7
+ // visit https://stackoverflow.design/
8
+ //
9
+ // This is where all the magic happens.
10
+ //
11
+ //
12
+ // ============================================================================
13
+ // $ DYNAMIC ELEMENTS
14
+ // The following items are elements which we allow communities to modify
15
+ // via variables.
16
+ // ----------------------------------------------------------------------------
17
+ // -- SET BASIC STYLES FOR BODY
18
+ @import "base/_stacks-body.less";
19
+
20
+ // -- COMPONENTS
21
+ @import "components/_stacks-banners.less";
22
+ @import "components/_stacks-buttons.less";
23
+ @import "components/_stacks-links.less";
24
+ @import "components/_stacks-link-previews.less";
25
+ @import "components/_stacks-notices.less";
26
+ @import "components/_stacks-tags.less";
27
+ @import "components/_stacks-pagination.less";
28
+ @import "components/_stacks-widget-dynamic.less";
29
+
30
+ // -- LESS CONSTANTS AND MIXINS
31
+ @import "exports/_stacks-exports.less";
32
+
33
+ // -- CONFIG
34
+ @import "base/_stacks-configuration-static.less";
35
+ @import "base/_stacks-internals.less";