|
1 | 1 | @charset "utf-8";
|
2 | 2 |
|
| 3 | +@use "sass:string"; |
3 | 4 | @import "button.variables";
|
4 | 5 |
|
5 | 6 | .elm-button {
|
|
46 | 47 | background-color: $button-brand-primary--backgroundColor;
|
47 | 48 |
|
48 | 49 | &:disabled {
|
49 |
| - background-color: unquote( |
| 50 | + background-color: string.unquote( |
50 | 51 | $button-brand-primary--backgroundColor + "40"
|
51 | 52 | );
|
52 | 53 | }
|
|
67 | 68 | background-color: $button-primary--backgroundColor;
|
68 | 69 |
|
69 | 70 | &:disabled {
|
70 |
| - background-color: unquote($button-primary--backgroundColor + "40"); |
| 71 | + background-color: string.unquote( |
| 72 | + $button-primary--backgroundColor + "40" |
| 73 | + ); |
71 | 74 | }
|
72 | 75 |
|
73 | 76 | &:not(:disabled) {
|
|
90 | 93 | color: $db-color-cool-gray-700;
|
91 | 94 |
|
92 | 95 | &:disabled {
|
93 |
| - color: unquote($db-color-cool-gray-700 + "80"); |
94 |
| - border-color: unquote($db-color-cool-gray-700 + "40"); |
| 96 | + color: string.unquote($db-color-cool-gray-700 + "80"); |
| 97 | + border-color: string.unquote($db-color-cool-gray-700 + "40"); |
95 | 98 | }
|
96 | 99 |
|
97 | 100 | &:not(:disabled) {
|
|
111 | 114 | color: $db-color-cool-gray-700;
|
112 | 115 |
|
113 | 116 | &:disabled {
|
114 |
| - color: unquote($db-color-cool-gray-700 + "80"); |
115 |
| - background-color: unquote( |
| 117 | + color: string.unquote($db-color-cool-gray-700 + "80"); |
| 118 | + background-color: string.unquote( |
116 | 119 | $button-secondarySolid--backgroundColor + "40"
|
117 | 120 | );
|
118 | 121 | }
|
|
135 | 138 | color: $db-color-cool-gray-700;
|
136 | 139 |
|
137 | 140 | &:disabled {
|
138 |
| - color: unquote($db-color-cool-gray-700 + "80"); |
| 141 | + color: string.unquote($db-color-cool-gray-700 + "80"); |
139 | 142 | }
|
140 | 143 |
|
141 | 144 | &:not(:disabled) {
|
|
214 | 217 | }
|
215 | 218 |
|
216 | 219 | &:disabled {
|
217 |
| - color: unquote($button---color + "80"); |
| 220 | + color: string.unquote($button---color + "80"); |
218 | 221 | }
|
219 | 222 |
|
220 | 223 | // width
|
|
0 commit comments