mithril-materialized 2.0.0-beta.1 → 2.0.0-beta.10

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.
Files changed (68) hide show
  1. package/README.md +286 -306
  2. package/dist/advanced.css +1888 -0
  3. package/dist/autocomplete.d.ts +3 -3
  4. package/dist/breadcrumb.d.ts +53 -0
  5. package/dist/button.d.ts +10 -10
  6. package/dist/carousel.d.ts +2 -2
  7. package/dist/chip.d.ts +2 -2
  8. package/dist/code-block.d.ts +2 -2
  9. package/dist/collapsible.d.ts +2 -2
  10. package/dist/collection.d.ts +2 -2
  11. package/dist/components.css +2310 -0
  12. package/dist/core.css +3402 -0
  13. package/dist/datepicker.d.ts +66 -0
  14. package/dist/dropdown.d.ts +2 -2
  15. package/dist/file-upload.d.ts +34 -0
  16. package/dist/floating-action-button.d.ts +2 -2
  17. package/dist/forms.css +2284 -0
  18. package/dist/index.css +1483 -167
  19. package/dist/index.d.ts +12 -1
  20. package/dist/index.esm.js +3694 -1717
  21. package/dist/index.js +3714 -1716
  22. package/dist/index.min.css +8 -0
  23. package/dist/index.umd.js +3714 -1716
  24. package/dist/input-options.d.ts +1 -1
  25. package/dist/input.d.ts +9 -9
  26. package/dist/label.d.ts +4 -2
  27. package/dist/material-box.d.ts +2 -2
  28. package/dist/modal.d.ts +2 -2
  29. package/dist/option.d.ts +4 -4
  30. package/dist/pagination.d.ts +2 -2
  31. package/dist/parallax.d.ts +2 -2
  32. package/dist/pickers.css +487 -0
  33. package/dist/pushpin.d.ts +32 -0
  34. package/dist/radio.d.ts +4 -4
  35. package/dist/search-select.d.ts +2 -2
  36. package/dist/select.d.ts +2 -2
  37. package/dist/sidenav.d.ts +76 -0
  38. package/dist/switch.d.ts +2 -2
  39. package/dist/tabs.d.ts +2 -4
  40. package/dist/theme-switcher.d.ts +49 -0
  41. package/dist/timepicker.d.ts +42 -0
  42. package/dist/toast.d.ts +45 -0
  43. package/dist/tooltip.d.ts +59 -0
  44. package/dist/utilities.css +3197 -0
  45. package/dist/wizard.d.ts +58 -0
  46. package/package.json +16 -8
  47. package/sass/components/_breadcrumb.scss +248 -0
  48. package/sass/components/_buttons.scss +3 -3
  49. package/sass/components/_chips.scss +8 -8
  50. package/sass/components/_collapsible.scss +8 -8
  51. package/sass/components/_datepicker.scss +45 -14
  52. package/sass/components/_dropdown.scss +5 -5
  53. package/sass/components/_file-upload.scss +228 -0
  54. package/sass/components/_global.scss +7 -5
  55. package/sass/components/_modal.scss +5 -2
  56. package/sass/components/_navbar.scss +13 -5
  57. package/sass/components/_sidenav.scss +164 -7
  58. package/sass/components/_tabs.scss +5 -4
  59. package/sass/components/_theme-switcher.scss +120 -0
  60. package/sass/components/_theme-variables.scss +205 -0
  61. package/sass/components/_timepicker.scss +179 -87
  62. package/sass/components/_wizard.scss +416 -0
  63. package/sass/components/forms/_input-fields.scss +34 -12
  64. package/sass/components/forms/_radio-buttons.scss +10 -10
  65. package/sass/components/forms/_select.scss +8 -8
  66. package/sass/components/forms/_switches.scss +6 -6
  67. package/sass/materialize.scss +7 -0
  68. package/dist/pickers.d.ts +0 -130
@@ -0,0 +1,2310 @@
1
+ @charset "UTF-8";
2
+ html {
3
+ box-sizing: border-box;
4
+ }
5
+
6
+ *, *:before, *:after {
7
+ box-sizing: inherit;
8
+ }
9
+
10
+ button,
11
+ input,
12
+ optgroup,
13
+ select,
14
+ textarea {
15
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
16
+ }
17
+
18
+ ul:not(.browser-default) {
19
+ padding-left: 0;
20
+ list-style-type: none;
21
+ }
22
+ ul:not(.browser-default) > li {
23
+ list-style-type: none;
24
+ }
25
+
26
+ a {
27
+ color: #039be5;
28
+ text-decoration: none;
29
+ -webkit-tap-highlight-color: transparent;
30
+ }
31
+
32
+ .valign-wrapper {
33
+ display: flex;
34
+ align-items: center;
35
+ }
36
+
37
+ .clearfix {
38
+ clear: both;
39
+ }
40
+
41
+ .z-depth-0 {
42
+ box-shadow: none !important;
43
+ }
44
+
45
+ /* 2dp elevation modified*/
46
+ .z-depth-1, .sidenav, .collapsible, .dropdown-content, .btn, .btn-floating, .btn-large, .btn-small {
47
+ box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
48
+ }
49
+
50
+ .z-depth-1-half, .btn:hover, .btn-floating:hover, .btn-large:hover, .btn-small:hover {
51
+ box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
52
+ }
53
+
54
+ /* 6dp elevation modified*/
55
+ .z-depth-2 {
56
+ box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
57
+ }
58
+
59
+ /* 12dp elevation modified*/
60
+ .z-depth-3 {
61
+ box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
62
+ }
63
+
64
+ /* 16dp elevation */
65
+ .z-depth-4 {
66
+ box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
67
+ }
68
+
69
+ /* 24dp elevation */
70
+ .z-depth-5, .modal {
71
+ box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
72
+ }
73
+
74
+ .hoverable {
75
+ transition: box-shadow 0.25s;
76
+ }
77
+ .hoverable:hover {
78
+ box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
79
+ }
80
+
81
+ .divider {
82
+ height: 1px;
83
+ overflow: hidden;
84
+ background-color: #e0e0e0;
85
+ }
86
+
87
+ blockquote {
88
+ margin: 20px 0;
89
+ padding-left: 1.5rem;
90
+ border-left: 5px solid #ee6e73;
91
+ }
92
+
93
+ i {
94
+ line-height: inherit;
95
+ }
96
+ i.left {
97
+ float: left;
98
+ margin-right: 15px;
99
+ }
100
+ i.right {
101
+ float: right;
102
+ margin-left: 15px;
103
+ }
104
+ i.tiny {
105
+ font-size: 1rem;
106
+ }
107
+ i.small {
108
+ font-size: 2rem;
109
+ }
110
+ i.medium {
111
+ font-size: 4rem;
112
+ }
113
+ i.large {
114
+ font-size: 6rem;
115
+ }
116
+
117
+ img.responsive-img,
118
+ video.responsive-video {
119
+ max-width: 100%;
120
+ height: auto;
121
+ }
122
+
123
+ .pagination li {
124
+ display: inline-block;
125
+ border-radius: 2px;
126
+ text-align: center;
127
+ vertical-align: top;
128
+ height: 30px;
129
+ }
130
+ .pagination li a {
131
+ color: #444;
132
+ display: inline-block;
133
+ font-size: 1.2rem;
134
+ padding: 0 10px;
135
+ line-height: 30px;
136
+ }
137
+ .pagination li.active a {
138
+ color: #fff;
139
+ }
140
+ .pagination li.active {
141
+ background-color: #ee6e73;
142
+ }
143
+ .pagination li.disabled a {
144
+ cursor: default;
145
+ color: #999;
146
+ }
147
+ .pagination li i {
148
+ font-size: 2rem;
149
+ }
150
+ .pagination li.pages ul li {
151
+ display: inline-block;
152
+ float: none;
153
+ }
154
+
155
+ @media only screen and (max-width : 992px) {
156
+ .pagination {
157
+ width: 100%;
158
+ }
159
+ .pagination li.prev,
160
+ .pagination li.next {
161
+ width: 10%;
162
+ }
163
+ .pagination li.pages {
164
+ width: 80%;
165
+ overflow: hidden;
166
+ white-space: nowrap;
167
+ }
168
+ }
169
+ .breadcrumb {
170
+ display: inline-block;
171
+ font-size: 18px;
172
+ color: rgba(255, 255, 255, 0.7);
173
+ }
174
+ .breadcrumb i,
175
+ .breadcrumb [class^=mdi-], .breadcrumb [class*=mdi-],
176
+ .breadcrumb i.material-icons {
177
+ display: inline-block;
178
+ float: left;
179
+ font-size: 24px;
180
+ }
181
+ .breadcrumb:before {
182
+ content: "\e5cc";
183
+ color: rgba(255, 255, 255, 0.7);
184
+ vertical-align: top;
185
+ display: inline-block;
186
+ font-family: "Material Icons";
187
+ font-weight: normal;
188
+ font-style: normal;
189
+ font-size: 25px;
190
+ margin: 0 10px 0 8px;
191
+ -webkit-font-smoothing: antialiased;
192
+ float: left;
193
+ }
194
+ .breadcrumb:first-child:before {
195
+ display: none;
196
+ }
197
+ .breadcrumb:last-child {
198
+ color: #fff;
199
+ }
200
+
201
+ .parallax-container {
202
+ position: relative;
203
+ overflow: hidden;
204
+ height: 500px;
205
+ }
206
+ .parallax-container .parallax {
207
+ position: absolute;
208
+ top: 0;
209
+ left: 0;
210
+ right: 0;
211
+ bottom: 0;
212
+ z-index: -1;
213
+ }
214
+ .parallax-container .parallax img {
215
+ opacity: 0;
216
+ position: absolute;
217
+ left: 50%;
218
+ bottom: 0;
219
+ min-width: 100%;
220
+ min-height: 100%;
221
+ transform: translate3d(0, 0, 0);
222
+ transform: translateX(-50%);
223
+ }
224
+
225
+ .pin-top, .pin-bottom {
226
+ position: relative;
227
+ }
228
+
229
+ .pinned {
230
+ position: fixed !important;
231
+ }
232
+
233
+ /*********************
234
+ Transition Classes
235
+ **********************/
236
+ ul.staggered-list li {
237
+ opacity: 0;
238
+ }
239
+
240
+ .fade-in {
241
+ opacity: 0;
242
+ transform-origin: 0 50%;
243
+ }
244
+
245
+ /*********************
246
+ Media Query Classes
247
+ **********************/
248
+ @media only screen and (max-width : 600px) {
249
+ .hide-on-small-only, .hide-on-small-and-down {
250
+ display: none !important;
251
+ }
252
+ }
253
+
254
+ @media only screen and (max-width : 992px) {
255
+ .hide-on-med-and-down {
256
+ display: none !important;
257
+ }
258
+ }
259
+
260
+ @media only screen and (min-width : 601px) {
261
+ .hide-on-med-and-up {
262
+ display: none !important;
263
+ }
264
+ }
265
+
266
+ @media only screen and (min-width: 600px) and (max-width: 992px) {
267
+ .hide-on-med-only {
268
+ display: none !important;
269
+ }
270
+ }
271
+
272
+ @media only screen and (min-width : 993px) {
273
+ .hide-on-large-only {
274
+ display: none !important;
275
+ }
276
+ }
277
+
278
+ @media only screen and (min-width : 1201px) {
279
+ .hide-on-extra-large-only {
280
+ display: none !important;
281
+ }
282
+ }
283
+
284
+ @media only screen and (min-width : 1201px) {
285
+ .show-on-extra-large {
286
+ display: block !important;
287
+ }
288
+ }
289
+
290
+ @media only screen and (min-width : 993px) {
291
+ .show-on-large {
292
+ display: block !important;
293
+ }
294
+ }
295
+
296
+ @media only screen and (min-width: 600px) and (max-width: 992px) {
297
+ .show-on-medium {
298
+ display: block !important;
299
+ }
300
+ }
301
+
302
+ @media only screen and (max-width : 600px) {
303
+ .show-on-small {
304
+ display: block !important;
305
+ }
306
+ }
307
+
308
+ @media only screen and (min-width : 601px) {
309
+ .show-on-medium-and-up {
310
+ display: block !important;
311
+ }
312
+ }
313
+
314
+ @media only screen and (max-width : 992px) {
315
+ .show-on-medium-and-down {
316
+ display: block !important;
317
+ }
318
+ }
319
+
320
+ @media only screen and (max-width : 600px) {
321
+ .center-on-small-only {
322
+ text-align: center;
323
+ }
324
+ }
325
+
326
+ .page-footer {
327
+ padding-top: 20px;
328
+ color: #fff;
329
+ background-color: #ee6e73;
330
+ }
331
+ .page-footer .footer-copyright {
332
+ overflow: hidden;
333
+ min-height: 50px;
334
+ display: flex;
335
+ align-items: center;
336
+ justify-content: space-between;
337
+ padding: 10px 0px;
338
+ color: rgba(255, 255, 255, 0.8);
339
+ background-color: rgba(51, 51, 51, 0.08);
340
+ }
341
+
342
+ table, th, td {
343
+ border: none;
344
+ }
345
+
346
+ table {
347
+ width: 100%;
348
+ display: table;
349
+ border-collapse: collapse;
350
+ border-spacing: 0;
351
+ }
352
+ table.striped tr {
353
+ border-bottom: none;
354
+ }
355
+ table.striped > tbody > tr:nth-child(odd) {
356
+ background-color: rgba(242, 242, 242, 0.5);
357
+ }
358
+ table.striped > tbody > tr > td {
359
+ border-radius: 0;
360
+ }
361
+ table.highlight > tbody > tr {
362
+ transition: background-color 0.25s ease;
363
+ }
364
+ table.highlight > tbody > tr:hover {
365
+ background-color: rgba(242, 242, 242, 0.5);
366
+ }
367
+ table.centered thead tr th, table.centered tbody tr td {
368
+ text-align: center;
369
+ }
370
+
371
+ tr {
372
+ border-bottom: 1px solid rgba(0, 0, 0, 0.12);
373
+ }
374
+
375
+ td, th {
376
+ padding: 15px 5px;
377
+ display: table-cell;
378
+ text-align: left;
379
+ vertical-align: middle;
380
+ border-radius: 2px;
381
+ }
382
+
383
+ @media only screen and (max-width : 992px) {
384
+ table.responsive-table {
385
+ width: 100%;
386
+ border-collapse: collapse;
387
+ border-spacing: 0;
388
+ display: block;
389
+ position: relative;
390
+ /* sort out borders */
391
+ }
392
+ table.responsive-table td:empty:before {
393
+ content: " ";
394
+ }
395
+ table.responsive-table th,
396
+ table.responsive-table td {
397
+ margin: 0;
398
+ vertical-align: top;
399
+ }
400
+ table.responsive-table th {
401
+ text-align: left;
402
+ }
403
+ table.responsive-table thead {
404
+ display: block;
405
+ float: left;
406
+ }
407
+ table.responsive-table thead tr {
408
+ display: block;
409
+ padding: 0 10px 0 0;
410
+ }
411
+ table.responsive-table thead tr th::before {
412
+ content: " ";
413
+ }
414
+ table.responsive-table tbody {
415
+ display: block;
416
+ width: auto;
417
+ position: relative;
418
+ overflow-x: auto;
419
+ white-space: nowrap;
420
+ }
421
+ table.responsive-table tbody tr {
422
+ display: inline-block;
423
+ vertical-align: top;
424
+ }
425
+ table.responsive-table th {
426
+ display: block;
427
+ text-align: right;
428
+ }
429
+ table.responsive-table td {
430
+ display: block;
431
+ min-height: 1.25em;
432
+ text-align: left;
433
+ }
434
+ table.responsive-table tr {
435
+ border-bottom: none;
436
+ padding: 0 10px;
437
+ }
438
+ table.responsive-table thead {
439
+ border: 0;
440
+ border-right: 1px solid rgba(0, 0, 0, 0.12);
441
+ }
442
+ }
443
+ .collection {
444
+ margin: 0.5rem 0 1rem 0;
445
+ border: 1px solid var(--mm-border-color, #e0e0e0);
446
+ border-radius: 2px;
447
+ overflow: hidden;
448
+ position: relative;
449
+ }
450
+ .collection .collection-item {
451
+ background-color: var(--mm-surface-color, #fff);
452
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
453
+ line-height: 1.5rem;
454
+ padding: 10px 20px;
455
+ margin: 0;
456
+ border-bottom: 1px solid var(--mm-border-color, #e0e0e0);
457
+ }
458
+ .collection .collection-item.avatar {
459
+ min-height: 84px;
460
+ padding-left: 72px;
461
+ position: relative;
462
+ }
463
+ .collection .collection-item.avatar:not(.circle-clipper) > .circle,
464
+ .collection .collection-item.avatar :not(.circle-clipper) > .circle {
465
+ position: absolute;
466
+ width: 42px;
467
+ height: 42px;
468
+ overflow: hidden;
469
+ left: 15px;
470
+ display: inline-block;
471
+ vertical-align: middle;
472
+ }
473
+ .collection .collection-item.avatar i.circle {
474
+ font-size: 18px;
475
+ line-height: 42px;
476
+ color: #fff;
477
+ background-color: #999;
478
+ text-align: center;
479
+ }
480
+ .collection .collection-item.avatar .title {
481
+ font-size: 16px;
482
+ }
483
+ .collection .collection-item.avatar p {
484
+ margin: 0;
485
+ }
486
+ .collection .collection-item.avatar .secondary-content {
487
+ position: absolute;
488
+ top: 16px;
489
+ right: 16px;
490
+ }
491
+ .collection .collection-item:last-child {
492
+ border-bottom: none;
493
+ }
494
+ .collection .collection-item.active {
495
+ background-color: #26a69a;
496
+ color: rgb(234.25, 250.25, 248.75);
497
+ }
498
+ .collection .collection-item.active .secondary-content {
499
+ color: #fff;
500
+ }
501
+ .collection a.collection-item {
502
+ display: block;
503
+ transition: 0.25s;
504
+ color: #26a69a;
505
+ }
506
+ .collection a.collection-item:not(.active):hover {
507
+ background-color: #ddd;
508
+ }
509
+ .collection.with-header .collection-header {
510
+ background-color: var(--mm-surface-color, #fff);
511
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
512
+ border-bottom: 1px solid var(--mm-border-color, #e0e0e0);
513
+ padding: 10px 20px;
514
+ }
515
+ .collection.with-header .collection-item {
516
+ padding-left: 30px;
517
+ }
518
+ .collection.with-header .collection-item.avatar {
519
+ padding-left: 72px;
520
+ }
521
+
522
+ .secondary-content {
523
+ float: right;
524
+ color: #26a69a;
525
+ }
526
+
527
+ .collapsible .collection {
528
+ margin: 0;
529
+ border: none;
530
+ }
531
+
532
+ .video-container {
533
+ position: relative;
534
+ padding-bottom: 56.25%;
535
+ height: 0;
536
+ overflow: hidden;
537
+ }
538
+ .video-container iframe, .video-container object, .video-container embed {
539
+ position: absolute;
540
+ top: 0;
541
+ left: 0;
542
+ width: 100%;
543
+ height: 100%;
544
+ }
545
+
546
+ .progress {
547
+ position: relative;
548
+ height: 4px;
549
+ display: block;
550
+ width: 100%;
551
+ background-color: #acece6;
552
+ border-radius: 2px;
553
+ margin: 0.5rem 0 1rem 0;
554
+ overflow: hidden;
555
+ }
556
+ .progress .determinate {
557
+ position: absolute;
558
+ top: 0;
559
+ left: 0;
560
+ bottom: 0;
561
+ background-color: #26a69a;
562
+ transition: width 0.3s linear;
563
+ }
564
+ .progress .indeterminate {
565
+ background-color: #26a69a;
566
+ }
567
+ .progress .indeterminate:before {
568
+ content: "";
569
+ position: absolute;
570
+ background-color: inherit;
571
+ top: 0;
572
+ left: 0;
573
+ bottom: 0;
574
+ will-change: left, right;
575
+ animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
576
+ }
577
+ .progress .indeterminate:after {
578
+ content: "";
579
+ position: absolute;
580
+ background-color: inherit;
581
+ top: 0;
582
+ left: 0;
583
+ bottom: 0;
584
+ will-change: left, right;
585
+ animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
586
+ animation-delay: 1.15s;
587
+ }
588
+
589
+ @keyframes indeterminate {
590
+ 0% {
591
+ left: -35%;
592
+ right: 100%;
593
+ }
594
+ 60% {
595
+ left: 100%;
596
+ right: -90%;
597
+ }
598
+ 100% {
599
+ left: 100%;
600
+ right: -90%;
601
+ }
602
+ }
603
+ @keyframes indeterminate-short {
604
+ 0% {
605
+ left: -200%;
606
+ right: 100%;
607
+ }
608
+ 60% {
609
+ left: 107%;
610
+ right: -8%;
611
+ }
612
+ 100% {
613
+ left: 107%;
614
+ right: -8%;
615
+ }
616
+ }
617
+ /*******************
618
+ Utility Classes
619
+ *******************/
620
+ .hide {
621
+ display: none !important;
622
+ }
623
+
624
+ .left-align {
625
+ text-align: left;
626
+ }
627
+
628
+ .right-align {
629
+ text-align: right;
630
+ }
631
+
632
+ .center, .center-align {
633
+ text-align: center;
634
+ }
635
+
636
+ .left {
637
+ float: left !important;
638
+ }
639
+
640
+ .right {
641
+ float: right !important;
642
+ }
643
+
644
+ .no-select {
645
+ user-select: none;
646
+ }
647
+
648
+ .circle {
649
+ border-radius: 50%;
650
+ }
651
+
652
+ .center-block {
653
+ display: block;
654
+ margin-left: auto;
655
+ margin-right: auto;
656
+ }
657
+
658
+ .truncate {
659
+ display: block;
660
+ white-space: nowrap;
661
+ overflow: hidden;
662
+ text-overflow: ellipsis;
663
+ }
664
+
665
+ .no-padding {
666
+ padding: 0 !important;
667
+ }
668
+
669
+ .btn, .btn-small, .btn-large,
670
+ .btn-flat {
671
+ border: none;
672
+ border-radius: 2px;
673
+ display: inline-block;
674
+ height: 36px;
675
+ line-height: 36px;
676
+ padding: 0 16px;
677
+ text-transform: uppercase;
678
+ vertical-align: middle;
679
+ -webkit-tap-highlight-color: transparent;
680
+ }
681
+
682
+ .btn.disabled,
683
+ .btn-floating.disabled,
684
+ .btn-large.disabled,
685
+ .btn-small.disabled,
686
+ .btn-flat.disabled,
687
+ .btn:disabled,
688
+ .btn-floating:disabled,
689
+ .btn-large:disabled,
690
+ .btn-small:disabled,
691
+ .btn-flat:disabled,
692
+ .btn[disabled],
693
+ .btn-floating[disabled],
694
+ .btn-large[disabled],
695
+ .btn-small[disabled],
696
+ .btn-flat[disabled] {
697
+ pointer-events: none;
698
+ background-color: #DFDFDF !important;
699
+ box-shadow: none;
700
+ color: #9F9F9F !important;
701
+ cursor: default;
702
+ }
703
+ .btn.disabled:hover,
704
+ .btn-floating.disabled:hover,
705
+ .btn-large.disabled:hover,
706
+ .btn-small.disabled:hover,
707
+ .btn-flat.disabled:hover,
708
+ .btn:disabled:hover,
709
+ .btn-floating:disabled:hover,
710
+ .btn-large:disabled:hover,
711
+ .btn-small:disabled:hover,
712
+ .btn-flat:disabled:hover,
713
+ .btn[disabled]:hover,
714
+ .btn-floating[disabled]:hover,
715
+ .btn-large[disabled]:hover,
716
+ .btn-small[disabled]:hover,
717
+ .btn-flat[disabled]:hover {
718
+ background-color: #DFDFDF !important;
719
+ color: #9F9F9F !important;
720
+ }
721
+
722
+ .btn,
723
+ .btn-small,
724
+ .btn-large,
725
+ .btn-floating,
726
+ .btn-flat {
727
+ font-size: 14px;
728
+ outline: 0;
729
+ }
730
+ .btn i,
731
+ .btn-floating i,
732
+ .btn-large i,
733
+ .btn-small i,
734
+ .btn-flat i {
735
+ font-size: 1.3rem;
736
+ line-height: inherit;
737
+ }
738
+
739
+ .btn:focus, .btn-small:focus, .btn-large:focus,
740
+ .btn-floating:focus {
741
+ background-color: rgb(28.5, 124.5, 115.5);
742
+ }
743
+
744
+ .btn, .btn-small, .btn-large {
745
+ text-decoration: none;
746
+ color: #fff;
747
+ background-color: #26a69a;
748
+ text-align: center;
749
+ letter-spacing: 0.5px;
750
+ transition: background-color 0.2s ease-out;
751
+ cursor: pointer;
752
+ }
753
+ .btn:hover, .btn-small:hover, .btn-large:hover {
754
+ background-color: rgb(42.75, 186.75, 173.25);
755
+ }
756
+
757
+ .btn-floating {
758
+ display: inline-block;
759
+ color: #fff;
760
+ position: relative;
761
+ overflow: hidden;
762
+ z-index: 1;
763
+ width: 40px;
764
+ height: 40px;
765
+ line-height: 40px;
766
+ padding: 0;
767
+ background-color: #26a69a;
768
+ border-radius: 50%;
769
+ transition: background-color 0.3s;
770
+ cursor: pointer;
771
+ vertical-align: middle;
772
+ }
773
+ .btn-floating:hover {
774
+ background-color: #26a69a;
775
+ }
776
+ .btn-floating:before {
777
+ border-radius: 0;
778
+ }
779
+ .btn-floating.btn-large {
780
+ width: 56px;
781
+ height: 56px;
782
+ padding: 0;
783
+ }
784
+ .btn-floating.btn-large.halfway-fab {
785
+ bottom: -28px;
786
+ }
787
+ .btn-floating.btn-large i {
788
+ line-height: 56px;
789
+ }
790
+ .btn-floating.btn-small {
791
+ width: 32.4px;
792
+ height: 32.4px;
793
+ }
794
+ .btn-floating.btn-small.halfway-fab {
795
+ bottom: -16.2px;
796
+ }
797
+ .btn-floating.btn-small i {
798
+ line-height: 32.4px;
799
+ }
800
+ .btn-floating.halfway-fab {
801
+ position: absolute;
802
+ right: 24px;
803
+ bottom: -20px;
804
+ }
805
+ .btn-floating.halfway-fab.left {
806
+ right: auto;
807
+ left: 24px;
808
+ }
809
+ .btn-floating i {
810
+ width: inherit;
811
+ display: inline-block;
812
+ text-align: center;
813
+ color: #fff;
814
+ font-size: 1.6rem;
815
+ line-height: 40px;
816
+ }
817
+
818
+ button.btn-floating {
819
+ border: none;
820
+ }
821
+
822
+ .fixed-action-btn {
823
+ position: fixed;
824
+ right: 23px;
825
+ bottom: 23px;
826
+ padding-top: 15px;
827
+ margin-bottom: 0;
828
+ z-index: 997;
829
+ }
830
+ .fixed-action-btn.active ul {
831
+ visibility: visible;
832
+ }
833
+ .fixed-action-btn.direction-left, .fixed-action-btn.direction-right {
834
+ padding: 0 0 0 15px;
835
+ }
836
+ .fixed-action-btn.direction-left ul, .fixed-action-btn.direction-right ul {
837
+ text-align: right;
838
+ right: 64px;
839
+ top: 50%;
840
+ transform: translateY(-50%);
841
+ height: 100%;
842
+ left: auto;
843
+ /*width 100% only goes to width of button container */
844
+ width: 500px;
845
+ }
846
+ .fixed-action-btn.direction-left ul li, .fixed-action-btn.direction-right ul li {
847
+ display: inline-block;
848
+ margin: 7.5px 15px 0 0;
849
+ }
850
+ .fixed-action-btn.direction-right {
851
+ padding: 0 15px 0 0;
852
+ }
853
+ .fixed-action-btn.direction-right ul {
854
+ text-align: left;
855
+ direction: rtl;
856
+ left: 64px;
857
+ right: auto;
858
+ }
859
+ .fixed-action-btn.direction-right ul li {
860
+ margin: 7.5px 0 0 15px;
861
+ }
862
+ .fixed-action-btn.direction-bottom {
863
+ padding: 0 0 15px 0;
864
+ }
865
+ .fixed-action-btn.direction-bottom ul {
866
+ top: 64px;
867
+ bottom: auto;
868
+ display: flex;
869
+ flex-direction: column-reverse;
870
+ }
871
+ .fixed-action-btn.direction-bottom ul li {
872
+ margin: 15px 0 0 0;
873
+ }
874
+ .fixed-action-btn.toolbar {
875
+ padding: 0;
876
+ height: 56px;
877
+ }
878
+ .fixed-action-btn.toolbar.active > a i {
879
+ opacity: 0;
880
+ }
881
+ .fixed-action-btn.toolbar ul {
882
+ display: flex;
883
+ top: 0;
884
+ bottom: 0;
885
+ z-index: 1;
886
+ }
887
+ .fixed-action-btn.toolbar ul li {
888
+ flex: 1;
889
+ display: inline-block;
890
+ margin: 0;
891
+ height: 100%;
892
+ transition: none;
893
+ }
894
+ .fixed-action-btn.toolbar ul li a {
895
+ display: block;
896
+ overflow: hidden;
897
+ position: relative;
898
+ width: 100%;
899
+ height: 100%;
900
+ background-color: transparent;
901
+ box-shadow: none;
902
+ color: #fff;
903
+ line-height: 56px;
904
+ z-index: 1;
905
+ }
906
+ .fixed-action-btn.toolbar ul li a i {
907
+ line-height: inherit;
908
+ }
909
+ .fixed-action-btn ul {
910
+ left: 0;
911
+ right: 0;
912
+ text-align: center;
913
+ position: absolute;
914
+ bottom: 64px;
915
+ margin: 0;
916
+ visibility: hidden;
917
+ }
918
+ .fixed-action-btn ul li {
919
+ margin-bottom: 15px;
920
+ }
921
+ .fixed-action-btn ul a.btn-floating {
922
+ opacity: 0;
923
+ }
924
+ .fixed-action-btn .fab-backdrop {
925
+ position: absolute;
926
+ top: 0;
927
+ left: 0;
928
+ z-index: -1;
929
+ width: 40px;
930
+ height: 40px;
931
+ background-color: #26a69a;
932
+ border-radius: 50%;
933
+ transform: scale(0);
934
+ }
935
+
936
+ .btn-flat {
937
+ box-shadow: none;
938
+ background-color: transparent;
939
+ color: var(--mm-button-flat-text, #343434);
940
+ cursor: pointer;
941
+ transition: background-color 0.2s;
942
+ }
943
+ .btn-flat:focus, .btn-flat:hover {
944
+ box-shadow: none;
945
+ }
946
+ .btn-flat:focus {
947
+ background-color: var(--mm-border-color, rgba(0, 0, 0, 0.1));
948
+ }
949
+ .btn-flat.disabled, .btn-flat.btn-flat[disabled] {
950
+ background-color: transparent !important;
951
+ color: var(--mm-text-disabled, rgb(178.5, 178.5, 178.5)) !important;
952
+ cursor: default;
953
+ }
954
+
955
+ .btn-large {
956
+ height: 54px;
957
+ line-height: 54px;
958
+ font-size: 15px;
959
+ padding: 0 28px;
960
+ }
961
+ .btn-large i {
962
+ font-size: 1.6rem;
963
+ }
964
+
965
+ .btn-small {
966
+ height: 32.4px;
967
+ line-height: 32.4px;
968
+ font-size: 13px;
969
+ }
970
+ .btn-small i {
971
+ font-size: 1.2rem;
972
+ }
973
+
974
+ .btn-block {
975
+ display: block;
976
+ }
977
+
978
+ .modal {
979
+ display: none;
980
+ position: fixed;
981
+ left: 0;
982
+ right: 0;
983
+ background-color: var(--mm-modal-background, #fafafa);
984
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
985
+ padding: 0;
986
+ max-height: 70%;
987
+ width: 55%;
988
+ margin: auto;
989
+ overflow-y: auto;
990
+ border-radius: 2px;
991
+ will-change: top, opacity;
992
+ }
993
+ .modal:focus {
994
+ outline: none;
995
+ }
996
+ @media only screen and (max-width : 992px) {
997
+ .modal {
998
+ width: 80%;
999
+ }
1000
+ }
1001
+ .modal h1, .modal h2, .modal h3, .modal h4 {
1002
+ margin-top: 0;
1003
+ }
1004
+ .modal .modal-content {
1005
+ padding: 24px;
1006
+ background-color: var(--mm-modal-background, #fafafa);
1007
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
1008
+ }
1009
+ .modal .modal-close {
1010
+ cursor: pointer;
1011
+ }
1012
+ .modal .modal-footer {
1013
+ border-radius: 0 0 2px 2px;
1014
+ background-color: var(--mm-modal-background, #fafafa);
1015
+ padding: 4px 6px;
1016
+ height: 56px;
1017
+ width: 100%;
1018
+ text-align: right;
1019
+ }
1020
+ .modal .modal-footer .btn, .modal .modal-footer .btn-flat {
1021
+ margin: 6px 0;
1022
+ }
1023
+
1024
+ .modal-overlay {
1025
+ position: fixed;
1026
+ z-index: 999;
1027
+ top: -25%;
1028
+ left: 0;
1029
+ bottom: 0;
1030
+ right: 0;
1031
+ height: 125%;
1032
+ width: 100%;
1033
+ background: #000;
1034
+ display: none;
1035
+ will-change: opacity;
1036
+ }
1037
+
1038
+ .modal.modal-fixed-footer {
1039
+ padding: 0;
1040
+ height: 70%;
1041
+ }
1042
+ .modal.modal-fixed-footer .modal-content {
1043
+ position: absolute;
1044
+ height: calc(100% - 56px);
1045
+ max-height: 100%;
1046
+ width: 100%;
1047
+ overflow-y: auto;
1048
+ }
1049
+ .modal.modal-fixed-footer .modal-footer {
1050
+ border-top: 1px solid rgba(0, 0, 0, 0.1);
1051
+ position: absolute;
1052
+ bottom: 0;
1053
+ }
1054
+
1055
+ .modal.bottom-sheet {
1056
+ top: auto;
1057
+ bottom: -100%;
1058
+ margin: 0;
1059
+ width: 100%;
1060
+ max-height: 45%;
1061
+ border-radius: 0;
1062
+ will-change: bottom, opacity;
1063
+ }
1064
+
1065
+ .dropdown-content {
1066
+ background-color: var(--mm-surface-color, #fff);
1067
+ margin: 0;
1068
+ display: none;
1069
+ min-width: 100px;
1070
+ overflow-y: auto;
1071
+ opacity: 0;
1072
+ position: absolute;
1073
+ left: 0;
1074
+ top: 0;
1075
+ z-index: 9999;
1076
+ transform-origin: 0 0;
1077
+ }
1078
+ .dropdown-content:focus {
1079
+ outline: 0;
1080
+ }
1081
+ .dropdown-content li {
1082
+ clear: both;
1083
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
1084
+ cursor: pointer;
1085
+ min-height: 50px;
1086
+ line-height: 1.5rem;
1087
+ width: 100%;
1088
+ text-align: left;
1089
+ }
1090
+ .dropdown-content li:hover, .dropdown-content li.active {
1091
+ background-color: var(--mm-dropdown-hover, #eee);
1092
+ }
1093
+ .dropdown-content li:focus {
1094
+ outline: none;
1095
+ }
1096
+ .dropdown-content li.divider {
1097
+ min-height: 0;
1098
+ height: 1px;
1099
+ }
1100
+ .dropdown-content li > a, .dropdown-content li > span {
1101
+ font-size: 16px;
1102
+ color: var(--mm-text-primary, #26a69a);
1103
+ display: block;
1104
+ line-height: 22px;
1105
+ padding: 14px 16px;
1106
+ }
1107
+ .dropdown-content li > span > label {
1108
+ top: 1px;
1109
+ left: 0;
1110
+ height: 18px;
1111
+ }
1112
+ .dropdown-content li > a > i {
1113
+ height: inherit;
1114
+ line-height: inherit;
1115
+ float: left;
1116
+ margin: 0 24px 0 0;
1117
+ width: 24px;
1118
+ }
1119
+
1120
+ body.keyboard-focused .dropdown-content li:focus {
1121
+ background-color: var(--mm-dropdown-focus, rgb(217.6, 217.6, 217.6));
1122
+ }
1123
+
1124
+ .input-field.col .dropdown-content [type=checkbox] + label {
1125
+ top: 1px;
1126
+ left: 0;
1127
+ height: 18px;
1128
+ transform: none;
1129
+ }
1130
+
1131
+ .dropdown-trigger {
1132
+ cursor: pointer;
1133
+ }
1134
+
1135
+ .tabs {
1136
+ position: relative;
1137
+ overflow-x: auto;
1138
+ overflow-y: hidden;
1139
+ height: 48px;
1140
+ width: 100%;
1141
+ background-color: var(--mm-background-color, #fff);
1142
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
1143
+ margin: 0 auto;
1144
+ white-space: nowrap;
1145
+ }
1146
+ .tabs.tabs-transparent {
1147
+ background-color: transparent;
1148
+ }
1149
+ .tabs.tabs-transparent .tab a,
1150
+ .tabs.tabs-transparent .tab.disabled a,
1151
+ .tabs.tabs-transparent .tab.disabled a:hover {
1152
+ color: rgba(255, 255, 255, 0.7);
1153
+ }
1154
+ .tabs.tabs-transparent .tab a:hover,
1155
+ .tabs.tabs-transparent .tab a.active {
1156
+ color: #fff;
1157
+ }
1158
+ .tabs.tabs-transparent .indicator {
1159
+ background-color: #fff;
1160
+ }
1161
+ .tabs.tabs-fixed-width {
1162
+ display: flex;
1163
+ }
1164
+ .tabs.tabs-fixed-width .tab {
1165
+ flex-grow: 1;
1166
+ }
1167
+ .tabs .tab {
1168
+ display: inline-block;
1169
+ text-align: center;
1170
+ line-height: 48px;
1171
+ height: 48px;
1172
+ padding: 0;
1173
+ margin: 0;
1174
+ text-transform: uppercase;
1175
+ }
1176
+ .tabs .tab a {
1177
+ color: var(--mm-text-secondary, rgba(238, 110, 115, 0.7));
1178
+ display: block;
1179
+ width: 100%;
1180
+ height: 100%;
1181
+ padding: 0 24px;
1182
+ font-size: 14px;
1183
+ text-overflow: ellipsis;
1184
+ overflow: hidden;
1185
+ transition: color 0.28s ease, background-color 0.28s ease;
1186
+ }
1187
+ .tabs .tab a:focus, .tabs .tab a:focus.active {
1188
+ background-color: rgba(246.0277777778, 178.4722222222, 181.1111111111, 0.2);
1189
+ outline: none;
1190
+ }
1191
+ .tabs .tab a:hover, .tabs .tab a.active {
1192
+ background-color: transparent;
1193
+ color: var(--mm-primary-color, #ee6e73);
1194
+ }
1195
+ .tabs .tab.disabled a, .tabs .tab.disabled a:hover {
1196
+ color: var(--mm-text-disabled, rgba(238, 110, 115, 0.4));
1197
+ cursor: default;
1198
+ }
1199
+ .tabs .indicator {
1200
+ position: absolute;
1201
+ bottom: 0;
1202
+ height: 2px;
1203
+ background-color: rgb(246.0277777778, 178.4722222222, 181.1111111111);
1204
+ will-change: left, right;
1205
+ }
1206
+
1207
+ @media only screen and (max-width : 992px) {
1208
+ .tabs {
1209
+ display: flex;
1210
+ }
1211
+ .tabs .tab {
1212
+ flex-grow: 1;
1213
+ }
1214
+ .tabs .tab a {
1215
+ padding: 0 12px;
1216
+ }
1217
+ }
1218
+ .material-tooltip {
1219
+ padding: 10px 8px;
1220
+ font-size: 1rem;
1221
+ z-index: 2000;
1222
+ background-color: transparent;
1223
+ border-radius: 2px;
1224
+ color: #fff;
1225
+ min-height: 36px;
1226
+ line-height: 120%;
1227
+ opacity: 0;
1228
+ position: absolute;
1229
+ text-align: center;
1230
+ max-width: calc(100% - 4px);
1231
+ overflow: hidden;
1232
+ left: 0;
1233
+ top: 0;
1234
+ pointer-events: none;
1235
+ visibility: hidden;
1236
+ background-color: #323232;
1237
+ }
1238
+
1239
+ .backdrop {
1240
+ position: absolute;
1241
+ opacity: 0;
1242
+ height: 7px;
1243
+ width: 14px;
1244
+ border-radius: 0 0 50% 50%;
1245
+ background-color: #323232;
1246
+ z-index: -1;
1247
+ transform-origin: 50% 0%;
1248
+ visibility: hidden;
1249
+ }
1250
+
1251
+ .collapsible {
1252
+ border-top: 1px solid var(--mm-border-color, #ddd);
1253
+ border-right: 1px solid var(--mm-border-color, #ddd);
1254
+ border-left: 1px solid var(--mm-border-color, #ddd);
1255
+ margin: 0.5rem 0 1rem 0;
1256
+ }
1257
+
1258
+ .collapsible-header {
1259
+ display: flex;
1260
+ cursor: pointer;
1261
+ -webkit-tap-highlight-color: transparent;
1262
+ line-height: 1.5;
1263
+ padding: 1rem;
1264
+ border-bottom: 1px solid var(--mm-border-color, #ddd);
1265
+ }
1266
+ .collapsible-header:focus {
1267
+ outline: 0;
1268
+ }
1269
+ .collapsible-header i {
1270
+ width: 2rem;
1271
+ font-size: 1.6rem;
1272
+ display: inline-block;
1273
+ text-align: center;
1274
+ margin-right: 1rem;
1275
+ }
1276
+
1277
+ .keyboard-focused .collapsible-header:focus {
1278
+ background-color: var(--mm-border-color, rgba(0, 0, 0, 0.05));
1279
+ }
1280
+
1281
+ .collapsible-body {
1282
+ display: none;
1283
+ border-bottom: 1px solid var(--mm-border-color, #ddd);
1284
+ box-sizing: border-box;
1285
+ padding: 2rem;
1286
+ }
1287
+
1288
+ .sidenav .collapsible,
1289
+ .sidenav.sidenav-fixed .collapsible {
1290
+ border: none;
1291
+ box-shadow: none;
1292
+ }
1293
+ .sidenav .collapsible li,
1294
+ .sidenav.sidenav-fixed .collapsible li {
1295
+ padding: 0;
1296
+ }
1297
+ .sidenav .collapsible-header,
1298
+ .sidenav.sidenav-fixed .collapsible-header {
1299
+ background-color: transparent;
1300
+ border: none;
1301
+ line-height: inherit;
1302
+ height: inherit;
1303
+ padding: 0 16px;
1304
+ }
1305
+ .sidenav .collapsible-header:hover,
1306
+ .sidenav.sidenav-fixed .collapsible-header:hover {
1307
+ background-color: rgba(0, 0, 0, 0.05);
1308
+ }
1309
+ .sidenav .collapsible-header i,
1310
+ .sidenav.sidenav-fixed .collapsible-header i {
1311
+ line-height: inherit;
1312
+ }
1313
+ .sidenav .collapsible-body,
1314
+ .sidenav.sidenav-fixed .collapsible-body {
1315
+ border: 0;
1316
+ background-color: var(--mm-surface-color, #fff);
1317
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
1318
+ }
1319
+ .sidenav .collapsible-body li a,
1320
+ .sidenav.sidenav-fixed .collapsible-body li a {
1321
+ padding: 0 23.5px 0 31px;
1322
+ }
1323
+
1324
+ .collapsible.popout {
1325
+ border: none;
1326
+ box-shadow: none;
1327
+ }
1328
+ .collapsible.popout > li {
1329
+ box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
1330
+ margin: 0 24px;
1331
+ transition: margin 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
1332
+ }
1333
+ .collapsible.popout > li.active {
1334
+ box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
1335
+ margin: 16px 0;
1336
+ }
1337
+
1338
+ .materialboxed {
1339
+ display: block;
1340
+ cursor: zoom-in;
1341
+ position: relative;
1342
+ transition: opacity 0.4s;
1343
+ -webkit-backface-visibility: hidden;
1344
+ }
1345
+ .materialboxed:hover:not(.active) {
1346
+ opacity: 0.8;
1347
+ }
1348
+ .materialboxed.active {
1349
+ cursor: zoom-out;
1350
+ }
1351
+
1352
+ #materialbox-overlay {
1353
+ position: fixed;
1354
+ top: 0;
1355
+ right: 0;
1356
+ bottom: 0;
1357
+ left: 0;
1358
+ background-color: #292929;
1359
+ z-index: 1000;
1360
+ will-change: opacity;
1361
+ }
1362
+
1363
+ .materialbox-caption {
1364
+ position: fixed;
1365
+ display: none;
1366
+ color: #fff;
1367
+ line-height: 50px;
1368
+ bottom: 0;
1369
+ left: 0;
1370
+ width: 100%;
1371
+ text-align: center;
1372
+ padding: 0% 15%;
1373
+ height: 50px;
1374
+ z-index: 1000;
1375
+ -webkit-font-smoothing: antialiased;
1376
+ }
1377
+
1378
+ /*!
1379
+ * Waves v0.6.0
1380
+ * http://fian.my.id/Waves
1381
+ *
1382
+ * Copyright 2014 Alfiana E. Sibuea and other contributors
1383
+ * Released under the MIT license
1384
+ * https://github.com/fians/Waves/blob/master/LICENSE
1385
+ */
1386
+ .waves-effect {
1387
+ position: relative;
1388
+ cursor: pointer;
1389
+ display: inline-block;
1390
+ overflow: hidden;
1391
+ user-select: none;
1392
+ -webkit-tap-highlight-color: transparent;
1393
+ vertical-align: middle;
1394
+ z-index: 1;
1395
+ transition: 0.3s ease-out;
1396
+ }
1397
+ .waves-effect .waves-ripple {
1398
+ position: absolute;
1399
+ border-radius: 50%;
1400
+ width: 20px;
1401
+ height: 20px;
1402
+ margin-top: -10px;
1403
+ margin-left: -10px;
1404
+ opacity: 0;
1405
+ background: rgba(0, 0, 0, 0.2);
1406
+ transition: all 0.7s ease-out;
1407
+ transition-property: transform, opacity;
1408
+ transform: scale(0);
1409
+ pointer-events: none;
1410
+ }
1411
+ .waves-effect.waves-light .waves-ripple {
1412
+ background-color: rgba(255, 255, 255, 0.45);
1413
+ }
1414
+ .waves-effect.waves-red .waves-ripple {
1415
+ background-color: rgba(244, 67, 54, 0.7);
1416
+ }
1417
+ .waves-effect.waves-yellow .waves-ripple {
1418
+ background-color: rgba(255, 235, 59, 0.7);
1419
+ }
1420
+ .waves-effect.waves-orange .waves-ripple {
1421
+ background-color: rgba(255, 152, 0, 0.7);
1422
+ }
1423
+ .waves-effect.waves-purple .waves-ripple {
1424
+ background-color: rgba(156, 39, 176, 0.7);
1425
+ }
1426
+ .waves-effect.waves-green .waves-ripple {
1427
+ background-color: rgba(76, 175, 80, 0.7);
1428
+ }
1429
+ .waves-effect.waves-teal .waves-ripple {
1430
+ background-color: rgba(0, 150, 136, 0.7);
1431
+ }
1432
+ .waves-effect input[type=button], .waves-effect input[type=reset], .waves-effect input[type=submit] {
1433
+ border: 0;
1434
+ font-style: normal;
1435
+ font-size: inherit;
1436
+ text-transform: inherit;
1437
+ background: none;
1438
+ }
1439
+ .waves-effect img {
1440
+ position: relative;
1441
+ z-index: -1;
1442
+ }
1443
+
1444
+ .waves-notransition {
1445
+ transition: none !important;
1446
+ }
1447
+
1448
+ .waves-circle {
1449
+ transform: translateZ(0);
1450
+ -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
1451
+ }
1452
+
1453
+ .waves-input-wrapper {
1454
+ border-radius: 0.2em;
1455
+ vertical-align: bottom;
1456
+ }
1457
+ .waves-input-wrapper .waves-button-input {
1458
+ position: relative;
1459
+ top: 0;
1460
+ left: 0;
1461
+ z-index: 1;
1462
+ }
1463
+
1464
+ .waves-circle {
1465
+ text-align: center;
1466
+ width: 2.5em;
1467
+ height: 2.5em;
1468
+ line-height: 2.5em;
1469
+ border-radius: 50%;
1470
+ -webkit-mask-image: none;
1471
+ }
1472
+
1473
+ .waves-block {
1474
+ display: block;
1475
+ }
1476
+
1477
+ /* Firefox Bug: link not triggered */
1478
+ .waves-effect .waves-ripple {
1479
+ z-index: -1;
1480
+ }
1481
+
1482
+ .sidenav-container {
1483
+ position: relative;
1484
+ z-index: 997;
1485
+ }
1486
+
1487
+ .sidenav-backdrop {
1488
+ position: fixed;
1489
+ top: 0;
1490
+ left: 0;
1491
+ right: 0;
1492
+ bottom: 0;
1493
+ width: 100%;
1494
+ height: 100%;
1495
+ background: var(--mm-overlay-background, rgba(0, 0, 0, 0.5));
1496
+ opacity: 0;
1497
+ visibility: hidden;
1498
+ transition: opacity 0.3s ease, visibility 0.3s ease;
1499
+ z-index: 998;
1500
+ cursor: pointer;
1501
+ }
1502
+ .sidenav-backdrop.show {
1503
+ opacity: 1;
1504
+ visibility: visible;
1505
+ }
1506
+
1507
+ .sidenav-link {
1508
+ display: flex;
1509
+ align-items: center;
1510
+ padding: 0.75rem 1rem;
1511
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
1512
+ text-decoration: none;
1513
+ transition: background-color 0.2s ease, color 0.2s ease;
1514
+ cursor: pointer;
1515
+ min-height: 48px;
1516
+ }
1517
+ .sidenav-link:hover:not(.disabled) {
1518
+ background: var(--mm-border-color, rgba(0, 0, 0, 0.12));
1519
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
1520
+ text-decoration: none;
1521
+ }
1522
+ .sidenav-link.active {
1523
+ background: var(--mm-primary-color-light, rgba(38, 166, 154, 0.1));
1524
+ color: var(--mm-primary-color, #26a69a);
1525
+ }
1526
+ .sidenav-link.active .sidenav-icon {
1527
+ color: var(--mm-primary-color, #26a69a);
1528
+ }
1529
+ .sidenav-link.disabled {
1530
+ color: var(--mm-text-disabled, rgba(0, 0, 0, 0.38));
1531
+ cursor: not-allowed;
1532
+ }
1533
+ .sidenav-link.disabled .sidenav-icon {
1534
+ color: var(--mm-text-disabled, rgba(0, 0, 0, 0.38));
1535
+ }
1536
+
1537
+ .sidenav-icon {
1538
+ margin-right: 1rem;
1539
+ font-size: 1.5rem;
1540
+ width: 24px;
1541
+ height: 24px;
1542
+ display: flex;
1543
+ align-items: center;
1544
+ justify-content: center;
1545
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
1546
+ flex-shrink: 0;
1547
+ }
1548
+
1549
+ .sidenav-text {
1550
+ font-size: 0.875rem;
1551
+ font-weight: 500;
1552
+ line-height: 1.5;
1553
+ overflow: hidden;
1554
+ text-overflow: ellipsis;
1555
+ white-space: nowrap;
1556
+ }
1557
+
1558
+ .sidenav-divider {
1559
+ height: 1px;
1560
+ background: var(--mm-divider-color, rgba(0, 0, 0, 0.12));
1561
+ margin: 0.5rem 0;
1562
+ }
1563
+
1564
+ .sidenav-subheader {
1565
+ padding: 1rem 1rem 0.5rem 1rem;
1566
+ font-size: 0.75rem;
1567
+ font-weight: 600;
1568
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
1569
+ text-transform: uppercase;
1570
+ letter-spacing: 0.5px;
1571
+ line-height: 1.5;
1572
+ }
1573
+
1574
+ .sidenav-content {
1575
+ padding: 0;
1576
+ height: 100%;
1577
+ display: flex;
1578
+ flex-direction: column;
1579
+ }
1580
+
1581
+ .sidenav {
1582
+ position: fixed;
1583
+ width: 300px;
1584
+ left: 0;
1585
+ top: 0;
1586
+ margin: 0;
1587
+ transform: translateX(-100%);
1588
+ height: 100%;
1589
+ height: calc(100% + 60px);
1590
+ height: -moz-calc(100%);
1591
+ padding-bottom: 60px;
1592
+ background-color: var(--mm-surface-color, #fff);
1593
+ z-index: 999;
1594
+ overflow-y: auto;
1595
+ will-change: transform;
1596
+ backface-visibility: hidden;
1597
+ transform: translateX(-105%);
1598
+ transition: transform 0.3s ease, left 0.3s ease, right 0.3s ease;
1599
+ }
1600
+ .sidenav.sidenav-left {
1601
+ left: 0;
1602
+ }
1603
+ .sidenav.sidenav-right {
1604
+ right: 0;
1605
+ left: auto;
1606
+ transform: translateX(100%);
1607
+ }
1608
+ .sidenav.sidenav-overlay {
1609
+ position: fixed;
1610
+ }
1611
+ .sidenav.sidenav-push {
1612
+ position: relative;
1613
+ box-shadow: var(--mm-border-color, rgba(0, 0, 0, 0.12)) 1px 0 0 0;
1614
+ }
1615
+ .sidenav.closed.sidenav-left {
1616
+ transform: translateX(-100%);
1617
+ }
1618
+ .sidenav.closed.sidenav-right {
1619
+ transform: translateX(100%);
1620
+ }
1621
+ .sidenav.open {
1622
+ transform: translateX(0);
1623
+ }
1624
+ .sidenav.right-aligned {
1625
+ right: 0;
1626
+ transform: translateX(105%);
1627
+ left: auto;
1628
+ transform: translateX(100%);
1629
+ }
1630
+ .sidenav .collapsible {
1631
+ margin: 0;
1632
+ }
1633
+ .sidenav li {
1634
+ float: none;
1635
+ line-height: 48px;
1636
+ }
1637
+ .sidenav li.active {
1638
+ background-color: rgba(0, 0, 0, 0.05);
1639
+ }
1640
+ .sidenav li > a:not(.btn):not(.btn-large):not(.btn-flat):not(.btn-floating) {
1641
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
1642
+ display: block;
1643
+ font-size: 14px;
1644
+ font-weight: 500;
1645
+ height: 48px;
1646
+ line-height: 48px;
1647
+ padding: 0 32px;
1648
+ }
1649
+ .sidenav li > a:not(.btn):not(.btn-large):not(.btn-flat):not(.btn-floating):hover {
1650
+ background-color: var(--mm-border-color, rgba(0, 0, 0, 0.05));
1651
+ }
1652
+ .sidenav li > a:not(.btn):not(.btn-large):not(.btn-flat):not(.btn-floating) > i, .sidenav li > a:not(.btn):not(.btn-large):not(.btn-flat):not(.btn-floating) > [class^=mdi-], .sidenav li > a:not(.btn):not(.btn-large):not(.btn-flat):not(.btn-floating) li > a > [class*=mdi-], .sidenav li > a:not(.btn):not(.btn-large):not(.btn-flat):not(.btn-floating) > i.material-icons {
1653
+ float: left;
1654
+ height: 48px;
1655
+ line-height: 48px;
1656
+ margin: 0 32px 0 0;
1657
+ width: 24px;
1658
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.54));
1659
+ }
1660
+ .sidenav li > .btn, .sidenav li > .btn-large, .sidenav li > .btn-flat, .sidenav li > .btn-floating {
1661
+ margin: 10px 32px;
1662
+ }
1663
+ .sidenav .divider {
1664
+ margin: 8px 0 0 0;
1665
+ }
1666
+ .sidenav .subheader {
1667
+ cursor: initial;
1668
+ pointer-events: none;
1669
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.54));
1670
+ font-size: 14px;
1671
+ font-weight: 500;
1672
+ line-height: 48px;
1673
+ padding: 0 32px;
1674
+ height: 48px;
1675
+ display: flex;
1676
+ align-items: center;
1677
+ }
1678
+ .sidenav .subheader:hover {
1679
+ background-color: transparent;
1680
+ }
1681
+ .sidenav .user-view {
1682
+ position: relative;
1683
+ padding: 32px 32px 0;
1684
+ margin-bottom: 8px;
1685
+ }
1686
+ .sidenav .user-view > a {
1687
+ height: auto;
1688
+ padding: 0;
1689
+ }
1690
+ .sidenav .user-view > a:hover {
1691
+ background-color: transparent;
1692
+ }
1693
+ .sidenav .user-view .background {
1694
+ overflow: hidden;
1695
+ position: absolute;
1696
+ top: 0;
1697
+ right: 0;
1698
+ bottom: 0;
1699
+ left: 0;
1700
+ z-index: -1;
1701
+ }
1702
+ .sidenav .user-view .circle, .sidenav .user-view .name, .sidenav .user-view .email {
1703
+ display: block;
1704
+ }
1705
+ .sidenav .user-view .circle {
1706
+ height: 64px;
1707
+ width: 64px;
1708
+ }
1709
+ .sidenav .user-view .name,
1710
+ .sidenav .user-view .email {
1711
+ font-size: 14px;
1712
+ line-height: 24px;
1713
+ }
1714
+ .sidenav .user-view .name {
1715
+ margin-top: 16px;
1716
+ font-weight: 500;
1717
+ }
1718
+ .sidenav .user-view .email {
1719
+ padding-bottom: 16px;
1720
+ font-weight: 400;
1721
+ }
1722
+
1723
+ .drag-target {
1724
+ height: 100%;
1725
+ width: 10px;
1726
+ position: fixed;
1727
+ top: 0;
1728
+ left: 0;
1729
+ z-index: 998;
1730
+ }
1731
+ .drag-target.right-aligned {
1732
+ right: 0;
1733
+ }
1734
+
1735
+ .sidenav.sidenav-fixed {
1736
+ left: 0;
1737
+ transform: translateX(0);
1738
+ position: fixed;
1739
+ }
1740
+ .sidenav.sidenav-fixed.right-aligned {
1741
+ right: 0;
1742
+ left: auto;
1743
+ }
1744
+
1745
+ @media only screen and (max-width : 992px) {
1746
+ .sidenav.sidenav-fixed {
1747
+ transform: translateX(-105%);
1748
+ }
1749
+ .sidenav.sidenav-fixed.right-aligned {
1750
+ transform: translateX(105%);
1751
+ }
1752
+ .sidenav > a {
1753
+ padding: 0 16px;
1754
+ }
1755
+ .sidenav .user-view {
1756
+ padding: 16px 16px 0;
1757
+ }
1758
+ }
1759
+ .sidenav .collapsible-body > ul:not(.collapsible) > li.active,
1760
+ .sidenav.sidenav-fixed .collapsible-body > ul:not(.collapsible) > li.active {
1761
+ background-color: #ee6e73;
1762
+ }
1763
+ .sidenav .collapsible-body > ul:not(.collapsible) > li.active a,
1764
+ .sidenav.sidenav-fixed .collapsible-body > ul:not(.collapsible) > li.active a {
1765
+ color: #fff;
1766
+ }
1767
+
1768
+ .sidenav .collapsible-body {
1769
+ padding: 0;
1770
+ }
1771
+
1772
+ .sidenav-overlay {
1773
+ position: fixed;
1774
+ top: 0;
1775
+ left: 0;
1776
+ right: 0;
1777
+ bottom: 0;
1778
+ width: 100%;
1779
+ height: 100%;
1780
+ opacity: 0;
1781
+ background-color: var(--mm-overlay-background, rgba(0, 0, 0, 0.5));
1782
+ z-index: 997;
1783
+ display: none;
1784
+ transition: opacity 0.3s ease;
1785
+ }
1786
+
1787
+ .sidenav-overlay {
1788
+ pointer-events: auto;
1789
+ }
1790
+
1791
+ .breadcrumb {
1792
+ padding: 1rem 0;
1793
+ margin-bottom: 1rem;
1794
+ background: transparent;
1795
+ display: flex;
1796
+ align-items: center;
1797
+ min-height: 2rem;
1798
+ }
1799
+ .breadcrumb .breadcrumb-list {
1800
+ display: flex;
1801
+ align-items: center;
1802
+ flex-wrap: wrap;
1803
+ list-style: none;
1804
+ padding: 0;
1805
+ margin: 0;
1806
+ gap: 0.5rem;
1807
+ width: 100%;
1808
+ }
1809
+
1810
+ .breadcrumb-item {
1811
+ display: flex;
1812
+ align-items: center;
1813
+ font-size: 0.875rem;
1814
+ line-height: 1.5;
1815
+ }
1816
+ .breadcrumb-item.active .breadcrumb-text {
1817
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
1818
+ font-weight: 500;
1819
+ }
1820
+ .breadcrumb-item.disabled .breadcrumb-text {
1821
+ color: var(--mm-text-disabled, rgba(0, 0, 0, 0.38));
1822
+ cursor: not-allowed;
1823
+ }
1824
+ .breadcrumb-item.breadcrumb-ellipsis .breadcrumb-text {
1825
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
1826
+ font-weight: 400;
1827
+ user-select: none;
1828
+ }
1829
+
1830
+ .breadcrumb-link {
1831
+ display: flex;
1832
+ align-items: center;
1833
+ color: var(--mm-primary-color, #26a69a);
1834
+ text-decoration: none;
1835
+ transition: color 0.2s ease;
1836
+ padding: 0.25rem 0.5rem;
1837
+ border-radius: 4px;
1838
+ }
1839
+ .breadcrumb-link:hover {
1840
+ color: var(--mm-primary-color-dark, #00695c);
1841
+ text-decoration: underline;
1842
+ background: var(--mm-primary-color-light, rgba(38, 166, 154, 0.1));
1843
+ }
1844
+ .breadcrumb-link:focus {
1845
+ outline: 2px solid var(--mm-primary-color, #26a69a);
1846
+ outline-offset: 2px;
1847
+ border-radius: 2px;
1848
+ }
1849
+
1850
+ .breadcrumb-text {
1851
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
1852
+ font-weight: 400;
1853
+ line-height: inherit;
1854
+ overflow: hidden;
1855
+ text-overflow: ellipsis;
1856
+ white-space: nowrap;
1857
+ max-width: 200px;
1858
+ }
1859
+
1860
+ .breadcrumb-icon {
1861
+ font-size: 1.125rem;
1862
+ width: 18px;
1863
+ height: 18px;
1864
+ margin-right: 0.5rem;
1865
+ flex-shrink: 0;
1866
+ color: inherit;
1867
+ display: flex;
1868
+ align-items: center;
1869
+ justify-content: center;
1870
+ }
1871
+
1872
+ .breadcrumb-separator {
1873
+ display: flex;
1874
+ align-items: center;
1875
+ justify-content: center;
1876
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
1877
+ user-select: none;
1878
+ height: 18px;
1879
+ }
1880
+ .breadcrumb-separator .material-icons {
1881
+ font-size: 1.125rem;
1882
+ width: 18px;
1883
+ height: 18px;
1884
+ line-height: 18px;
1885
+ }
1886
+
1887
+ .breadcrumb.compact {
1888
+ padding: 0.25rem 0;
1889
+ margin-bottom: 0.5rem;
1890
+ }
1891
+ .breadcrumb.compact .breadcrumb-item {
1892
+ font-size: 0.75rem;
1893
+ }
1894
+ .breadcrumb.compact .breadcrumb-icon {
1895
+ font-size: 0.875rem;
1896
+ width: 14px;
1897
+ height: 14px;
1898
+ }
1899
+ .breadcrumb.compact .breadcrumb-separator .material-icons {
1900
+ font-size: 0.875rem;
1901
+ width: 14px;
1902
+ height: 14px;
1903
+ }
1904
+
1905
+ .breadcrumb.large {
1906
+ padding: 0.75rem 0;
1907
+ margin-bottom: 1.5rem;
1908
+ }
1909
+ .breadcrumb.large .breadcrumb-item {
1910
+ font-size: 1rem;
1911
+ }
1912
+ .breadcrumb.large .breadcrumb-icon {
1913
+ font-size: 1.125rem;
1914
+ width: 18px;
1915
+ height: 18px;
1916
+ }
1917
+ .breadcrumb.large .breadcrumb-separator .material-icons {
1918
+ font-size: 1.125rem;
1919
+ width: 18px;
1920
+ height: 18px;
1921
+ }
1922
+
1923
+ @media (max-width: 600px) {
1924
+ .breadcrumb .breadcrumb-list {
1925
+ gap: 0.125rem;
1926
+ }
1927
+ .breadcrumb .breadcrumb-item {
1928
+ font-size: 0.75rem;
1929
+ }
1930
+ .breadcrumb .breadcrumb-text {
1931
+ max-width: 120px;
1932
+ }
1933
+ .breadcrumb .breadcrumb-icon {
1934
+ font-size: 0.875rem;
1935
+ width: 14px;
1936
+ height: 14px;
1937
+ margin-right: 0.125rem;
1938
+ }
1939
+ .breadcrumb .breadcrumb-separator .material-icons {
1940
+ font-size: 0.875rem;
1941
+ width: 14px;
1942
+ height: 14px;
1943
+ }
1944
+ }
1945
+ [data-theme=dark] .breadcrumb-link {
1946
+ color: var(--mm-primary-color, #80cbc4);
1947
+ }
1948
+ [data-theme=dark] .breadcrumb-link:hover {
1949
+ color: var(--mm-primary-color-light, #b2dfdb);
1950
+ }
1951
+
1952
+ .breadcrumb.slash-separator .breadcrumb-separator {
1953
+ font-family: monospace;
1954
+ font-size: 0.875rem;
1955
+ }
1956
+ .breadcrumb.slash-separator .breadcrumb-separator .material-icons {
1957
+ display: none;
1958
+ }
1959
+ .breadcrumb.slash-separator .breadcrumb-separator::before {
1960
+ content: "/";
1961
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
1962
+ }
1963
+
1964
+ .breadcrumb.dot-separator .breadcrumb-separator .material-icons {
1965
+ display: none;
1966
+ }
1967
+ .breadcrumb.dot-separator .breadcrumb-separator::before {
1968
+ content: "•";
1969
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
1970
+ font-size: 1rem;
1971
+ }
1972
+
1973
+ .breadcrumb:not([aria-label]) {
1974
+ aria-label: "Breadcrumb navigation";
1975
+ }
1976
+
1977
+ .breadcrumb-link[aria-current=page] {
1978
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
1979
+ text-decoration: none;
1980
+ font-weight: 500;
1981
+ }
1982
+ .breadcrumb-link[aria-current=page]:hover {
1983
+ text-decoration: none;
1984
+ }
1985
+
1986
+ .wizard {
1987
+ display: flex;
1988
+ flex-direction: column;
1989
+ width: 100%;
1990
+ }
1991
+ .wizard.horizontal .wizard-steps {
1992
+ display: flex;
1993
+ align-items: flex-start;
1994
+ justify-content: space-between;
1995
+ position: relative;
1996
+ }
1997
+ .wizard.horizontal .wizard-step {
1998
+ display: flex;
1999
+ flex-direction: column;
2000
+ align-items: center;
2001
+ text-align: center;
2002
+ flex: 1;
2003
+ position: relative;
2004
+ }
2005
+ .wizard.horizontal .wizard-step:not(:last-child) {
2006
+ margin-right: 2rem;
2007
+ }
2008
+ .wizard.horizontal .wizard-step-content {
2009
+ margin-top: 0.75rem;
2010
+ max-width: 200px;
2011
+ }
2012
+ .wizard.horizontal .wizard-step-connector {
2013
+ position: absolute;
2014
+ top: 20px;
2015
+ left: calc(50% + 20px);
2016
+ width: calc(100% - 40px);
2017
+ height: 2px;
2018
+ background: var(--mm-border-color, rgba(0, 0, 0, 0.12));
2019
+ z-index: 1;
2020
+ }
2021
+ .wizard.vertical .wizard-steps {
2022
+ display: flex;
2023
+ flex-direction: column;
2024
+ }
2025
+ .wizard.vertical .wizard-step {
2026
+ display: flex;
2027
+ align-items: flex-start;
2028
+ text-align: left;
2029
+ position: relative;
2030
+ padding-bottom: 2rem;
2031
+ }
2032
+ .wizard.vertical .wizard-step:last-child {
2033
+ padding-bottom: 0;
2034
+ }
2035
+ .wizard.vertical .wizard-step-content {
2036
+ margin-left: 1rem;
2037
+ flex: 1;
2038
+ }
2039
+ .wizard.vertical .wizard-step-connector {
2040
+ position: absolute;
2041
+ top: 40px;
2042
+ left: 19px;
2043
+ bottom: -2rem;
2044
+ width: 2px;
2045
+ background: var(--mm-border-color, rgba(0, 0, 0, 0.12));
2046
+ z-index: 1;
2047
+ }
2048
+
2049
+ .wizard-header {
2050
+ margin-bottom: 2rem;
2051
+ }
2052
+
2053
+ .wizard-step {
2054
+ cursor: pointer;
2055
+ transition: opacity 0.2s ease;
2056
+ }
2057
+ .wizard-step.disabled {
2058
+ opacity: 0.6;
2059
+ cursor: not-allowed;
2060
+ }
2061
+ .wizard-step:hover:not(.disabled) .wizard-step-indicator {
2062
+ box-shadow: 0 0 0 8px var(--mm-primary-color-light, rgba(38, 166, 154, 0.1));
2063
+ }
2064
+
2065
+ .wizard-step-indicator {
2066
+ width: 40px;
2067
+ height: 40px;
2068
+ border-radius: 50%;
2069
+ display: flex;
2070
+ align-items: center;
2071
+ justify-content: center;
2072
+ background: var(--mm-border-color, rgba(0, 0, 0, 0.12));
2073
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
2074
+ font-weight: 500;
2075
+ font-size: 0.875rem;
2076
+ transition: all 0.2s ease;
2077
+ position: relative;
2078
+ z-index: 2;
2079
+ }
2080
+ .wizard-step-indicator .material-icons {
2081
+ font-size: 1.25rem;
2082
+ }
2083
+ .wizard-step-indicator .wizard-step-number {
2084
+ font-weight: 600;
2085
+ }
2086
+
2087
+ .wizard-step.active .wizard-step-indicator {
2088
+ background: var(--mm-primary-color, #26a69a);
2089
+ color: var(--mm-button-text, #ffffff);
2090
+ }
2091
+ .wizard-step.active .wizard-step-title {
2092
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
2093
+ font-weight: 600;
2094
+ }
2095
+
2096
+ .wizard-step.completed .wizard-step-indicator {
2097
+ background: var(--mm-primary-color, #26a69a);
2098
+ color: var(--mm-button-text, #ffffff);
2099
+ }
2100
+ .wizard-step.completed .wizard-step-connector {
2101
+ background: var(--mm-primary-color, #26a69a);
2102
+ }
2103
+
2104
+ .wizard-step.error .wizard-step-indicator {
2105
+ background: #f44336;
2106
+ color: #ffffff;
2107
+ }
2108
+ .wizard-step.error .wizard-step-title {
2109
+ color: #f44336;
2110
+ }
2111
+
2112
+ .wizard-step-title {
2113
+ font-size: 0.875rem;
2114
+ font-weight: 500;
2115
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
2116
+ margin-bottom: 0.25rem;
2117
+ line-height: 1.3;
2118
+ }
2119
+
2120
+ .wizard-step-subtitle {
2121
+ font-size: 0.75rem;
2122
+ color: var(--mm-text-hint, rgba(0, 0, 0, 0.38));
2123
+ line-height: 1.3;
2124
+ margin-bottom: 0.25rem;
2125
+ }
2126
+
2127
+ .wizard-step-optional {
2128
+ font-size: 0.625rem;
2129
+ color: var(--mm-text-hint, rgba(0, 0, 0, 0.38));
2130
+ font-style: italic;
2131
+ text-transform: uppercase;
2132
+ letter-spacing: 0.5px;
2133
+ }
2134
+
2135
+ .wizard-body {
2136
+ flex: 1;
2137
+ margin-bottom: 2rem;
2138
+ }
2139
+ .wizard-body .input-field {
2140
+ margin-bottom: 1.5rem;
2141
+ }
2142
+ .wizard-body .input-field input, .wizard-body .input-field textarea {
2143
+ width: 100%;
2144
+ box-sizing: border-box;
2145
+ }
2146
+ .wizard-body .input-field label {
2147
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
2148
+ transition: all 0.3s ease;
2149
+ }
2150
+ .wizard-body .input-field label.active {
2151
+ color: var(--mm-primary-color, #26a69a);
2152
+ transform: translateY(-14px) scale(0.8);
2153
+ }
2154
+ .wizard-body .row {
2155
+ margin-bottom: 0;
2156
+ }
2157
+ .wizard-body .row .col {
2158
+ padding: 0 0.75rem;
2159
+ }
2160
+ .wizard-body .row .col:first-child {
2161
+ padding-left: 0;
2162
+ }
2163
+ .wizard-body .row .col:last-child {
2164
+ padding-right: 0;
2165
+ }
2166
+
2167
+ .wizard-step-panel {
2168
+ animation: wizard-slide-in 0.3s ease;
2169
+ }
2170
+
2171
+ @keyframes wizard-slide-in {
2172
+ from {
2173
+ opacity: 0;
2174
+ transform: translateX(20px);
2175
+ }
2176
+ to {
2177
+ opacity: 1;
2178
+ transform: translateX(0);
2179
+ }
2180
+ }
2181
+ .wizard-footer {
2182
+ border-top: 1px solid var(--mm-border-color, rgba(0, 0, 0, 0.12));
2183
+ padding-top: 1.5rem;
2184
+ }
2185
+
2186
+ .wizard-navigation {
2187
+ display: flex;
2188
+ justify-content: space-between;
2189
+ align-items: center;
2190
+ gap: 1rem;
2191
+ }
2192
+ .wizard-navigation .wizard-btn-previous,
2193
+ .wizard-navigation .wizard-btn-skip {
2194
+ margin-right: auto;
2195
+ }
2196
+ .wizard-navigation .wizard-btn-next,
2197
+ .wizard-navigation .wizard-btn-complete {
2198
+ margin-left: auto;
2199
+ }
2200
+ .wizard-navigation .wizard-btn-next .material-icons,
2201
+ .wizard-navigation .wizard-btn-complete .material-icons {
2202
+ margin-right: 0.5rem;
2203
+ animation: wizard-loading 1s infinite linear;
2204
+ }
2205
+
2206
+ @keyframes wizard-loading {
2207
+ from {
2208
+ transform: rotate(0deg);
2209
+ }
2210
+ to {
2211
+ transform: rotate(360deg);
2212
+ }
2213
+ }
2214
+ .wizard.compact .wizard-step-indicator {
2215
+ width: 32px;
2216
+ height: 32px;
2217
+ font-size: 0.75rem;
2218
+ }
2219
+ .wizard.compact .wizard-step-indicator .material-icons {
2220
+ font-size: 1rem;
2221
+ }
2222
+ .wizard.compact .wizard-step-title {
2223
+ font-size: 0.75rem;
2224
+ }
2225
+ .wizard.compact .wizard-step-subtitle {
2226
+ font-size: 0.625rem;
2227
+ }
2228
+ .wizard.compact .wizard-header {
2229
+ margin-bottom: 1.5rem;
2230
+ }
2231
+ .wizard.compact.horizontal .wizard-step-connector {
2232
+ top: 16px;
2233
+ }
2234
+ .wizard.compact.vertical .wizard-step-connector {
2235
+ top: 32px;
2236
+ left: 15px;
2237
+ }
2238
+
2239
+ .wizard.large .wizard-step-indicator {
2240
+ width: 48px;
2241
+ height: 48px;
2242
+ font-size: 1rem;
2243
+ }
2244
+ .wizard.large .wizard-step-indicator .material-icons {
2245
+ font-size: 1.5rem;
2246
+ }
2247
+ .wizard.large .wizard-step-title {
2248
+ font-size: 1rem;
2249
+ }
2250
+ .wizard.large .wizard-step-subtitle {
2251
+ font-size: 0.875rem;
2252
+ }
2253
+ .wizard.large .wizard-header {
2254
+ margin-bottom: 2.5rem;
2255
+ }
2256
+ .wizard.large.horizontal .wizard-step-connector {
2257
+ top: 24px;
2258
+ }
2259
+ .wizard.large.vertical .wizard-step-connector {
2260
+ top: 48px;
2261
+ left: 23px;
2262
+ }
2263
+
2264
+ @media (max-width: 768px) {
2265
+ .wizard.horizontal .wizard-steps {
2266
+ flex-direction: column;
2267
+ align-items: stretch;
2268
+ }
2269
+ .wizard.horizontal .wizard-step {
2270
+ flex-direction: row;
2271
+ align-items: center;
2272
+ text-align: left;
2273
+ margin-right: 0;
2274
+ margin-bottom: 1rem;
2275
+ }
2276
+ .wizard.horizontal .wizard-step:last-child {
2277
+ margin-bottom: 0;
2278
+ }
2279
+ .wizard.horizontal .wizard-step-content {
2280
+ margin-top: 0;
2281
+ margin-left: 1rem;
2282
+ max-width: none;
2283
+ }
2284
+ .wizard.horizontal .wizard-step-connector {
2285
+ display: none;
2286
+ }
2287
+ }
2288
+ [data-theme=dark] .wizard-step.error .wizard-step-title {
2289
+ color: #f48fb1;
2290
+ }
2291
+ [data-theme=dark] .wizard-step.error .wizard-step-indicator {
2292
+ background: #f48fb1;
2293
+ color: #000000;
2294
+ }
2295
+ [data-theme=dark] .wizard-footer {
2296
+ border-color: var(--mm-border-color, rgba(255, 255, 255, 0.12));
2297
+ }
2298
+
2299
+ .wizard-step:focus {
2300
+ outline: 2px solid var(--mm-primary-color, #26a69a);
2301
+ outline-offset: 2px;
2302
+ border-radius: 4px;
2303
+ }
2304
+ .wizard-step[aria-disabled=true] {
2305
+ pointer-events: none;
2306
+ }
2307
+
2308
+ .wizard-step-indicator[aria-current=step] {
2309
+ box-shadow: 0 0 0 4px var(--mm-primary-color-light, rgba(38, 166, 154, 0.2));
2310
+ }