material_design 0.6.0 → 0.6.2
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.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/material_design/buttons.css +615 -62
- data/app/helpers/material_design/button_helper.rb +36 -0
- data/app/views/material_design/icons/_check_circle.html.erb +2 -2
- data/lib/material_design/railtie.rb +11 -0
- data/lib/material_design/version.rb +1 -1
- data/lib/material_design.rb +1 -1
- metadata +4 -7
- data/app/views/material_design/buttons/_elevated_button.html.erb +0 -10
- data/app/views/material_design/buttons/_filled_button.html.erb +0 -10
- data/app/views/material_design/buttons/_outlined_button.html.erb +0 -10
- data/app/views/material_design/buttons/_text_button.html.erb +0 -10
- data/app/views/material_design/buttons/_tonal_button.html.erb +0 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 73d0fc0a30aafae747d8fadf5c8b70cb497d53071689e4f1247fd6e687cddb3e
|
4
|
+
data.tar.gz: 6c6eed57da846e9bbb0953a213ffc722cba4ba7b4861bdb0198b347edececf35
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e7ce30e5aa1075b1b6fbce7c4ae04b872991ece27274c2b069acf60dfc217721e5a222dc6693496b42f7d9e18a6c565e4e93dbddb26d63ace5aa824ef9fff6b7
|
7
|
+
data.tar.gz: 8aed5c79d991bd1700cdd4b4dcf85bf0951124ee589f4e3edb4b7e2956184d141020df9c02473ece4dbb23efa8ed840ca710a3cf412d9e67644e01964ef80fb8
|
@@ -1,32 +1,214 @@
|
|
1
1
|
@media (prefers-color-scheme: light) {
|
2
2
|
:root {
|
3
|
-
--md-sys-tonal-hover-layer-state: rgb(
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
--md-sys-
|
8
|
-
|
3
|
+
--md-sys-tonal-primary-hover-layer-state: rgb(
|
4
|
+
var(--md-sys-light-on-primary-container) /
|
5
|
+
var(--md-sys-light-state-hover-state-layer-opacity)
|
6
|
+
);
|
7
|
+
--md-sys-tonal-primary-pressed-layer-state: rgb(
|
8
|
+
var(--md-sys-light-on-primary-container) /
|
9
|
+
var(--md-sys-light-state-pressed-state-layer-opacity)
|
10
|
+
);
|
11
|
+
--md-sys-tonal-secondary-hover-layer-state: rgb(
|
12
|
+
var(--md-sys-light-on-secondary-container) /
|
13
|
+
var(--md-sys-light-state-hover-state-layer-opacity)
|
14
|
+
);
|
15
|
+
--md-sys-tonal-secondary-pressed-layer-state: rgb(
|
16
|
+
var(--md-sys-light-on-secondary-container) /
|
17
|
+
var(--md-sys-light-state-pressed-state-layer-opacity)
|
18
|
+
);
|
19
|
+
--md-sys-tonal-tertiary-hover-layer-state: rgb(
|
20
|
+
var(--md-sys-light-on-tertiary-container) /
|
21
|
+
var(--md-sys-light-state-hover-state-layer-opacity)
|
22
|
+
);
|
23
|
+
--md-sys-tonal-tertiary-pressed-layer-state: rgb(
|
24
|
+
var(--md-sys-light-on-tertiary-container) /
|
25
|
+
var(--md-sys-light-state-pressed-state-layer-opacity)
|
26
|
+
);
|
27
|
+
--md-sys-tonal-error-hover-layer-state: rgb(
|
28
|
+
var(--md-sys-light-on-error-container) /
|
29
|
+
var(--md-sys-light-state-hover-state-layer-opacity)
|
30
|
+
);
|
31
|
+
--md-sys-tonal-error-pressed-layer-state: rgb(
|
32
|
+
var(--md-sys-light-on-error-container) /
|
33
|
+
var(--md-sys-light-state-pressed-state-layer-opacity)
|
34
|
+
);
|
35
|
+
--md-sys-filled-primary-hover-layer-state: rgb(
|
36
|
+
var(--md-sys-light-on-primary) /
|
37
|
+
var(--md-sys-light-state-hover-state-layer-opacity)
|
38
|
+
);
|
39
|
+
--md-sys-filled-primary-pressed-layer-state: rgb(
|
40
|
+
var(--md-sys-light-on-primary) /
|
41
|
+
var(--md-sys-light-state-pressed-state-layer-opacity)
|
42
|
+
);
|
43
|
+
--md-sys-filled-secondary-hover-layer-state: rgb(
|
44
|
+
var(--md-sys-light-on-secondary) /
|
45
|
+
var(--md-sys-light-state-hover-state-layer-opacity)
|
46
|
+
);
|
47
|
+
--md-sys-filled-secondary-pressed-layer-state: rgb(
|
48
|
+
var(--md-sys-light-on-secondary) /
|
49
|
+
var(--md-sys-light-state-pressed-state-layer-opacity)
|
50
|
+
);
|
51
|
+
--md-sys-filled-tertiary-hover-layer-state: rgb(
|
52
|
+
var(--md-sys-light-on-tertiary) /
|
53
|
+
var(--md-sys-light-state-hover-state-layer-opacity)
|
54
|
+
);
|
55
|
+
--md-sys-filled-tertiary-pressed-layer-state: rgb(
|
56
|
+
var(--md-sys-light-on-tertiary) /
|
57
|
+
var(--md-sys-light-state-pressed-state-layer-opacity)
|
58
|
+
);
|
59
|
+
--md-sys-filled-error-hover-layer-state: rgb(
|
60
|
+
var(--md-sys-light-on-error) /
|
61
|
+
var(--md-sys-light-state-hover-state-layer-opacity)
|
62
|
+
);
|
63
|
+
--md-sys-filled-error-pressed-layer-state: rgb(
|
64
|
+
var(--md-sys-light-on-error) /
|
65
|
+
var(--md-sys-light-state-pressed-state-layer-opacity)
|
66
|
+
);
|
67
|
+
--md-sys-outlined-primary-hover-layer-state: rgb(
|
68
|
+
var(--md-sys-light-primary) /
|
69
|
+
var(--md-sys-light-state-hover-state-layer-opacity)
|
70
|
+
);
|
71
|
+
--md-sys-outlined-primary-pressed-layer-state: rgb(
|
72
|
+
var(--md-sys-light-primary) /
|
73
|
+
var(--md-sys-light-state-pressed-state-layer-opacity)
|
74
|
+
);
|
75
|
+
--md-sys-outlined-secondary-hover-layer-state: rgb(
|
76
|
+
var(--md-sys-light-secondary) /
|
77
|
+
var(--md-sys-light-state-hover-state-layer-opacity)
|
78
|
+
);
|
79
|
+
--md-sys-outlined-secondary-pressed-layer-state: rgb(
|
80
|
+
var(--md-sys-light-secondary) /
|
81
|
+
var(--md-sys-light-state-pressed-state-layer-opacity)
|
82
|
+
);
|
83
|
+
--md-sys-outlined-tertiary-hover-layer-state: rgb(
|
84
|
+
var(--md-sys-light-tertiary) /
|
85
|
+
var(--md-sys-light-state-hover-state-layer-opacity)
|
86
|
+
);
|
87
|
+
--md-sys-outlined-tertiary-pressed-layer-state: rgb(
|
88
|
+
var(--md-sys-light-tertiary) /
|
89
|
+
var(--md-sys-light-state-pressed-state-layer-opacity)
|
90
|
+
);
|
91
|
+
--md-sys-outlined-error-hover-layer-state: rgb(
|
92
|
+
var(--md-sys-light-error) /
|
93
|
+
var(--md-sys-light-state-hover-state-layer-opacity)
|
94
|
+
);
|
95
|
+
--md-sys-outlined-error-pressed-layer-state: rgb(
|
96
|
+
var(--md-sys-light-error) /
|
97
|
+
var(--md-sys-light-state-pressed-state-layer-opacity)
|
98
|
+
);
|
9
99
|
}
|
10
100
|
}
|
11
101
|
|
12
102
|
@media (prefers-color-scheme: dark) {
|
13
103
|
:root {
|
14
|
-
--md-sys-tonal-hover-layer-state: rgb(
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
--md-sys-
|
19
|
-
|
104
|
+
--md-sys-tonal-primary-hover-layer-state: rgb(
|
105
|
+
var(--md-sys-light-on-primary-container) /
|
106
|
+
var(--md-sys-light-state-hover-state-layer-opacity)
|
107
|
+
);
|
108
|
+
--md-sys-tonal-primary-pressed-layer-state: rgb(
|
109
|
+
var(--md-sys-light-on-primary-container) /
|
110
|
+
var(--md-sys-light-state-pressed-state-layer-opacity)
|
111
|
+
);
|
112
|
+
--md-sys-tonal-secondary-hover-layer-state: rgb(
|
113
|
+
var(--md-sys-light-on-secondary-container) /
|
114
|
+
var(--md-sys-light-state-hover-state-layer-opacity)
|
115
|
+
);
|
116
|
+
--md-sys-tonal-secondary-pressed-layer-state: rgb(
|
117
|
+
var(--md-sys-light-on-secondary-container) /
|
118
|
+
var(--md-sys-light-state-pressed-state-layer-opacity)
|
119
|
+
);
|
120
|
+
--md-sys-tonal-tertiary-hover-layer-state: rgb(
|
121
|
+
var(--md-sys-light-on-tertiary-container) /
|
122
|
+
var(--md-sys-light-state-hover-state-layer-opacity)
|
123
|
+
);
|
124
|
+
--md-sys-tonal-tertiary-pressed-layer-state: rgb(
|
125
|
+
var(--md-sys-light-on-tertiary-container) /
|
126
|
+
var(--md-sys-light-state-pressed-state-layer-opacity)
|
127
|
+
);
|
128
|
+
--md-sys-tonal-error-hover-layer-state: rgb(
|
129
|
+
var(--md-sys-light-on-error-container) /
|
130
|
+
var(--md-sys-light-state-hover-state-layer-opacity)
|
131
|
+
);
|
132
|
+
--md-sys-tonal-error-pressed-layer-state: rgb(
|
133
|
+
var(--md-sys-light-on-error-container) /
|
134
|
+
var(--md-sys-light-state-pressed-state-layer-opacity)
|
135
|
+
);
|
136
|
+
--md-sys-filled-primary-hover-layer-state: rgb(
|
137
|
+
var(--md-sys-light-on-primary) /
|
138
|
+
var(--md-sys-light-state-hover-state-layer-opacity)
|
139
|
+
);
|
140
|
+
--md-sys-filled-primary-pressed-layer-state: rgb(
|
141
|
+
var(--md-sys-light-on-primary) /
|
142
|
+
var(--md-sys-light-state-pressed-state-layer-opacity)
|
143
|
+
);
|
144
|
+
--md-sys-filled-secondary-hover-layer-state: rgb(
|
145
|
+
var(--md-sys-light-on-secondary) /
|
146
|
+
var(--md-sys-light-state-hover-state-layer-opacity)
|
147
|
+
);
|
148
|
+
--md-sys-filled-secondary-pressed-layer-state: rgb(
|
149
|
+
var(--md-sys-light-on-secondary) /
|
150
|
+
var(--md-sys-light-state-pressed-state-layer-opacity)
|
151
|
+
);
|
152
|
+
--md-sys-filled-tertiary-hover-layer-state: rgb(
|
153
|
+
var(--md-sys-light-on-tertiary) /
|
154
|
+
var(--md-sys-light-state-hover-state-layer-opacity)
|
155
|
+
);
|
156
|
+
--md-sys-filled-tertiary-pressed-layer-state: rgb(
|
157
|
+
var(--md-sys-light-on-tertiary) /
|
158
|
+
var(--md-sys-light-state-pressed-state-layer-opacity)
|
159
|
+
);
|
160
|
+
--md-sys-filled-error-hover-layer-state: rgb(
|
161
|
+
var(--md-sys-light-on-error) /
|
162
|
+
var(--md-sys-light-state-hover-state-layer-opacity)
|
163
|
+
);
|
164
|
+
--md-sys-filled-error-pressed-layer-state: rgb(
|
165
|
+
var(--md-sys-light-on-error) /
|
166
|
+
var(--md-sys-light-state-pressed-state-layer-opacity)
|
167
|
+
);
|
168
|
+
--md-sys-outlined-primary-hover-layer-state: rgb(
|
169
|
+
var(--md-sys-light-primary) /
|
170
|
+
var(--md-sys-light-state-hover-state-layer-opacity)
|
171
|
+
);
|
172
|
+
--md-sys-outlined-primary-pressed-layer-state: rgb(
|
173
|
+
var(--md-sys-light-primary) /
|
174
|
+
var(--md-sys-light-state-pressed-state-layer-opacity)
|
175
|
+
);
|
176
|
+
--md-sys-outlined-secondary-hover-layer-state: rgb(
|
177
|
+
var(--md-sys-light-secondary) /
|
178
|
+
var(--md-sys-light-state-hover-state-layer-opacity)
|
179
|
+
);
|
180
|
+
--md-sys-outlined-secondary-pressed-layer-state: rgb(
|
181
|
+
var(--md-sys-light-secondary) /
|
182
|
+
var(--md-sys-light-state-pressed-state-layer-opacity)
|
183
|
+
);
|
184
|
+
--md-sys-outlined-tertiary-hover-layer-state: rgb(
|
185
|
+
var(--md-sys-light-tertiary) /
|
186
|
+
var(--md-sys-light-state-hover-state-layer-opacity)
|
187
|
+
);
|
188
|
+
--md-sys-outlined-tertiary-pressed-layer-state: rgb(
|
189
|
+
var(--md-sys-light-tertiary) /
|
190
|
+
var(--md-sys-light-state-pressed-state-layer-opacity)
|
191
|
+
);
|
192
|
+
--md-sys-outlined-error-hover-layer-state: rgb(
|
193
|
+
var(--md-sys-light-error) /
|
194
|
+
var(--md-sys-light-state-hover-state-layer-opacity)
|
195
|
+
);
|
196
|
+
--md-sys-outlined-error-pressed-layer-state: rgb(
|
197
|
+
var(--md-sys-light-error) /
|
198
|
+
var(--md-sys-light-state-pressed-state-layer-opacity)
|
199
|
+
);
|
20
200
|
}
|
21
201
|
}
|
22
202
|
|
23
|
-
.
|
203
|
+
.button--container {
|
24
204
|
height: 40px;
|
25
205
|
border-radius: 40px;
|
26
206
|
position: relative;
|
207
|
+
width: fit-content;
|
208
|
+
font-size: 14px;
|
27
209
|
}
|
28
210
|
|
29
|
-
.
|
211
|
+
.button--content {
|
30
212
|
height: 100%;
|
31
213
|
display: flex;
|
32
214
|
justify-content: center;
|
@@ -36,12 +218,6 @@
|
|
36
218
|
text-overflow: ellipsis;
|
37
219
|
white-space: nowrap;
|
38
220
|
gap: 8px;
|
39
|
-
font-size: 14px;
|
40
|
-
}
|
41
|
-
|
42
|
-
.common-button--icon {
|
43
|
-
height: 18px;
|
44
|
-
height: 18px;
|
45
221
|
}
|
46
222
|
|
47
223
|
.icon-button--container {
|
@@ -59,7 +235,7 @@
|
|
59
235
|
transition: background 0.4s;
|
60
236
|
}
|
61
237
|
|
62
|
-
.
|
238
|
+
.button__elevated--primary {
|
63
239
|
box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.2), 0 3px 1px 1px rgba(0, 0, 0, 0.15);
|
64
240
|
@media (prefers-color-scheme: light) {
|
65
241
|
background: rgb(var(--md-sys-light-surface-container-low));
|
@@ -71,39 +247,158 @@
|
|
71
247
|
}
|
72
248
|
}
|
73
249
|
|
74
|
-
.
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
250
|
+
.button__elevated--secondary {
|
251
|
+
box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.2), 0 3px 1px 1px rgba(0, 0, 0, 0.15);
|
252
|
+
@media (prefers-color-scheme: light) {
|
253
|
+
background: rgb(var(--md-sys-light-surface-container-low));
|
254
|
+
color: rgb(var(--md-sys-light-secondary));
|
255
|
+
}
|
256
|
+
@media (prefers-color-scheme: dark) {
|
257
|
+
background: rgb(var(--md-sys-dark-surface-container-low));
|
258
|
+
color: rgb(var(--md-sys-dark-secondary));
|
259
|
+
}
|
260
|
+
}
|
261
|
+
|
262
|
+
.button__elevated--tertiary {
|
263
|
+
box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.2), 0 3px 1px 1px rgba(0, 0, 0, 0.15);
|
264
|
+
@media (prefers-color-scheme: light) {
|
265
|
+
background: rgb(var(--md-sys-light-surface-container-low));
|
266
|
+
color: rgb(var(--md-sys-light-tertiary));
|
267
|
+
}
|
268
|
+
@media (prefers-color-scheme: dark) {
|
269
|
+
background: rgb(var(--md-sys-dark-surface-container-low));
|
270
|
+
color: rgb(var(--md-sys-dark-tertiary));
|
271
|
+
}
|
272
|
+
}
|
273
|
+
|
274
|
+
.button__elevated--error {
|
275
|
+
box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.2), 0 3px 1px 1px rgba(0, 0, 0, 0.15);
|
276
|
+
@media (prefers-color-scheme: light) {
|
277
|
+
background: rgb(var(--md-sys-light-surface-container-low));
|
278
|
+
color: rgb(var(--md-sys-light-error));
|
279
|
+
}
|
280
|
+
@media (prefers-color-scheme: dark) {
|
281
|
+
background: rgb(var(--md-sys-dark-surface-container-low));
|
282
|
+
color: rgb(var(--md-sys-dark-error));
|
283
|
+
}
|
284
|
+
}
|
285
|
+
|
286
|
+
.button__elevated--primary:not(:disabled) .layer-state__elevated:hover,
|
287
|
+
.button__outlined--primary:not(:disabled) .layer-state__outlined:hover,
|
288
|
+
.button__text--primary:not(:disabled) .layer-state__text:hover {
|
289
|
+
background: var(--md-sys-outlined-primary-hover-layer-state)
|
290
|
+
radial-gradient(
|
291
|
+
circle,
|
292
|
+
transparent 1%,
|
293
|
+
var(--md-sys-outlined-primary-hover-layer-state) 1%
|
294
|
+
)
|
295
|
+
center/15000%;
|
296
|
+
}
|
297
|
+
|
298
|
+
.button__elevated--secondary:not(:disabled) .layer-state__elevated:hover,
|
299
|
+
.button__outlined--secondary:not(:disabled) .layer-state__outlined:hover,
|
300
|
+
.button__text--secondary:not(:disabled) .layer-state__text:hover {
|
301
|
+
background: var(--md-sys-outlined-secondary-hover-layer-state)
|
302
|
+
radial-gradient(
|
303
|
+
circle,
|
304
|
+
transparent 1%,
|
305
|
+
var(--md-sys-outlined-secondary-hover-layer-state) 1%
|
306
|
+
)
|
307
|
+
center/15000%;
|
308
|
+
}
|
309
|
+
|
310
|
+
.button__elevated--tertiary:not(:disabled) .layer-state__elevated:hover,
|
311
|
+
.button__outlined--tertiary:not(:disabled) .layer-state__outlined:hover,
|
312
|
+
.button__text--tertiary:not(:disabled) .layer-state__text:hover {
|
313
|
+
background: var(--md-sys-outlined-tertiary-hover-layer-state)
|
314
|
+
radial-gradient(
|
315
|
+
circle,
|
316
|
+
transparent 1%,
|
317
|
+
var(--md-sys-outlined-tertiary-hover-layer-state) 1%
|
318
|
+
)
|
319
|
+
center/15000%;
|
320
|
+
}
|
321
|
+
|
322
|
+
.button__elevated--error:not(:disabled) .layer-state__elevated:hover,
|
323
|
+
.button__outlined--error:not(:disabled) .layer-state__outlined:hover,
|
324
|
+
.button__text--error:not(:disabled) .layer-state__text:hover {
|
325
|
+
background: var(--md-sys-outlined-error-hover-layer-state)
|
326
|
+
radial-gradient(
|
327
|
+
circle,
|
328
|
+
transparent 1%,
|
329
|
+
var(--md-sys-outlined-error-hover-layer-state) 1%
|
330
|
+
)
|
331
|
+
center/15000%;
|
332
|
+
}
|
333
|
+
|
334
|
+
.button__elevated--primary:not(:disabled) .layer-state__elevated:active,
|
335
|
+
.button__outlined--primary:not(:disabled) .layer-state__outlined:active,
|
336
|
+
.button__text--primary:not(:disabled) .layer-state__text:active {
|
337
|
+
background-size: 100%;
|
338
|
+
transition: background 0s;
|
339
|
+
background-color: var(--md-sys-outlined-primary-pressed-layer-state);
|
340
|
+
}
|
341
|
+
|
342
|
+
.button__elevated--secondary:not(:disabled) .layer-state__elevated:active,
|
343
|
+
.button__outlined--secondary:not(:disabled) .layer-state__outlined:active,
|
344
|
+
.button__text--secondary:not(:disabled) .layer-state__text:active {
|
345
|
+
background-size: 100%;
|
346
|
+
transition: background 0s;
|
347
|
+
background-color: var(--md-sys-outlined-secondary-pressed-layer-state);
|
81
348
|
}
|
82
349
|
|
83
|
-
.
|
84
|
-
.layer-
|
85
|
-
.
|
86
|
-
.layer-state__outlined:active,
|
87
|
-
.common-button__text:not(:disabled)
|
88
|
-
.layer-state__text:active {
|
350
|
+
.button__elevated--tertiary:not(:disabled) .layer-state__elevated:active,
|
351
|
+
.button__outlined--tertiary:not(:disabled) .layer-state__outlined:active,
|
352
|
+
.button__text--tertiary:not(:disabled) .layer-state__text:active {
|
89
353
|
background-size: 100%;
|
90
354
|
transition: background 0s;
|
91
|
-
background-color: var(--md-sys-outlined-pressed-layer-state);
|
355
|
+
background-color: var(--md-sys-outlined-tertiary-pressed-layer-state);
|
92
356
|
}
|
93
357
|
|
94
|
-
.
|
358
|
+
.button__elevated--error:not(:disabled) .layer-state__elevated:active,
|
359
|
+
.button__outlined--error:not(:disabled) .layer-state__outlined:active,
|
360
|
+
.button__text--error:not(:disabled) .layer-state__text:active {
|
361
|
+
background-size: 100%;
|
362
|
+
transition: background 0s;
|
363
|
+
background-color: var(--md-sys-outlined-error-pressed-layer-state);
|
364
|
+
}
|
365
|
+
|
366
|
+
.button__elevated--primary:disabled,
|
367
|
+
.button__elevated--secondary:disabled,
|
368
|
+
.button__elevated--tertiary:disabled,
|
369
|
+
.button__elevated--error:disabled,
|
370
|
+
.button__filled--primary:disabled,
|
371
|
+
.button__filled--secondary:disabled,
|
372
|
+
.button__filled--tertiary:disabled,
|
373
|
+
.button__filled--error:disabled,
|
374
|
+
.button__tonal--primary:disabled,
|
375
|
+
.button__tonal--secondary:disabled,
|
376
|
+
.button__tonal--tertiary:disabled,
|
377
|
+
.button__tonal--error:disabled {
|
95
378
|
box-shadow: none;
|
96
379
|
@media (prefers-color-scheme: light) {
|
97
|
-
background: rgb(
|
98
|
-
|
380
|
+
background: rgb(
|
381
|
+
var(--md-sys-light-on-surface) /
|
382
|
+
var(--md-sys-light-state-hover-state-layer-opacity)
|
383
|
+
);
|
384
|
+
color: rgb(
|
385
|
+
var(--md-sys-light-on-surface) /
|
386
|
+
var(--md-sys-light-state-disabled-state-layer-opacity)
|
387
|
+
);
|
99
388
|
}
|
100
389
|
@media (prefers-color-scheme: dark) {
|
101
|
-
background: rgb(
|
102
|
-
|
390
|
+
background: rgb(
|
391
|
+
var(--md-sys-dark-on-surface) /
|
392
|
+
var(--md-sys-dark-state-hover-state-layer-opacity)
|
393
|
+
);
|
394
|
+
color: rgb(
|
395
|
+
var(--md-sys-dark-on-surface) /
|
396
|
+
var(--md-sys-dark-state-disabled-state-layer-opacity)
|
397
|
+
);
|
103
398
|
}
|
104
399
|
}
|
105
400
|
|
106
|
-
.
|
401
|
+
.button__filled--primary {
|
107
402
|
@media (prefers-color-scheme: light) {
|
108
403
|
background: rgb(var(--md-sys-light-primary));
|
109
404
|
color: rgb(var(--md-sys-light-on-primary));
|
@@ -114,19 +409,104 @@
|
|
114
409
|
}
|
115
410
|
}
|
116
411
|
|
117
|
-
.
|
118
|
-
|
119
|
-
|
412
|
+
.button__filled--secondary {
|
413
|
+
@media (prefers-color-scheme: light) {
|
414
|
+
background: rgb(var(--md-sys-light-secondary));
|
415
|
+
color: rgb(var(--md-sys-light-on-secondary));
|
416
|
+
}
|
417
|
+
@media (prefers-color-scheme: dark) {
|
418
|
+
background: rgb(var(--md-sys-dark-secondary));
|
419
|
+
color: rgb(var(--md-sys-dark-on-secondary));
|
420
|
+
}
|
421
|
+
}
|
422
|
+
|
423
|
+
.button__filled--tertiary {
|
424
|
+
@media (prefers-color-scheme: light) {
|
425
|
+
background: rgb(var(--md-sys-light-tertiary));
|
426
|
+
color: rgb(var(--md-sys-light-on-tertiary));
|
427
|
+
}
|
428
|
+
@media (prefers-color-scheme: dark) {
|
429
|
+
background: rgb(var(--md-sys-dark-tertiary));
|
430
|
+
color: rgb(var(--md-sys-dark-on-tertiary));
|
431
|
+
}
|
120
432
|
}
|
121
433
|
|
122
|
-
.
|
123
|
-
|
434
|
+
.button__filled--error {
|
435
|
+
@media (prefers-color-scheme: light) {
|
436
|
+
background: rgb(var(--md-sys-light-error));
|
437
|
+
color: rgb(var(--md-sys-light-on-error));
|
438
|
+
}
|
439
|
+
@media (prefers-color-scheme: dark) {
|
440
|
+
background: rgb(var(--md-sys-dark-error));
|
441
|
+
color: rgb(var(--md-sys-dark-on-error));
|
442
|
+
}
|
443
|
+
}
|
444
|
+
|
445
|
+
.button__filled--primary:not(:disabled) .layer-state__filled:hover {
|
446
|
+
background: var(--md-sys-filled-primary-hover-layer-state)
|
447
|
+
radial-gradient(
|
448
|
+
circle,
|
449
|
+
transparent 1%,
|
450
|
+
var(--md-sys-filled-primary-hover-layer-state) 1%
|
451
|
+
)
|
452
|
+
center/15000%;
|
453
|
+
}
|
454
|
+
|
455
|
+
.button__filled--secondary:not(:disabled) .layer-state__filled:hover {
|
456
|
+
background: var(--md-sys-filled-secondary-hover-layer-state)
|
457
|
+
radial-gradient(
|
458
|
+
circle,
|
459
|
+
transparent 1%,
|
460
|
+
var(--md-sys-filled-secondary-hover-layer-state) 1%
|
461
|
+
)
|
462
|
+
center/15000%;
|
463
|
+
}
|
464
|
+
|
465
|
+
.button__filled--tertiary:not(:disabled) .layer-state__filled:hover {
|
466
|
+
background: var(--md-sys-filled-tertiary-hover-layer-state)
|
467
|
+
radial-gradient(
|
468
|
+
circle,
|
469
|
+
transparent 1%,
|
470
|
+
var(--md-sys-filled-tertiary-hover-layer-state) 1%
|
471
|
+
)
|
472
|
+
center/15000%;
|
473
|
+
}
|
474
|
+
|
475
|
+
.button__filled--error:not(:disabled) .layer-state__filled:hover {
|
476
|
+
background: var(--md-sys-filled-error-hover-layer-state)
|
477
|
+
radial-gradient(
|
478
|
+
circle,
|
479
|
+
transparent 1%,
|
480
|
+
var(--md-sys-filled-error-hover-layer-state) 1%
|
481
|
+
)
|
482
|
+
center/15000%;
|
483
|
+
}
|
484
|
+
|
485
|
+
.button__filled--primary:not(:disabled) .layer-state__filled:active {
|
486
|
+
background-size: 100%;
|
487
|
+
transition: background 0s;
|
488
|
+
background-color: var(--md-sys-filled-primary-pressed-layer-state);
|
489
|
+
}
|
490
|
+
|
491
|
+
.button__filled--secondary:not(:disabled) .layer-state__filled:active {
|
124
492
|
background-size: 100%;
|
125
493
|
transition: background 0s;
|
126
|
-
background-color: var(--md-sys-filled-pressed-layer-state);
|
494
|
+
background-color: var(--md-sys-filled-secondary-pressed-layer-state);
|
127
495
|
}
|
128
496
|
|
129
|
-
.
|
497
|
+
.button__filled--tertiary:not(:disabled) .layer-state__filled:active {
|
498
|
+
background-size: 100%;
|
499
|
+
transition: background 0s;
|
500
|
+
background-color: var(--md-sys-filled-tertiary-pressed-layer-state);
|
501
|
+
}
|
502
|
+
|
503
|
+
.button__filled--error:not(:disabled) .layer-state__filled:active {
|
504
|
+
background-size: 100%;
|
505
|
+
transition: background 0s;
|
506
|
+
background-color: var(--md-sys-filled-error-pressed-layer-state);
|
507
|
+
}
|
508
|
+
|
509
|
+
.button__outlined--primary {
|
130
510
|
@media (prefers-color-scheme: light) {
|
131
511
|
color: rgb(var(--md-sys-light-primary));
|
132
512
|
border: 1px solid rgb(var(--md-sys-light-outline));
|
@@ -137,18 +517,68 @@
|
|
137
517
|
}
|
138
518
|
}
|
139
519
|
|
140
|
-
.
|
520
|
+
.button__outlined--secondary {
|
141
521
|
@media (prefers-color-scheme: light) {
|
142
|
-
color: rgb(var(--md-sys-light-
|
143
|
-
border: 1px solid rgb(var(--md-sys-light-
|
522
|
+
color: rgb(var(--md-sys-light-secondary));
|
523
|
+
border: 1px solid rgb(var(--md-sys-light-outline));
|
144
524
|
}
|
145
525
|
@media (prefers-color-scheme: dark) {
|
146
|
-
color: rgb(var(--md-sys-dark-
|
147
|
-
border: 1px solid rgb(var(--md-sys-dark-
|
526
|
+
color: rgb(var(--md-sys-dark-secondary));
|
527
|
+
border: 1px solid rgb(var(--md-sys-dark-outline));
|
528
|
+
}
|
529
|
+
}
|
530
|
+
|
531
|
+
.button__outlined--tertiary {
|
532
|
+
@media (prefers-color-scheme: light) {
|
533
|
+
color: rgb(var(--md-sys-light-tertiary));
|
534
|
+
border: 1px solid rgb(var(--md-sys-light-outline));
|
535
|
+
}
|
536
|
+
@media (prefers-color-scheme: dark) {
|
537
|
+
color: rgb(var(--md-sys-dark-tertiary));
|
538
|
+
border: 1px solid rgb(var(--md-sys-dark-outline));
|
539
|
+
}
|
540
|
+
}
|
541
|
+
|
542
|
+
.button__outlined--error {
|
543
|
+
@media (prefers-color-scheme: light) {
|
544
|
+
color: rgb(var(--md-sys-light-error));
|
545
|
+
border: 1px solid rgb(var(--md-sys-light-outline));
|
546
|
+
}
|
547
|
+
@media (prefers-color-scheme: dark) {
|
548
|
+
color: rgb(var(--md-sys-dark-error));
|
549
|
+
border: 1px solid rgb(var(--md-sys-dark-outline));
|
148
550
|
}
|
149
551
|
}
|
150
552
|
|
151
|
-
.
|
553
|
+
.button__outlined--primary:disabled,
|
554
|
+
.button__outlined--secondary:disabled,
|
555
|
+
.button__outlined--tertiary:disabled,
|
556
|
+
.button__outlined--error:disabled {
|
557
|
+
@media (prefers-color-scheme: light) {
|
558
|
+
color: rgb(
|
559
|
+
var(--md-sys-light-on-surface) /
|
560
|
+
var(--md-sys-light-state-disabled-state-layer-opacity)
|
561
|
+
);
|
562
|
+
border: 1px solid
|
563
|
+
rgb(
|
564
|
+
var(--md-sys-light-on-surface) /
|
565
|
+
var(--md-sys-light-state-hover-state-layer-opacity)
|
566
|
+
);
|
567
|
+
}
|
568
|
+
@media (prefers-color-scheme: dark) {
|
569
|
+
color: rgb(
|
570
|
+
var(--md-sys-dark-on-surface) /
|
571
|
+
var(--md-sys-dark-state-disabled-state-layer-opacity)
|
572
|
+
);
|
573
|
+
border: 1px solid
|
574
|
+
rgb(
|
575
|
+
var(--md-sys-dark-on-surface) /
|
576
|
+
var(--md-sys-dark-state-hover-state-layer-opacity)
|
577
|
+
);
|
578
|
+
}
|
579
|
+
}
|
580
|
+
|
581
|
+
.button__text--primary {
|
152
582
|
@media (prefers-color-scheme: light) {
|
153
583
|
color: rgb(var(--md-sys-light-primary));
|
154
584
|
}
|
@@ -157,16 +587,63 @@
|
|
157
587
|
}
|
158
588
|
}
|
159
589
|
|
160
|
-
.
|
590
|
+
.button__text--secondary {
|
591
|
+
@media (prefers-color-scheme: light) {
|
592
|
+
color: rgb(var(--md-sys-light-secondary));
|
593
|
+
}
|
594
|
+
@media (prefers-color-scheme: dark) {
|
595
|
+
color: rgb(var(--md-sys-dark-secondary));
|
596
|
+
}
|
597
|
+
}
|
598
|
+
|
599
|
+
.button__text--tertiary {
|
600
|
+
@media (prefers-color-scheme: light) {
|
601
|
+
color: rgb(var(--md-sys-light-tertiary));
|
602
|
+
}
|
603
|
+
@media (prefers-color-scheme: dark) {
|
604
|
+
color: rgb(var(--md-sys-dark-tertiary));
|
605
|
+
}
|
606
|
+
}
|
607
|
+
|
608
|
+
.button__text--error {
|
161
609
|
@media (prefers-color-scheme: light) {
|
162
|
-
color: rgb(var(--md-sys-light-
|
610
|
+
color: rgb(var(--md-sys-light-error));
|
163
611
|
}
|
164
612
|
@media (prefers-color-scheme: dark) {
|
165
|
-
color: rgb(var(--md-sys-dark-
|
613
|
+
color: rgb(var(--md-sys-dark-error));
|
166
614
|
}
|
167
615
|
}
|
168
616
|
|
169
|
-
.
|
617
|
+
.button__text--primary:disabled,
|
618
|
+
.button__text--secondary:disabled,
|
619
|
+
.button__text--tertiary:disabled,
|
620
|
+
.button__text--error:disabled {
|
621
|
+
@media (prefers-color-scheme: light) {
|
622
|
+
color: rgb(
|
623
|
+
var(--md-sys-light-on-surface) /
|
624
|
+
var(--md-sys-light-state-disabled-state-layer-opacity)
|
625
|
+
);
|
626
|
+
}
|
627
|
+
@media (prefers-color-scheme: dark) {
|
628
|
+
color: rgb(
|
629
|
+
var(--md-sys-dark-on-surface) /
|
630
|
+
var(--md-sys-dark-state-disabled-state-layer-opacity)
|
631
|
+
);
|
632
|
+
}
|
633
|
+
}
|
634
|
+
|
635
|
+
.button__tonal--primary {
|
636
|
+
@media (prefers-color-scheme: light) {
|
637
|
+
background: rgb(var(--md-sys-light-primary-container));
|
638
|
+
color: rgb(var(--md-sys-light-on-primary-container));
|
639
|
+
}
|
640
|
+
@media (prefers-color-scheme: dark) {
|
641
|
+
background: rgb(var(--md-sys-dark-primary-container));
|
642
|
+
color: rgb(var(--md-sys-dark-on-primary-container));
|
643
|
+
}
|
644
|
+
}
|
645
|
+
|
646
|
+
.button__tonal--secondary {
|
170
647
|
@media (prefers-color-scheme: light) {
|
171
648
|
background: rgb(var(--md-sys-light-secondary-container));
|
172
649
|
color: rgb(var(--md-sys-light-on-secondary-container));
|
@@ -177,12 +654,88 @@
|
|
177
654
|
}
|
178
655
|
}
|
179
656
|
|
180
|
-
.
|
181
|
-
|
657
|
+
.button__tonal--tertiary {
|
658
|
+
@media (prefers-color-scheme: light) {
|
659
|
+
background: rgb(var(--md-sys-light-tertiary-container));
|
660
|
+
color: rgb(var(--md-sys-light-on-tertiary-container));
|
661
|
+
}
|
662
|
+
@media (prefers-color-scheme: dark) {
|
663
|
+
background: rgb(var(--md-sys-dark-tertiary-container));
|
664
|
+
color: rgb(var(--md-sys-dark-on-tertiary-container));
|
665
|
+
}
|
666
|
+
}
|
667
|
+
|
668
|
+
.button__tonal--error {
|
669
|
+
@media (prefers-color-scheme: light) {
|
670
|
+
background: rgb(var(--md-sys-light-error-container));
|
671
|
+
color: rgb(var(--md-sys-light-on-error-container));
|
672
|
+
}
|
673
|
+
@media (prefers-color-scheme: dark) {
|
674
|
+
background: rgb(var(--md-sys-dark-error-container));
|
675
|
+
color: rgb(var(--md-sys-dark-on-error-container));
|
676
|
+
}
|
677
|
+
}
|
678
|
+
|
679
|
+
.button__tonal--primary:not(:disabled) .layer-state__tonal:hover {
|
680
|
+
background: var(--md-sys-tonal-primary-hover-layer-state)
|
681
|
+
radial-gradient(
|
682
|
+
circle,
|
683
|
+
transparent 1%,
|
684
|
+
var(--md-sys-tonal-primary-hover-layer-state) 1%
|
685
|
+
)
|
686
|
+
center/15000%;
|
687
|
+
}
|
688
|
+
|
689
|
+
.button__tonal--secondary:not(:disabled) .layer-state__tonal:hover {
|
690
|
+
background: var(--md-sys-tonal-secondary-hover-layer-state)
|
691
|
+
radial-gradient(
|
692
|
+
circle,
|
693
|
+
transparent 1%,
|
694
|
+
var(--md-sys-tonal-secondary-hover-layer-state) 1%
|
695
|
+
)
|
696
|
+
center/15000%;
|
697
|
+
}
|
698
|
+
|
699
|
+
.button__tonal--tertiary:not(:disabled) .layer-state__tonal:hover {
|
700
|
+
background: var(--md-sys-tonal-tertiary-hover-layer-state)
|
701
|
+
radial-gradient(
|
702
|
+
circle,
|
703
|
+
transparent 1%,
|
704
|
+
var(--md-sys-tonal-tertiary-hover-layer-state) 1%
|
705
|
+
)
|
706
|
+
center/15000%;
|
707
|
+
}
|
708
|
+
|
709
|
+
.button__tonal--error:not(:disabled) .layer-state__tonal:hover {
|
710
|
+
background: var(--md-sys-tonal-error-hover-layer-state)
|
711
|
+
radial-gradient(
|
712
|
+
circle,
|
713
|
+
transparent 1%,
|
714
|
+
var(--md-sys-tonal-error-hover-layer-state) 1%
|
715
|
+
)
|
716
|
+
center/15000%;
|
717
|
+
}
|
718
|
+
|
719
|
+
.button__tonal--primary:not(:disabled) .layer-state__tonal:active {
|
720
|
+
background-color: var(--md-sys-tonal-primary-pressed-layer-state);
|
721
|
+
background-size: 100%;
|
722
|
+
transition: background 0s;
|
723
|
+
}
|
724
|
+
|
725
|
+
.button__tonal--secondary:not(:disabled) .layer-state__tonal:active {
|
726
|
+
background-color: var(--md-sys-tonal-secondary-pressed-layer-state);
|
727
|
+
background-size: 100%;
|
728
|
+
transition: background 0s;
|
729
|
+
}
|
730
|
+
|
731
|
+
.button__tonal--tertiary:not(:disabled) .layer-state__tonal:active {
|
732
|
+
background-color: var(--md-sys-tonal-tertiary-pressed-layer-state);
|
733
|
+
background-size: 100%;
|
734
|
+
transition: background 0s;
|
182
735
|
}
|
183
736
|
|
184
|
-
.
|
185
|
-
background-color: var(--md-sys-tonal-pressed-layer-state);
|
737
|
+
.button__tonal--error:not(:disabled) .layer-state__tonal:active {
|
738
|
+
background-color: var(--md-sys-tonal-primary-pressed-layer-state);
|
186
739
|
background-size: 100%;
|
187
740
|
transition: background 0s;
|
188
741
|
}
|
@@ -0,0 +1,36 @@
|
|
1
|
+
module MaterialDesign
|
2
|
+
module ButtonHelper
|
3
|
+
def md_button_to(name = nil, options = nil, html_options = {})
|
4
|
+
variant = html_options[:variant] || "filled"
|
5
|
+
color = html_options[:color] || "primary"
|
6
|
+
icon = html_options[:icon]
|
7
|
+
html_options[:class] = "button--container button__#{variant}--#{color}"
|
8
|
+
|
9
|
+
button_to(options, html_options.except(:variant, :color, :icon)) do
|
10
|
+
content_tag(:div, class: "layer-state layer-state__#{variant}") do
|
11
|
+
content_tag(:div, class: "button--content") do
|
12
|
+
concat(render("material_design/icons/icon", locals: { icon: icon, size: 18 })) if icon
|
13
|
+
concat(name)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
def md_button_tag(name = nil, content_or_options = nil, html_options = {})
|
20
|
+
variant = html_options[:variant] || "filled"
|
21
|
+
color = html_options[:color] || "primary"
|
22
|
+
icon = html_options[:icon]
|
23
|
+
html_options[:class] = "button--container button__#{variant}--#{color}"
|
24
|
+
|
25
|
+
button_tag(content_or_options, html_options.except(:variant, :color)) do
|
26
|
+
content_tag(:div, class: "layer-state layer-state__#{variant}") do
|
27
|
+
content_tag(:div, class: "button--content") do
|
28
|
+
concat(render("material_design/icons/icon", locals: { icon: icon, size: 18 })) if icon
|
29
|
+
concat(name)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
@@ -1,3 +1,3 @@
|
|
1
|
-
<svg
|
2
|
-
<path d="
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="<%= locals[:size] %>" viewBox="0 -960 960 960" width="<%= locals[:size] %>" fill="currentColor">
|
2
|
+
<path d="m424-296 282-282-56-56-226 226-114-114-56 56 170 170Zm56 216q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Z"/>
|
3
3
|
</svg>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
require "rails/railtie"
|
2
|
+
|
3
|
+
module MyGem
|
4
|
+
class Railtie < Rails::Railtie #add uma funcionalidade a um app rails a partir de uma gem
|
5
|
+
initializer "material_design.action_controller" do
|
6
|
+
ActiveSupport.on_load(:action_controller_base) do #quando a base controller for carregada
|
7
|
+
helper MaterialDesign::ButtonHelper #disponibiliza o helper em todos os arquivos
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
data/lib/material_design.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: material_design
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eduardo Yutaka Nakanishi
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2024-
|
13
|
+
date: 2024-09-09 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rails
|
@@ -49,18 +49,14 @@ files:
|
|
49
49
|
- app/assets/stylesheets/material_design/typography.css
|
50
50
|
- app/controllers/material_design/application_controller.rb
|
51
51
|
- app/helpers/material_design/application_helper.rb
|
52
|
+
- app/helpers/material_design/button_helper.rb
|
52
53
|
- app/jobs/material_design/application_job.rb
|
53
54
|
- app/mailers/material_design/application_mailer.rb
|
54
55
|
- app/models/material_design/application_record.rb
|
55
56
|
- app/views/layouts/material_design/application.html.erb
|
56
57
|
- app/views/material_design/app_bars/_top_bar.html.erb
|
57
|
-
- app/views/material_design/buttons/_elevated_button.html.erb
|
58
58
|
- app/views/material_design/buttons/_fab.html.erb
|
59
|
-
- app/views/material_design/buttons/_filled_button.html.erb
|
60
59
|
- app/views/material_design/buttons/_icon_button.html.erb
|
61
|
-
- app/views/material_design/buttons/_outlined_button.html.erb
|
62
|
-
- app/views/material_design/buttons/_text_button.html.erb
|
63
|
-
- app/views/material_design/buttons/_tonal_button.html.erb
|
64
60
|
- app/views/material_design/cards/_outlined.html.erb
|
65
61
|
- app/views/material_design/dividers/_horizontal.html.erb
|
66
62
|
- app/views/material_design/icons/_10k.html.erb
|
@@ -2205,6 +2201,7 @@ files:
|
|
2205
2201
|
- config/routes.rb
|
2206
2202
|
- lib/material_design.rb
|
2207
2203
|
- lib/material_design/engine.rb
|
2204
|
+
- lib/material_design/railtie.rb
|
2208
2205
|
- lib/material_design/version.rb
|
2209
2206
|
- lib/tasks/material_design_tasks.rake
|
2210
2207
|
homepage: https://rubygems.org/gems/material_design
|
@@ -1,10 +0,0 @@
|
|
1
|
-
<button class="common-button--container common-button__elevated" <%= "disabled" if locals[:disabled] %> >
|
2
|
-
<div class="layer-state layer-state__elevated">
|
3
|
-
<div class="common-button--content">
|
4
|
-
<% if locals[:icon] %>
|
5
|
-
<%= render "material_design/icons/icon", locals: {icon: locals[:icon], size: 18} %>
|
6
|
-
<% end %>
|
7
|
-
<%= locals[:label] %>
|
8
|
-
</div>
|
9
|
-
</div>
|
10
|
-
</button>
|
@@ -1,10 +0,0 @@
|
|
1
|
-
<button class="common-button--container common-button__filled" <%= "disabled" if locals[:disabled] %> >
|
2
|
-
<div class="layer-state layer-state__filled">
|
3
|
-
<div class="common-button--content">
|
4
|
-
<% if locals[:icon] %>
|
5
|
-
<%= render "material_design/icons/icon", locals: {icon: locals[:icon], size: 18} %>
|
6
|
-
<% end %>
|
7
|
-
<%= locals[:label] %>
|
8
|
-
</div>
|
9
|
-
</div>
|
10
|
-
</button>
|
@@ -1,10 +0,0 @@
|
|
1
|
-
<button class="common-button--container common-button__outlined" <%= "disabled" if locals[:disabled] %> >
|
2
|
-
<div class="layer-state layer-state__outlined">
|
3
|
-
<div class="common-button--content">
|
4
|
-
<% if locals[:icon] %>
|
5
|
-
<%= render "material_design/icons/icon", locals: {icon: locals[:icon], size: 18} %>
|
6
|
-
<% end %>
|
7
|
-
<%= locals[:label] %>
|
8
|
-
</div>
|
9
|
-
</div>
|
10
|
-
</button>
|
@@ -1,10 +0,0 @@
|
|
1
|
-
<button class="common-button--container common-button__text" <%= "disabled" if locals[:disabled] %> >
|
2
|
-
<div class="layer-state layer-state__text">
|
3
|
-
<div class="common-button--content">
|
4
|
-
<% if locals[:icon] %>
|
5
|
-
<%= render "material_design/icons/icon", locals: {icon: locals[:icon], size: 18} %>
|
6
|
-
<% end %>
|
7
|
-
<%= locals[:label] %>
|
8
|
-
</div>
|
9
|
-
</div>
|
10
|
-
</button>
|
@@ -1,10 +0,0 @@
|
|
1
|
-
<button class="common-button--container common-button__tonal" <%= "disabled" if locals[:disabled] %> >
|
2
|
-
<div class="layer-state layer-state__tonal">
|
3
|
-
<div class="common-button--content">
|
4
|
-
<% if locals[:icon] %>
|
5
|
-
<%= render "material_design/icons/icon", locals: {icon: locals[:icon], size: 18} %>
|
6
|
-
<% end %>
|
7
|
-
<%= locals[:label] %>
|
8
|
-
</div>
|
9
|
-
</div>
|
10
|
-
</button>
|