|
63 | 63 | .mat-mdc-button {
|
64 | 64 | $mat-text-button-slots: tokens-mat-text-button.get-token-slots();
|
65 | 65 |
|
66 |
| - @include button-base.mat-private-button-horizontal-layout(tokens-mat-text-button.$prefix, |
67 |
| - $mat-text-button-slots, true); |
68 |
| - @include button-base.mat-private-button-ripple(tokens-mat-text-button.$prefix, |
69 |
| - $mat-text-button-slots); |
70 |
| - @include button-base.mat-private-button-touch-target(false, tokens-mat-text-button.$prefix, |
71 |
| - $mat-text-button-slots); |
| 66 | + @include token-utils.use-tokens(tokens-mat-text-button.$prefix, $mat-text-button-slots) { |
| 67 | + padding: 0 #{token-utils.get-token-variable(horizontal-padding, true)}; |
| 68 | + } |
72 | 69 |
|
73 | 70 | @include token-utils.use-tokens(
|
74 | 71 | tokens-mdc-text-button.$prefix,
|
|
95 | 92 | @include token-utils.create-token-slot(color, disabled-label-text-color);
|
96 | 93 | }
|
97 | 94 | }
|
| 95 | + |
| 96 | + @include button-base.mat-private-button-horizontal-layout(tokens-mat-text-button.$prefix, |
| 97 | + $mat-text-button-slots, true); |
| 98 | + @include button-base.mat-private-button-ripple(tokens-mat-text-button.$prefix, |
| 99 | + $mat-text-button-slots); |
| 100 | + @include button-base.mat-private-button-touch-target(false, tokens-mat-text-button.$prefix, |
| 101 | + $mat-text-button-slots); |
98 | 102 | }
|
99 | 103 |
|
100 | 104 | .mat-mdc-unelevated-button {
|
101 | 105 | $mat-filled-button-slots: tokens-mat-filled-button.get-token-slots();
|
102 | 106 | transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
|
103 | 107 |
|
104 |
| - @include button-base.mat-private-button-horizontal-layout(tokens-mat-filled-button.$prefix, |
105 |
| - $mat-filled-button-slots, false); |
106 |
| - @include button-base.mat-private-button-ripple(tokens-mat-filled-button.$prefix, |
107 |
| - $mat-filled-button-slots); |
108 |
| - @include button-base.mat-private-button-touch-target(false, tokens-mat-filled-button.$prefix, |
109 |
| - $mat-filled-button-slots); |
110 |
| - |
111 | 108 | @include token-utils.use-tokens(
|
112 | 109 | tokens-mdc-filled-button.$prefix,
|
113 | 110 | tokens-mdc-filled-button.get-token-slots()
|
|
118 | 115 | @include token-utils.create-token-slot(letter-spacing, label-text-tracking);
|
119 | 116 | @include token-utils.create-token-slot(text-transform, label-text-transform);
|
120 | 117 | @include token-utils.create-token-slot(font-weight, label-text-weight);
|
| 118 | + } |
| 119 | + |
| 120 | + @include token-utils.use-tokens(tokens-mat-filled-button.$prefix, $mat-filled-button-slots) { |
| 121 | + padding: 0 #{token-utils.get-token-variable(horizontal-padding, true)}; |
| 122 | + } |
| 123 | + |
| 124 | + @include button-base.mat-private-button-horizontal-layout(tokens-mat-filled-button.$prefix, |
| 125 | + $mat-filled-button-slots, false); |
| 126 | + @include button-base.mat-private-button-ripple(tokens-mat-filled-button.$prefix, |
| 127 | + $mat-filled-button-slots); |
| 128 | + @include button-base.mat-private-button-touch-target(false, tokens-mat-filled-button.$prefix, |
| 129 | + $mat-filled-button-slots); |
121 | 130 |
|
| 131 | + @include token-utils.use-tokens( |
| 132 | + tokens-mdc-filled-button.$prefix, |
| 133 | + tokens-mdc-filled-button.get-token-slots() |
| 134 | + ) { |
122 | 135 | &:not(:disabled) {
|
123 | 136 | @include token-utils.create-token-slot(color, label-text-color);
|
124 | 137 | @include token-utils.create-token-slot(background-color, container-color);
|
|
141 | 154 | $mat-protected-button-slots: tokens-mat-protected-button.get-token-slots();
|
142 | 155 | transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
|
143 | 156 |
|
144 |
| - @include button-base.mat-private-button-horizontal-layout(tokens-mat-protected-button.$prefix, |
145 |
| - $mat-protected-button-slots, false); |
146 |
| - @include button-base.mat-private-button-ripple(tokens-mat-protected-button.$prefix, |
147 |
| - $mat-protected-button-slots); |
148 |
| - @include button-base.mat-private-button-touch-target(false, tokens-mat-protected-button.$prefix, |
149 |
| - $mat-protected-button-slots); |
150 |
| - |
151 | 157 | @include token-utils.use-tokens(
|
152 | 158 | tokens-mdc-protected-button.$prefix,
|
153 | 159 | tokens-mdc-protected-button.get-token-slots()
|
|
159 | 165 | @include token-utils.create-token-slot(letter-spacing, label-text-tracking);
|
160 | 166 | @include token-utils.create-token-slot(text-transform, label-text-transform);
|
161 | 167 | @include token-utils.create-token-slot(font-weight, label-text-weight);
|
| 168 | + } |
| 169 | + |
| 170 | + @include token-utils.use-tokens( |
| 171 | + tokens-mat-protected-button.$prefix, |
| 172 | + $mat-protected-button-slots |
| 173 | + ) { |
| 174 | + padding: 0 #{token-utils.get-token-variable(horizontal-padding, true)}; |
| 175 | + } |
| 176 | + |
| 177 | + @include button-base.mat-private-button-horizontal-layout(tokens-mat-protected-button.$prefix, |
| 178 | + $mat-protected-button-slots, false); |
| 179 | + @include button-base.mat-private-button-ripple(tokens-mat-protected-button.$prefix, |
| 180 | + $mat-protected-button-slots); |
| 181 | + @include button-base.mat-private-button-touch-target(false, tokens-mat-protected-button.$prefix, |
| 182 | + $mat-protected-button-slots); |
162 | 183 |
|
| 184 | + @include token-utils.use-tokens( |
| 185 | + tokens-mdc-protected-button.$prefix, |
| 186 | + tokens-mdc-protected-button.get-token-slots() |
| 187 | + ) { |
163 | 188 | &:not(:disabled) {
|
164 | 189 | @include token-utils.create-token-slot(color, label-text-color);
|
165 | 190 | @include token-utils.create-token-slot(background-color, container-color);
|
|
199 | 224 | border-style: solid;
|
200 | 225 | transition: border 280ms cubic-bezier(0.4, 0, 0.2, 1);
|
201 | 226 |
|
202 |
| - @include button-base.mat-private-button-horizontal-layout(tokens-mat-outlined-button.$prefix, |
203 |
| - $mat-outlined-button-slots, false); |
204 |
| - @include button-base.mat-private-button-ripple(tokens-mat-outlined-button.$prefix, |
205 |
| - $mat-outlined-button-slots); |
206 |
| - @include button-base.mat-private-button-touch-target(false, tokens-mat-outlined-button.$prefix, |
207 |
| - $mat-outlined-button-slots); |
208 |
| - |
209 | 227 | @include token-utils.use-tokens(
|
210 | 228 | tokens-mdc-outlined-button.$prefix,
|
211 | 229 | tokens-mdc-outlined-button.get-token-slots()
|
|
218 | 236 | @include token-utils.create-token-slot(font-weight, label-text-weight);
|
219 | 237 | @include token-utils.create-token-slot(border-radius, container-shape);
|
220 | 238 | @include token-utils.create-token-slot(border-width, outline-width);
|
| 239 | + } |
| 240 | + |
| 241 | + @include token-utils.use-tokens(tokens-mat-outlined-button.$prefix, $mat-outlined-button-slots) { |
| 242 | + padding: 0 #{token-utils.get-token-variable(horizontal-padding, true)}; |
| 243 | + } |
221 | 244 |
|
| 245 | + @include button-base.mat-private-button-horizontal-layout(tokens-mat-outlined-button.$prefix, |
| 246 | + $mat-outlined-button-slots, false); |
| 247 | + @include button-base.mat-private-button-ripple(tokens-mat-outlined-button.$prefix, |
| 248 | + $mat-outlined-button-slots); |
| 249 | + @include button-base.mat-private-button-touch-target(false, tokens-mat-outlined-button.$prefix, |
| 250 | + $mat-outlined-button-slots); |
| 251 | + |
| 252 | + @include token-utils.use-tokens( |
| 253 | + tokens-mdc-outlined-button.$prefix, |
| 254 | + tokens-mdc-outlined-button.get-token-slots() |
| 255 | + ) { |
222 | 256 | &:not(:disabled) {
|
223 | 257 | @include token-utils.create-token-slot(color, label-text-color);
|
224 | 258 | @include token-utils.create-token-slot(border-color, outline-color);
|
|
0 commit comments