|
4 | 4 | background: var(--newspack-ui-color-neutral-10);
|
5 | 5 | border: 0;
|
6 | 6 | border-radius: var(--newspack-ui-border-radius-m);
|
| 7 | + box-sizing: border-box; |
7 | 8 | color: var(--newspack-ui-color-neutral-90);
|
8 | 9 | cursor: pointer;
|
9 | 10 | display: inline-flex;
|
| 11 | + flex-direction: row; |
10 | 12 | font-family: var(--newspack-ui-font-family);
|
11 | 13 | font-size: var(--newspack-ui-font-size-s);
|
12 | 14 | font-style: normal;
|
13 | 15 | font-weight: 600;
|
14 | 16 | gap: calc(var(--newspack-ui-spacer-base) / 2);
|
15 |
| - letter-spacing: initial; // Override for custom styles. |
16 |
| - text-transform: none; // Override for custom styles. |
17 | 17 | justify-content: center;
|
| 18 | + letter-spacing: initial; |
18 | 19 | line-height: var(--newspack-ui-line-height-s);
|
19 | 20 | margin-bottom: var(--newspack-ui-spacer-2);
|
20 | 21 | min-height: var(--newspack-ui-spacer-9);
|
21 |
| - padding: var(--newspack-ui-spacer-2) var(--newspack-ui-spacer-5); |
| 22 | + min-width: var(--newspack-ui-spacer-9); |
| 23 | + padding: var(--newspack-ui-spacer-2) var(--newspack-ui-spacer-4); |
22 | 24 | text-decoration: none;
|
| 25 | + text-transform: none; |
23 | 26 | transition:
|
24 | 27 | background-color 125ms ease-in-out,
|
25 | 28 | border-color 125ms ease-in-out,
|
26 | 29 | outline 125ms ease-in-out;
|
| 30 | + white-space: nowrap; |
27 | 31 |
|
28 | 32 | &:last-child {
|
29 | 33 | margin-bottom: 0;
|
|
50 | 54 | outline-offset: 1px;
|
51 | 55 | }
|
52 | 56 |
|
| 57 | + // Button icon styles |
| 58 | + &__glyph { |
| 59 | + align-items: center; |
| 60 | + display: inline-flex; |
| 61 | + flex-shrink: 0; |
| 62 | + justify-content: center; |
| 63 | + |
| 64 | + svg { |
| 65 | + fill: currentcolor; |
| 66 | + height: var(--newspack-ui-spacer-5); |
| 67 | + width: var(--newspack-ui-spacer-5); |
| 68 | + } |
| 69 | + } |
| 70 | + |
53 | 71 | // Sizes
|
54 | 72 | &--x-small {
|
55 | 73 | border-radius: var(--newspack-ui-border-radius-s);
|
56 | 74 | font-size: var(--newspack-ui-font-size-xs);
|
57 | 75 | line-height: var(--newspack-ui-line-height-xs);
|
58 |
| - min-height: var(--newspack-ui-spacer-6); |
59 |
| - padding: calc(var(--newspack-ui-spacer-base) / 2) var(--newspack-ui-spacer-base); |
| 76 | + min-height: var(--newspack-ui-spacer-7); |
| 77 | + min-width: var(--newspack-ui-spacer-7); |
| 78 | + |
| 79 | + // Default padding for text-only and text+icon buttons |
| 80 | + &:not(.newspack-ui__button--icon), |
| 81 | + &.newspack-ui__button--icon:has(.newspack-ui__button__label) { |
| 82 | + padding: calc(0.75 * var(--newspack-ui-spacer-base)) var(--newspack-ui-spacer-2); |
| 83 | + } |
| 84 | + |
| 85 | + // Padding for icon-only buttons |
| 86 | + &.newspack-ui__button--icon:not(:has(.newspack-ui__button__label)) { |
| 87 | + padding: calc(0.75 * var(--newspack-ui-spacer-base)); |
| 88 | + } |
| 89 | + |
| 90 | + .newspack-ui__button__glyph svg { |
| 91 | + height: var(--newspack-ui-spacer-5); |
| 92 | + width: var(--newspack-ui-spacer-5); |
| 93 | + } |
60 | 94 | }
|
61 | 95 |
|
62 | 96 | &--small {
|
63 | 97 | font-size: var(--newspack-ui-font-size-xs);
|
64 | 98 | line-height: var(--newspack-ui-line-height-xs);
|
65 | 99 | min-height: var(--newspack-ui-spacer-8);
|
| 100 | + min-width: var(--newspack-ui-spacer-8); |
66 | 101 | padding: var(--newspack-ui-spacer-base) var(--newspack-ui-spacer-3);
|
| 102 | + |
| 103 | + .newspack-ui__button__glyph svg { |
| 104 | + height: var(--newspack-ui-spacer-5); |
| 105 | + width: var(--newspack-ui-spacer-5); |
| 106 | + } |
67 | 107 | }
|
68 | 108 |
|
69 | 109 | &--medium {
|
|
173 | 213 | // Wide
|
174 | 214 | &--wide {
|
175 | 215 | display: flex;
|
| 216 | + justify-content: center; |
176 | 217 | width: 100%;
|
| 218 | + max-width: 100%; |
177 | 219 | }
|
178 | 220 |
|
179 | 221 | // Icon-only
|
180 | 222 | &--icon {
|
181 |
| - display: grid; |
182 |
| - height: var(--newspack-ui-spacer-7); |
| 223 | + display: inline-flex; |
183 | 224 | min-height: unset;
|
184 |
| - padding: 0; |
185 |
| - place-items: center; |
186 |
| - width: var(--newspack-ui-spacer-7); |
| 225 | + padding: var(--newspack-ui-spacer-2); |
187 | 226 |
|
188 |
| - // Sizes |
189 |
| - &.newspack-ui__button--x-small { |
190 |
| - height: var(--newspack-ui-spacer-7); |
191 |
| - width: var(--newspack-ui-spacer-7); |
| 227 | + // When there's text, don't apply icon-only styles |
| 228 | + &:has(.newspack-ui__button__label) { |
| 229 | + aspect-ratio: unset; |
| 230 | + height: auto; |
| 231 | + width: auto; |
192 | 232 | }
|
193 | 233 |
|
194 |
| - &.newspack-ui__button--small { |
195 |
| - height: var(--newspack-ui-spacer-8); |
196 |
| - width: var(--newspack-ui-spacer-8); |
| 234 | + // When there's no text, apply icon-only styles |
| 235 | + &:not(:has(.newspack-ui__button__label)) { |
| 236 | + aspect-ratio: 1; |
| 237 | + |
| 238 | + &.newspack-ui__button--x-small { |
| 239 | + height: var(--newspack-ui-spacer-7); |
| 240 | + padding: var(--newspack-ui-spacer-base); |
| 241 | + width: var(--newspack-ui-spacer-7); |
| 242 | + } |
| 243 | + |
| 244 | + &.newspack-ui__button--small { |
| 245 | + height: var(--newspack-ui-spacer-8); |
| 246 | + padding: var(--newspack-ui-spacer-base); |
| 247 | + width: var(--newspack-ui-spacer-8); |
| 248 | + } |
| 249 | + |
| 250 | + &.newspack-ui__button--medium, |
| 251 | + &:not(.newspack-ui__button--x-small):not(.newspack-ui__button--small) { |
| 252 | + height: var(--newspack-ui-spacer-9); |
| 253 | + padding: var(--newspack-ui-spacer-2); |
| 254 | + width: var(--newspack-ui-spacer-9); |
| 255 | + } |
197 | 256 | }
|
198 |
| - |
199 |
| - &.newspack-ui__button--medium { |
200 |
| - height: var(--newspack-ui-spacer-9); |
201 |
| - width: var(--newspack-ui-spacer-9); |
202 |
| - } |
203 |
| - } |
204 |
| - |
205 |
| - svg { |
206 |
| - fill: currentcolor; |
207 | 257 | }
|
208 | 258 |
|
209 | 259 | // Loading
|
|
0 commit comments