material_design 0.5.3 → 0.6.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cd9141b530a620f3aaaaa7ccefe6aa219846bba10006632e99213950af7d00e0
4
- data.tar.gz: 31769ef76c245109501d8ec92ff7c24de88a77c494487eb62a42c3622818ed6d
3
+ metadata.gz: 1d86a85c77bdde5abdcc919a6b63cd447c3db69cf65afa3325b09f19f8d49fef
4
+ data.tar.gz: cebebfc9a295e40c2c48373f2f5a0c873331046e3448297a18f9036eec279f32
5
5
  SHA512:
6
- metadata.gz: 29e92b249692d64c8a0728aed70fa195293fd15f445e21b79c3506bdb72015a7bea203f6eda47d6411e7e8aa009a7b0926f46b341506edc3c33f69f638894e35
7
- data.tar.gz: 9e609de49588e87bc841b11aa4cbb0e09a3b6db3c9f19271d55aa51001d3eceb0553b69f0724733032b993f2bbdbcc7354a03d2c69ab4ae253390cabcea4cebd
6
+ metadata.gz: a08b19553c7b3ef39f0c0d3be07e03e5ffb12e3fa750fa82942dad9d95873507f67dcd76fd911a1d00a2276d79b4fdf45bc166d67a96d51c9ca3e2ca71716033
7
+ data.tar.gz: 1f6977e0858cedacfd30eedf7d0c93a2e8b7cb38b8d9609e4712ad4a19c8f67ea38e8e797859788b5680edb0e488716b57fdcb18f49cc80e390b5bdc642513ea
@@ -1,7 +1,11 @@
1
1
  :root {
2
2
  /* color-scheme: light dark; */
3
- --md-sys-light-state-hover-state-layer-opacity: 0.08;
4
- --md-sys-dark-state-hover-state-layer-opacity: 0.08;
3
+ --md-sys-light-state-hover-state-layer-opacity: 0.12;
4
+ --md-sys-dark-state-hover-state-layer-opacity: 0.12;
5
+ --md-sys-light-state-pressed-state-layer-opacity: 0.24;
6
+ --md-sys-dark-state-pressed-state-layer-opacity: 0.24;
7
+ --md-sys-light-state-disabled-state-layer-opacity: 0.38;
8
+ --md-sys-dark-state-disabled-state-layer-opacity: 0.38;
5
9
 
6
10
  /* Light scheme */
7
11
  --md-sys-light-primary: 101 85 143;
@@ -1,4 +1,741 @@
1
+ @media (prefers-color-scheme: light) {
2
+ :root {
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
+ );
99
+ }
100
+ }
101
+
102
+ @media (prefers-color-scheme: dark) {
103
+ :root {
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
+ );
200
+ }
201
+ }
202
+
203
+ .button--container {
204
+ height: 40px;
205
+ border-radius: 40px;
206
+ position: relative;
207
+ width: fit-content;
208
+ font-size: 14px;
209
+ }
210
+
211
+ .button--content {
212
+ height: 100%;
213
+ display: flex;
214
+ justify-content: center;
215
+ align-items: center;
216
+ margin: 0 24px;
217
+ overflow: hidden;
218
+ text-overflow: ellipsis;
219
+ white-space: nowrap;
220
+ gap: 8px;
221
+ }
222
+
1
223
  .icon-button--container {
2
224
  height: 40px;
3
225
  width: 40px;
4
226
  }
227
+
228
+ .layer-state {
229
+ width: 100%;
230
+ height: 100%;
231
+ border-radius: 40px;
232
+ position: relative;
233
+ overflow: hidden;
234
+ background-position: center;
235
+ transition: background 0.4s;
236
+ }
237
+
238
+ .button__elevated--primary {
239
+ box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.2), 0 3px 1px 1px rgba(0, 0, 0, 0.15);
240
+ @media (prefers-color-scheme: light) {
241
+ background: rgb(var(--md-sys-light-surface-container-low));
242
+ color: rgb(var(--md-sys-light-primary));
243
+ }
244
+ @media (prefers-color-scheme: dark) {
245
+ background: rgb(var(--md-sys-dark-surface-container-low));
246
+ color: rgb(var(--md-sys-dark-primary));
247
+ }
248
+ }
249
+
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);
348
+ }
349
+
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 {
353
+ background-size: 100%;
354
+ transition: background 0s;
355
+ background-color: var(--md-sys-outlined-tertiary-pressed-layer-state);
356
+ }
357
+
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 {
378
+ box-shadow: none;
379
+ @media (prefers-color-scheme: light) {
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
+ );
388
+ }
389
+ @media (prefers-color-scheme: dark) {
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
+ );
398
+ }
399
+ }
400
+
401
+ .button__filled--primary {
402
+ @media (prefers-color-scheme: light) {
403
+ background: rgb(var(--md-sys-light-primary));
404
+ color: rgb(var(--md-sys-light-on-primary));
405
+ }
406
+ @media (prefers-color-scheme: dark) {
407
+ background: rgb(var(--md-sys-dark-primary));
408
+ color: rgb(var(--md-sys-dark-on-primary));
409
+ }
410
+ }
411
+
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
+ }
432
+ }
433
+
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 {
492
+ background-size: 100%;
493
+ transition: background 0s;
494
+ background-color: var(--md-sys-filled-secondary-pressed-layer-state);
495
+ }
496
+
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 {
510
+ @media (prefers-color-scheme: light) {
511
+ color: rgb(var(--md-sys-light-primary));
512
+ border: 1px solid rgb(var(--md-sys-light-outline));
513
+ }
514
+ @media (prefers-color-scheme: dark) {
515
+ color: rgb(var(--md-sys-dark-primary));
516
+ border: 1px solid rgb(var(--md-sys-dark-outline));
517
+ }
518
+ }
519
+
520
+ .button__outlined--secondary {
521
+ @media (prefers-color-scheme: light) {
522
+ color: rgb(var(--md-sys-light-secondary));
523
+ border: 1px solid rgb(var(--md-sys-light-outline));
524
+ }
525
+ @media (prefers-color-scheme: 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));
550
+ }
551
+ }
552
+
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 {
582
+ @media (prefers-color-scheme: light) {
583
+ color: rgb(var(--md-sys-light-primary));
584
+ }
585
+ @media (prefers-color-scheme: dark) {
586
+ color: rgb(var(--md-sys-dark-primary));
587
+ }
588
+ }
589
+
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 {
609
+ @media (prefers-color-scheme: light) {
610
+ color: rgb(var(--md-sys-light-error));
611
+ }
612
+ @media (prefers-color-scheme: dark) {
613
+ color: rgb(var(--md-sys-dark-error));
614
+ }
615
+ }
616
+
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 {
647
+ @media (prefers-color-scheme: light) {
648
+ background: rgb(var(--md-sys-light-secondary-container));
649
+ color: rgb(var(--md-sys-light-on-secondary-container));
650
+ }
651
+ @media (prefers-color-scheme: dark) {
652
+ background: rgb(var(--md-sys-dark-secondary-container));
653
+ color: rgb(var(--md-sys-dark-on-secondary-container));
654
+ }
655
+ }
656
+
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;
735
+ }
736
+
737
+ .button__tonal--error:not(:disabled) .layer-state__tonal:active {
738
+ background-color: var(--md-sys-tonal-primary-pressed-layer-state);
739
+ background-size: 100%;
740
+ transition: background 0s;
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,15 +1,12 @@
1
1
  <!DOCTYPE html>
2
2
  <html>
3
- <head>
4
- <title>Material design</title>
5
- <%= csrf_meta_tags %>
6
- <%= csp_meta_tag %>
7
-
8
- <%= stylesheet_link_tag "material_design/application", media: "all" %>
9
- </head>
10
- <body>
11
-
12
- <%= yield %>
13
-
14
- </body>
3
+ <head>
4
+ <title>Material design</title>
5
+ <%= csrf_meta_tags %>
6
+ <%= csp_meta_tag %>
7
+ <%= stylesheet_link_tag "material_design/application", media: "all" %>
8
+ </head>
9
+ <body>
10
+ <%= yield %>
11
+ </body>
15
12
  </html>
@@ -0,0 +1,11 @@
1
+ require "rails/railtie"
2
+
3
+ module MyGem
4
+ class Railtie < Rails::Railtie
5
+ initializer "material_design.action_controller" do
6
+ ActiveSupport.on_load(:action_controller_base) do
7
+ helper MaterialDesign::ButtonHelper
8
+ end
9
+ end
10
+ end
11
+ end
@@ -1,3 +1,3 @@
1
1
  module MaterialDesign
2
- VERSION = "0.5.3"
2
+ VERSION = "0.6.1"
3
3
  end
@@ -1,6 +1,6 @@
1
1
  require "material_design/version"
2
2
  require "material_design/engine"
3
+ require "material_design/railtie"
3
4
 
4
5
  module MaterialDesign
5
- # Your code goes here...
6
6
  end
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.5.3
4
+ version: 0.6.1
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-06-20 00:00:00.000000000 Z
13
+ date: 2024-08-12 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rails
@@ -49,6 +49,7 @@ 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
@@ -2200,6 +2201,7 @@ files:
2200
2201
  - config/routes.rb
2201
2202
  - lib/material_design.rb
2202
2203
  - lib/material_design/engine.rb
2204
+ - lib/material_design/railtie.rb
2203
2205
  - lib/material_design/version.rb
2204
2206
  - lib/tasks/material_design_tasks.rake
2205
2207
  homepage: https://rubygems.org/gems/material_design
@@ -2222,7 +2224,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
2222
2224
  - !ruby/object:Gem::Version
2223
2225
  version: '0'
2224
2226
  requirements: []
2225
- rubygems_version: 3.4.10
2227
+ rubygems_version: 3.5.3
2226
2228
  signing_key:
2227
2229
  specification_version: 4
2228
2230
  summary: Material Design