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
package/dist/index.css CHANGED
@@ -1,4 +1,144 @@
1
- @charset "UTF-8";
1
+ :root {
2
+ --mm-primary-color: #26a69a;
3
+ --mm-primary-color-light: #80cbc4;
4
+ --mm-primary-color-dark: #00695c;
5
+ --mm-secondary-color: #ff6f00;
6
+ --mm-secondary-color-light: #ffa726;
7
+ --mm-secondary-color-dark: #ef6c00;
8
+ --mm-background-color: #ffffff;
9
+ --mm-surface-color: #ffffff;
10
+ --mm-card-background: #ffffff;
11
+ --mm-text-primary: rgba(0, 0, 0, 0.87);
12
+ --mm-text-secondary: rgba(0, 0, 0, 0.6);
13
+ --mm-text-disabled: rgba(0, 0, 0, 0.38);
14
+ --mm-text-hint: rgba(0, 0, 0, 0.38);
15
+ --mm-border-color: rgba(0, 0, 0, 0.12);
16
+ --mm-divider-color: rgba(0, 0, 0, 0.12);
17
+ --mm-input-background: #ffffff;
18
+ --mm-input-border: rgba(0, 0, 0, 0.42);
19
+ --mm-input-border-focus: var(--mm-primary-color);
20
+ --mm-input-text: var(--mm-text-primary);
21
+ --mm-button-background: var(--mm-primary-color);
22
+ --mm-button-text: #ffffff;
23
+ --mm-button-flat-text: var(--mm-primary-color);
24
+ --mm-nav-background: var(--mm-primary-color);
25
+ --mm-nav-text: #ffffff;
26
+ --mm-nav-active-text: #ffffff;
27
+ --mm-modal-background: #ffffff;
28
+ --mm-overlay-background: rgba(0, 0, 0, 0.5);
29
+ --mm-shadow-color: rgba(0, 0, 0, 0.16);
30
+ --mm-chip-bg: #e4e4e4;
31
+ --mm-chip-text: var(--mm-text-secondary);
32
+ --mm-dropdown-hover: #eee;
33
+ --mm-dropdown-focus: #ddd;
34
+ --mm-dropdown-selected: #e3f2fd;
35
+ --mm-shadow-umbra: rgba(0, 0, 0, 0.2);
36
+ --mm-shadow-penumbra: rgba(0, 0, 0, 0.14);
37
+ --mm-shadow-ambient: rgba(0, 0, 0, 0.12);
38
+ --mm-switch-checked-track: rgba(38, 166, 154, 0.3);
39
+ --mm-switch-checked-thumb: #26a69a;
40
+ --mm-switch-unchecked-track: rgba(0, 0, 0, 0.6);
41
+ --mm-switch-unchecked-thumb: #f5f5f5;
42
+ --mm-switch-disabled-track: rgba(0, 0, 0, 0.12);
43
+ --mm-switch-disabled-thumb: #bdbdbd;
44
+ }
45
+
46
+ body {
47
+ background-color: var(--mm-background-color);
48
+ color: var(--mm-text-primary);
49
+ transition: background-color 0.3s ease, color 0.3s ease;
50
+ }
51
+
52
+ .container, .main {
53
+ color: var(--mm-text-primary);
54
+ }
55
+
56
+ [data-theme=dark] {
57
+ --mm-primary-color: #80cbc4;
58
+ --mm-primary-color-light: #b2dfdb;
59
+ --mm-primary-color-dark: #4db6ac;
60
+ --mm-secondary-color: #ffa726;
61
+ --mm-secondary-color-light: #ffcc02;
62
+ --mm-secondary-color-dark: #ff8f00;
63
+ --mm-background-color: #121212;
64
+ --mm-surface-color: #1e1e1e;
65
+ --mm-card-background: #2d2d2d;
66
+ --mm-text-primary: rgba(255, 255, 255, 0.87);
67
+ --mm-text-secondary: rgba(255, 255, 255, 0.6);
68
+ --mm-text-disabled: rgba(255, 255, 255, 0.38);
69
+ --mm-text-hint: rgba(255, 255, 255, 0.38);
70
+ --mm-border-color: rgba(255, 255, 255, 0.12);
71
+ --mm-divider-color: rgba(255, 255, 255, 0.12);
72
+ --mm-input-background: #2d2d2d;
73
+ --mm-input-border: rgba(255, 255, 255, 0.42);
74
+ --mm-input-border-focus: var(--mm-primary-color);
75
+ --mm-input-text: var(--mm-text-primary);
76
+ --mm-button-background: var(--mm-primary-color);
77
+ --mm-button-text: #000000;
78
+ --mm-button-flat-text: var(--mm-primary-color);
79
+ --mm-nav-background: #1e1e1e;
80
+ --mm-nav-text: #ffffff;
81
+ --mm-nav-active-text: #000000;
82
+ --mm-modal-background: #2d2d2d;
83
+ --mm-overlay-background: rgba(0, 0, 0, 0.8);
84
+ --mm-shadow-color: rgba(0, 0, 0, 0.5);
85
+ --mm-shadow-umbra: rgba(0, 0, 0, 0.5);
86
+ --mm-shadow-penumbra: rgba(0, 0, 0, 0.36);
87
+ --mm-shadow-ambient: rgba(0, 0, 0, 0.3);
88
+ --mm-chip-bg: #424242;
89
+ --mm-chip-text: var(--mm-text-secondary);
90
+ --mm-dropdown-hover: #444;
91
+ --mm-dropdown-focus: #555;
92
+ --mm-dropdown-selected: #1e3a8a;
93
+ --mm-switch-checked-track: rgba(128, 203, 196, 0.3);
94
+ --mm-switch-checked-thumb: #80cbc4;
95
+ --mm-switch-unchecked-track: rgba(255, 255, 255, 0.6);
96
+ --mm-switch-unchecked-thumb: #616161;
97
+ --mm-switch-disabled-track: rgba(255, 255, 255, 0.12);
98
+ --mm-switch-disabled-thumb: #424242;
99
+ }
100
+
101
+ @media (prefers-color-scheme: dark) {
102
+ :root:not([data-theme]) {
103
+ --mm-primary-color: #80cbc4;
104
+ --mm-primary-color-light: #b2dfdb;
105
+ --mm-primary-color-dark: #4db6ac;
106
+ --mm-secondary-color: #ffa726;
107
+ --mm-secondary-color-light: #ffcc02;
108
+ --mm-secondary-color-dark: #ff8f00;
109
+ --mm-background-color: #121212;
110
+ --mm-surface-color: #1e1e1e;
111
+ --mm-card-background: #2d2d2d;
112
+ --mm-text-primary: rgba(255, 255, 255, 0.87);
113
+ --mm-text-secondary: rgba(255, 255, 255, 0.6);
114
+ --mm-text-disabled: rgba(255, 255, 255, 0.38);
115
+ --mm-text-hint: rgba(255, 255, 255, 0.38);
116
+ --mm-border-color: rgba(255, 255, 255, 0.12);
117
+ --mm-divider-color: rgba(255, 255, 255, 0.12);
118
+ --mm-input-background: #2d2d2d;
119
+ --mm-input-border: rgba(255, 255, 255, 0.42);
120
+ --mm-input-border-focus: var(--mm-primary-color);
121
+ --mm-input-text: var(--mm-text-primary);
122
+ --mm-button-background: var(--mm-primary-color);
123
+ --mm-button-text: #000000;
124
+ --mm-button-flat-text: var(--mm-primary-color);
125
+ --mm-nav-background: #1e1e1e;
126
+ --mm-nav-text: #ffffff;
127
+ --mm-nav-active-text: #000000;
128
+ --mm-modal-background: #2d2d2d;
129
+ --mm-overlay-background: rgba(0, 0, 0, 0.8);
130
+ --mm-shadow-color: rgba(0, 0, 0, 0.5);
131
+ --mm-shadow-umbra: rgba(0, 0, 0, 0.5);
132
+ --mm-shadow-penumbra: rgba(0, 0, 0, 0.36);
133
+ --mm-shadow-ambient: rgba(0, 0, 0, 0.3);
134
+ --mm-switch-checked-track: rgba(128, 203, 196, 0.3);
135
+ --mm-switch-checked-thumb: #80cbc4;
136
+ --mm-switch-unchecked-track: rgba(255, 255, 255, 0.6);
137
+ --mm-switch-unchecked-thumb: #616161;
138
+ --mm-switch-disabled-track: rgba(255, 255, 255, 0.12);
139
+ --mm-switch-disabled-thumb: #424242;
140
+ }
141
+ }
2
142
  .materialize-red {
3
143
  background-color: #e51c23 !important;
4
144
  }
@@ -2976,17 +3116,18 @@ td, th {
2976
3116
  }
2977
3117
  .collection {
2978
3118
  margin: 0.5rem 0 1rem 0;
2979
- border: 1px solid #e0e0e0;
3119
+ border: 1px solid var(--mm-border-color, #e0e0e0);
2980
3120
  border-radius: 2px;
2981
3121
  overflow: hidden;
2982
3122
  position: relative;
2983
3123
  }
2984
3124
  .collection .collection-item {
2985
- background-color: #fff;
3125
+ background-color: var(--mm-surface-color, #fff);
3126
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
2986
3127
  line-height: 1.5rem;
2987
3128
  padding: 10px 20px;
2988
3129
  margin: 0;
2989
- border-bottom: 1px solid #e0e0e0;
3130
+ border-bottom: 1px solid var(--mm-border-color, #e0e0e0);
2990
3131
  }
2991
3132
  .collection .collection-item.avatar {
2992
3133
  min-height: 84px;
@@ -3040,8 +3181,9 @@ td, th {
3040
3181
  background-color: #ddd;
3041
3182
  }
3042
3183
  .collection.with-header .collection-header {
3043
- background-color: #fff;
3044
- border-bottom: 1px solid #e0e0e0;
3184
+ background-color: var(--mm-surface-color, #fff);
3185
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
3186
+ border-bottom: 1px solid var(--mm-border-color, #e0e0e0);
3045
3187
  padding: 10px 20px;
3046
3188
  }
3047
3189
  .collection.with-header .collection-item {
@@ -4042,8 +4184,8 @@ table span.badge {
4042
4184
  }
4043
4185
 
4044
4186
  nav {
4045
- color: #fff;
4046
- background-color: #ee6e73;
4187
+ color: var(--mm-nav-text, #fff);
4188
+ background-color: var(--mm-nav-background, #ee6e73);
4047
4189
  width: 100%;
4048
4190
  height: 56px;
4049
4191
  line-height: 56px;
@@ -4060,7 +4202,7 @@ nav.nav-extended .nav-content {
4060
4202
  line-height: normal;
4061
4203
  }
4062
4204
  nav a {
4063
- color: #fff;
4205
+ color: var(--mm-nav-text, #fff);
4064
4206
  }
4065
4207
  nav i,
4066
4208
  nav [class^=mdi-], nav [class*=mdi-],
@@ -4142,7 +4284,13 @@ nav ul li {
4142
4284
  padding: 0;
4143
4285
  }
4144
4286
  nav ul li.active {
4145
- background-color: rgba(0, 0, 0, 0.1);
4287
+ background-color: var(--mm-primary-color-light, rgba(0, 0, 0, 0.1));
4288
+ }
4289
+ nav ul li.active a {
4290
+ color: var(--mm-nav-active-text, #fff);
4291
+ }
4292
+ nav ul li.active i, nav ul li.active .material-icons {
4293
+ color: var(--mm-nav-active-text, #fff);
4146
4294
  }
4147
4295
  nav ul a {
4148
4296
  transition: background-color 0.3s;
@@ -4193,7 +4341,7 @@ nav .input-field label i {
4193
4341
  transition: color 0.3s;
4194
4342
  }
4195
4343
  nav .input-field label.active i {
4196
- color: #fff;
4344
+ color: var(--mm-nav-text, #fff);
4197
4345
  }
4198
4346
 
4199
4347
  .navbar-fixed {
@@ -4655,7 +4803,8 @@ small {
4655
4803
  overflow-y: hidden;
4656
4804
  height: 48px;
4657
4805
  width: 100%;
4658
- background-color: #fff;
4806
+ background-color: var(--mm-background-color, #fff);
4807
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
4659
4808
  margin: 0 auto;
4660
4809
  white-space: nowrap;
4661
4810
  }
@@ -4690,7 +4839,7 @@ small {
4690
4839
  text-transform: uppercase;
4691
4840
  }
4692
4841
  .tabs .tab a {
4693
- color: rgba(238, 110, 115, 0.7);
4842
+ color: var(--mm-text-secondary, rgba(238, 110, 115, 0.7));
4694
4843
  display: block;
4695
4844
  width: 100%;
4696
4845
  height: 100%;
@@ -4706,10 +4855,10 @@ small {
4706
4855
  }
4707
4856
  .tabs .tab a:hover, .tabs .tab a.active {
4708
4857
  background-color: transparent;
4709
- color: #ee6e73;
4858
+ color: var(--mm-primary-color, #ee6e73);
4710
4859
  }
4711
4860
  .tabs .tab.disabled a, .tabs .tab.disabled a:hover {
4712
- color: rgba(238, 110, 115, 0.4);
4861
+ color: var(--mm-text-disabled, rgba(238, 110, 115, 0.4));
4713
4862
  cursor: default;
4714
4863
  }
4715
4864
  .tabs .indicator {
@@ -5034,7 +5183,7 @@ button.btn-floating {
5034
5183
  .btn-flat {
5035
5184
  box-shadow: none;
5036
5185
  background-color: transparent;
5037
- color: #343434;
5186
+ color: var(--mm-button-flat-text, #343434);
5038
5187
  cursor: pointer;
5039
5188
  transition: background-color 0.2s;
5040
5189
  }
@@ -5042,11 +5191,11 @@ button.btn-floating {
5042
5191
  box-shadow: none;
5043
5192
  }
5044
5193
  .btn-flat:focus {
5045
- background-color: rgba(0, 0, 0, 0.1);
5194
+ background-color: var(--mm-border-color, rgba(0, 0, 0, 0.1));
5046
5195
  }
5047
5196
  .btn-flat.disabled, .btn-flat.btn-flat[disabled] {
5048
5197
  background-color: transparent !important;
5049
- color: rgb(178.5, 178.5, 178.5) !important;
5198
+ color: var(--mm-text-disabled, rgb(178.5, 178.5, 178.5)) !important;
5050
5199
  cursor: default;
5051
5200
  }
5052
5201
 
@@ -5074,7 +5223,7 @@ button.btn-floating {
5074
5223
  }
5075
5224
 
5076
5225
  .dropdown-content {
5077
- background-color: #fff;
5226
+ background-color: var(--mm-surface-color, #fff);
5078
5227
  margin: 0;
5079
5228
  display: none;
5080
5229
  min-width: 100px;
@@ -5091,7 +5240,7 @@ button.btn-floating {
5091
5240
  }
5092
5241
  .dropdown-content li {
5093
5242
  clear: both;
5094
- color: rgba(0, 0, 0, 0.87);
5243
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
5095
5244
  cursor: pointer;
5096
5245
  min-height: 50px;
5097
5246
  line-height: 1.5rem;
@@ -5099,7 +5248,7 @@ button.btn-floating {
5099
5248
  text-align: left;
5100
5249
  }
5101
5250
  .dropdown-content li:hover, .dropdown-content li.active {
5102
- background-color: #eee;
5251
+ background-color: var(--mm-dropdown-hover, #eee);
5103
5252
  }
5104
5253
  .dropdown-content li:focus {
5105
5254
  outline: none;
@@ -5110,7 +5259,7 @@ button.btn-floating {
5110
5259
  }
5111
5260
  .dropdown-content li > a, .dropdown-content li > span {
5112
5261
  font-size: 16px;
5113
- color: #26a69a;
5262
+ color: var(--mm-text-primary, #26a69a);
5114
5263
  display: block;
5115
5264
  line-height: 22px;
5116
5265
  padding: 14px 16px;
@@ -5129,7 +5278,7 @@ button.btn-floating {
5129
5278
  }
5130
5279
 
5131
5280
  body.keyboard-focused .dropdown-content li:focus {
5132
- background-color: rgb(217.6, 217.6, 217.6);
5281
+ background-color: var(--mm-dropdown-focus, rgb(217.6, 217.6, 217.6));
5133
5282
  }
5134
5283
 
5135
5284
  .input-field.col .dropdown-content [type=checkbox] + label {
@@ -5254,7 +5403,8 @@ body.keyboard-focused .dropdown-content li:focus {
5254
5403
  position: fixed;
5255
5404
  left: 0;
5256
5405
  right: 0;
5257
- background-color: #fafafa;
5406
+ background-color: var(--mm-modal-background, #fafafa);
5407
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
5258
5408
  padding: 0;
5259
5409
  max-height: 70%;
5260
5410
  width: 55%;
@@ -5276,13 +5426,15 @@ body.keyboard-focused .dropdown-content li:focus {
5276
5426
  }
5277
5427
  .modal .modal-content {
5278
5428
  padding: 24px;
5429
+ background-color: var(--mm-modal-background, #fafafa);
5430
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
5279
5431
  }
5280
5432
  .modal .modal-close {
5281
5433
  cursor: pointer;
5282
5434
  }
5283
5435
  .modal .modal-footer {
5284
5436
  border-radius: 0 0 2px 2px;
5285
- background-color: #fafafa;
5437
+ background-color: var(--mm-modal-background, #fafafa);
5286
5438
  padding: 4px 6px;
5287
5439
  height: 56px;
5288
5440
  width: 100%;
@@ -5334,9 +5486,9 @@ body.keyboard-focused .dropdown-content li:focus {
5334
5486
  }
5335
5487
 
5336
5488
  .collapsible {
5337
- border-top: 1px solid #ddd;
5338
- border-right: 1px solid #ddd;
5339
- border-left: 1px solid #ddd;
5489
+ border-top: 1px solid var(--mm-border-color, #ddd);
5490
+ border-right: 1px solid var(--mm-border-color, #ddd);
5491
+ border-left: 1px solid var(--mm-border-color, #ddd);
5340
5492
  margin: 0.5rem 0 1rem 0;
5341
5493
  }
5342
5494
 
@@ -5346,8 +5498,7 @@ body.keyboard-focused .dropdown-content li:focus {
5346
5498
  -webkit-tap-highlight-color: transparent;
5347
5499
  line-height: 1.5;
5348
5500
  padding: 1rem;
5349
- background-color: #fff;
5350
- border-bottom: 1px solid #ddd;
5501
+ border-bottom: 1px solid var(--mm-border-color, #ddd);
5351
5502
  }
5352
5503
  .collapsible-header:focus {
5353
5504
  outline: 0;
@@ -5361,12 +5512,12 @@ body.keyboard-focused .dropdown-content li:focus {
5361
5512
  }
5362
5513
 
5363
5514
  .keyboard-focused .collapsible-header:focus {
5364
- background-color: #eee;
5515
+ background-color: var(--mm-border-color, rgba(0, 0, 0, 0.05));
5365
5516
  }
5366
5517
 
5367
5518
  .collapsible-body {
5368
5519
  display: none;
5369
- border-bottom: 1px solid #ddd;
5520
+ border-bottom: 1px solid var(--mm-border-color, #ddd);
5370
5521
  box-sizing: border-box;
5371
5522
  padding: 2rem;
5372
5523
  }
@@ -5399,7 +5550,8 @@ body.keyboard-focused .dropdown-content li:focus {
5399
5550
  .sidenav .collapsible-body,
5400
5551
  .sidenav.sidenav-fixed .collapsible-body {
5401
5552
  border: 0;
5402
- background-color: #fff;
5553
+ background-color: var(--mm-surface-color, #fff);
5554
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
5403
5555
  }
5404
5556
  .sidenav .collapsible-body li a,
5405
5557
  .sidenav.sidenav-fixed .collapsible-body li a {
@@ -5425,18 +5577,18 @@ body.keyboard-focused .dropdown-content li:focus {
5425
5577
  height: 32px;
5426
5578
  font-size: 13px;
5427
5579
  font-weight: 500;
5428
- color: rgba(0, 0, 0, 0.6);
5580
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
5429
5581
  line-height: 32px;
5430
5582
  padding: 0 12px;
5431
5583
  border-radius: 16px;
5432
- background-color: #e4e4e4;
5584
+ background-color: var(--mm-chip-bg, #e4e4e4);
5433
5585
  margin-bottom: 5px;
5434
5586
  margin-right: 5px;
5435
5587
  }
5436
5588
  .chip:focus {
5437
5589
  outline: none;
5438
- background-color: #26a69a;
5439
- color: #fff;
5590
+ background-color: var(--mm-primary-color, #26a69a);
5591
+ color: var(--mm-button-text, #fff);
5440
5592
  }
5441
5593
  .chip > img {
5442
5594
  float: left;
@@ -5455,7 +5607,7 @@ body.keyboard-focused .dropdown-content li:focus {
5455
5607
 
5456
5608
  .chips {
5457
5609
  border: none;
5458
- border-bottom: 1px solid #9e9e9e;
5610
+ border-bottom: 1px solid var(--mm-input-border, #9e9e9e);
5459
5611
  box-shadow: none;
5460
5612
  margin: 0 0 8px 0;
5461
5613
  min-height: 45px;
@@ -5463,8 +5615,8 @@ body.keyboard-focused .dropdown-content li:focus {
5463
5615
  transition: all 0.3s;
5464
5616
  }
5465
5617
  .chips.focus {
5466
- border-bottom: 1px solid #26a69a;
5467
- box-shadow: 0 1px 0 0 #26a69a;
5618
+ border-bottom: 1px solid var(--mm-primary-color, #26a69a);
5619
+ box-shadow: 0 1px 0 0 var(--mm-primary-color, #26a69a);
5468
5620
  }
5469
5621
  .chips:hover {
5470
5622
  cursor: text;
@@ -5472,7 +5624,7 @@ body.keyboard-focused .dropdown-content li:focus {
5472
5624
  .chips .input {
5473
5625
  background: none;
5474
5626
  border: 0;
5475
- color: rgba(0, 0, 0, 0.6);
5627
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.6));
5476
5628
  display: inline-block;
5477
5629
  font-size: 16px;
5478
5630
  height: 3rem;
@@ -5546,10 +5698,10 @@ body.keyboard-focused .dropdown-content li:focus {
5546
5698
  ========================================================================== */
5547
5699
  /* Style Placeholders */
5548
5700
  ::-moz-placeholder {
5549
- color: #d1d1d1;
5701
+ color: var(--mm-text-hint, #d1d1d1);
5550
5702
  }
5551
5703
  ::placeholder {
5552
- color: #d1d1d1;
5704
+ color: var(--mm-text-hint, #d1d1d1);
5553
5705
  }
5554
5706
 
5555
5707
  /* Text inputs */
@@ -5568,7 +5720,7 @@ input[type=search]:not(.browser-default),
5568
5720
  textarea.materialize-textarea {
5569
5721
  background-color: transparent;
5570
5722
  border: none;
5571
- border-bottom: 1px solid #9e9e9e;
5723
+ border-bottom: 1px solid var(--mm-input-border, 1px solid #9e9e9e);
5572
5724
  border-radius: 0;
5573
5725
  outline: none;
5574
5726
  height: 3rem;
@@ -5579,6 +5731,7 @@ textarea.materialize-textarea {
5579
5731
  box-shadow: none;
5580
5732
  box-sizing: content-box;
5581
5733
  transition: box-shadow 0.3s, border 0.3s;
5734
+ color: var(--mm-input-text, inherit);
5582
5735
  }
5583
5736
  input:not([type]):not(.browser-default):disabled, input:not([type]):not(.browser-default)[readonly=readonly],
5584
5737
  input[type=text]:not(.browser-default):disabled,
@@ -5605,8 +5758,8 @@ input[type=search]:not(.browser-default):disabled,
5605
5758
  input[type=search]:not(.browser-default)[readonly=readonly],
5606
5759
  textarea.materialize-textarea:disabled,
5607
5760
  textarea.materialize-textarea[readonly=readonly] {
5608
- color: rgba(0, 0, 0, 0.42);
5609
- border-bottom: 1px dotted rgba(0, 0, 0, 0.42);
5761
+ color: var(--mm-text-disabled, rgba(0, 0, 0, 0.42));
5762
+ border-bottom: 1px dotted var(--mm-input-border, 1px dotted rgba(0, 0, 0, 0.42));
5610
5763
  }
5611
5764
  input:not([type]):not(.browser-default):disabled + label, input:not([type]):not(.browser-default)[readonly=readonly] + label,
5612
5765
  input[type=text]:not(.browser-default):disabled + label,
@@ -5633,7 +5786,7 @@ input[type=search]:not(.browser-default):disabled + label,
5633
5786
  input[type=search]:not(.browser-default)[readonly=readonly] + label,
5634
5787
  textarea.materialize-textarea:disabled + label,
5635
5788
  textarea.materialize-textarea[readonly=readonly] + label {
5636
- color: rgba(0, 0, 0, 0.42);
5789
+ color: var(--mm-text-disabled, rgba(0, 0, 0, 0.42));
5637
5790
  }
5638
5791
  input:not([type]):not(.browser-default):focus:not([readonly]),
5639
5792
  input[type=text]:not(.browser-default):focus:not([readonly]),
@@ -5648,8 +5801,8 @@ input[type=tel]:not(.browser-default):focus:not([readonly]),
5648
5801
  input[type=number]:not(.browser-default):focus:not([readonly]),
5649
5802
  input[type=search]:not(.browser-default):focus:not([readonly]),
5650
5803
  textarea.materialize-textarea:focus:not([readonly]) {
5651
- border-bottom: 1px solid #26a69a;
5652
- box-shadow: 0 1px 0 0 #26a69a;
5804
+ border-bottom: 1px solid var(--mm-input-border-focus, #26a69a);
5805
+ box-shadow: 0 1px 0 0 var(--mm-input-border-focus, #26a69a);
5653
5806
  }
5654
5807
  input:not([type]):not(.browser-default):focus:not([readonly]) + label,
5655
5808
  input[type=text]:not(.browser-default):focus:not([readonly]) + label,
@@ -5664,7 +5817,7 @@ input[type=tel]:not(.browser-default):focus:not([readonly]) + label,
5664
5817
  input[type=number]:not(.browser-default):focus:not([readonly]) + label,
5665
5818
  input[type=search]:not(.browser-default):focus:not([readonly]) + label,
5666
5819
  textarea.materialize-textarea:focus:not([readonly]) + label {
5667
- color: #26a69a;
5820
+ color: var(--mm-input-border-focus, #26a69a);
5668
5821
  }
5669
5822
  input:not([type]):not(.browser-default):focus.valid ~ label,
5670
5823
  input[type=text]:not(.browser-default):focus.valid ~ label,
@@ -5711,6 +5864,93 @@ input[type=search]:not(.browser-default).validate + label,
5711
5864
  textarea.materialize-textarea.validate + label {
5712
5865
  width: 100%;
5713
5866
  }
5867
+ input:not([type]):not(.browser-default):-webkit-autofill, input:not([type]):not(.browser-default):-webkit-autofill:hover, input:not([type]):not(.browser-default):-webkit-autofill:focus, input:not([type]):not(.browser-default):-webkit-autofill:active,
5868
+ input[type=text]:not(.browser-default):-webkit-autofill,
5869
+ input[type=text]:not(.browser-default):-webkit-autofill:hover,
5870
+ input[type=text]:not(.browser-default):-webkit-autofill:focus,
5871
+ input[type=text]:not(.browser-default):-webkit-autofill:active,
5872
+ input[type=password]:not(.browser-default):-webkit-autofill,
5873
+ input[type=password]:not(.browser-default):-webkit-autofill:hover,
5874
+ input[type=password]:not(.browser-default):-webkit-autofill:focus,
5875
+ input[type=password]:not(.browser-default):-webkit-autofill:active,
5876
+ input[type=email]:not(.browser-default):-webkit-autofill,
5877
+ input[type=email]:not(.browser-default):-webkit-autofill:hover,
5878
+ input[type=email]:not(.browser-default):-webkit-autofill:focus,
5879
+ input[type=email]:not(.browser-default):-webkit-autofill:active,
5880
+ input[type=url]:not(.browser-default):-webkit-autofill,
5881
+ input[type=url]:not(.browser-default):-webkit-autofill:hover,
5882
+ input[type=url]:not(.browser-default):-webkit-autofill:focus,
5883
+ input[type=url]:not(.browser-default):-webkit-autofill:active,
5884
+ input[type=time]:not(.browser-default):-webkit-autofill,
5885
+ input[type=time]:not(.browser-default):-webkit-autofill:hover,
5886
+ input[type=time]:not(.browser-default):-webkit-autofill:focus,
5887
+ input[type=time]:not(.browser-default):-webkit-autofill:active,
5888
+ input[type=date]:not(.browser-default):-webkit-autofill,
5889
+ input[type=date]:not(.browser-default):-webkit-autofill:hover,
5890
+ input[type=date]:not(.browser-default):-webkit-autofill:focus,
5891
+ input[type=date]:not(.browser-default):-webkit-autofill:active,
5892
+ input[type=datetime]:not(.browser-default):-webkit-autofill,
5893
+ input[type=datetime]:not(.browser-default):-webkit-autofill:hover,
5894
+ input[type=datetime]:not(.browser-default):-webkit-autofill:focus,
5895
+ input[type=datetime]:not(.browser-default):-webkit-autofill:active,
5896
+ input[type=datetime-local]:not(.browser-default):-webkit-autofill,
5897
+ input[type=datetime-local]:not(.browser-default):-webkit-autofill:hover,
5898
+ input[type=datetime-local]:not(.browser-default):-webkit-autofill:focus,
5899
+ input[type=datetime-local]:not(.browser-default):-webkit-autofill:active,
5900
+ input[type=tel]:not(.browser-default):-webkit-autofill,
5901
+ input[type=tel]:not(.browser-default):-webkit-autofill:hover,
5902
+ input[type=tel]:not(.browser-default):-webkit-autofill:focus,
5903
+ input[type=tel]:not(.browser-default):-webkit-autofill:active,
5904
+ input[type=number]:not(.browser-default):-webkit-autofill,
5905
+ input[type=number]:not(.browser-default):-webkit-autofill:hover,
5906
+ input[type=number]:not(.browser-default):-webkit-autofill:focus,
5907
+ input[type=number]:not(.browser-default):-webkit-autofill:active,
5908
+ input[type=search]:not(.browser-default):-webkit-autofill,
5909
+ input[type=search]:not(.browser-default):-webkit-autofill:hover,
5910
+ input[type=search]:not(.browser-default):-webkit-autofill:focus,
5911
+ input[type=search]:not(.browser-default):-webkit-autofill:active,
5912
+ textarea.materialize-textarea:-webkit-autofill,
5913
+ textarea.materialize-textarea:-webkit-autofill:hover,
5914
+ textarea.materialize-textarea:-webkit-autofill:focus,
5915
+ textarea.materialize-textarea:-webkit-autofill:active {
5916
+ -webkit-box-shadow: 0 0 0 30px var(--mm-input-background, transparent) inset !important;
5917
+ -webkit-text-fill-color: var(--mm-input-text, inherit) !important;
5918
+ background-color: transparent !important;
5919
+ color: var(--mm-input-text, inherit) !important;
5920
+ -webkit-transition: background-color 5000s ease-in-out 0s;
5921
+ transition: background-color 5000s ease-in-out 0s;
5922
+ }
5923
+ input:not([type]):not(.browser-default):-ms-input-placeholder,
5924
+ input[type=text]:not(.browser-default):-ms-input-placeholder,
5925
+ input[type=password]:not(.browser-default):-ms-input-placeholder,
5926
+ input[type=email]:not(.browser-default):-ms-input-placeholder,
5927
+ input[type=url]:not(.browser-default):-ms-input-placeholder,
5928
+ input[type=time]:not(.browser-default):-ms-input-placeholder,
5929
+ input[type=date]:not(.browser-default):-ms-input-placeholder,
5930
+ input[type=datetime]:not(.browser-default):-ms-input-placeholder,
5931
+ input[type=datetime-local]:not(.browser-default):-ms-input-placeholder,
5932
+ input[type=tel]:not(.browser-default):-ms-input-placeholder,
5933
+ input[type=number]:not(.browser-default):-ms-input-placeholder,
5934
+ input[type=search]:not(.browser-default):-ms-input-placeholder,
5935
+ textarea.materialize-textarea:-ms-input-placeholder {
5936
+ color: var(--mm-text-hint, #d1d1d1) !important;
5937
+ }
5938
+ input:not([type]):not(.browser-default)::-ms-input-placeholder,
5939
+ input[type=text]:not(.browser-default)::-ms-input-placeholder,
5940
+ input[type=password]:not(.browser-default)::-ms-input-placeholder,
5941
+ input[type=email]:not(.browser-default)::-ms-input-placeholder,
5942
+ input[type=url]:not(.browser-default)::-ms-input-placeholder,
5943
+ input[type=time]:not(.browser-default)::-ms-input-placeholder,
5944
+ input[type=date]:not(.browser-default)::-ms-input-placeholder,
5945
+ input[type=datetime]:not(.browser-default)::-ms-input-placeholder,
5946
+ input[type=datetime-local]:not(.browser-default)::-ms-input-placeholder,
5947
+ input[type=tel]:not(.browser-default)::-ms-input-placeholder,
5948
+ input[type=number]:not(.browser-default)::-ms-input-placeholder,
5949
+ input[type=search]:not(.browser-default)::-ms-input-placeholder,
5950
+ textarea.materialize-textarea::-ms-input-placeholder {
5951
+ color: var(--mm-text-hint, #d1d1d1) !important;
5952
+ }
5953
+
5714
5954
  /* Validation Sass Placeholders */
5715
5955
  .select-wrapper.valid > input.select-dropdown, input:not([type]):not(.browser-default).valid, input:not([type]):not(.browser-default):focus.valid,
5716
5956
  input[type=text]:not(.browser-default).valid,
@@ -5952,7 +6192,7 @@ textarea.materialize-textarea + label:after {
5952
6192
  min-height: 18px;
5953
6193
  display: block;
5954
6194
  font-size: 12px;
5955
- color: rgba(0, 0, 0, 0.54);
6195
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.54));
5956
6196
  }
5957
6197
  .input-field .helper-text::after {
5958
6198
  opacity: 1;
@@ -6014,13 +6254,13 @@ textarea.materialize-textarea + label:after {
6014
6254
  box-shadow: none;
6015
6255
  }
6016
6256
  .input-field input[type=search]:focus:not(.browser-default) {
6017
- background-color: #fff;
6257
+ background-color: var(--mm-input-background, #fff);
6018
6258
  border: 0;
6019
6259
  box-shadow: none;
6020
- color: #444;
6260
+ color: var(--mm-input-text, #444);
6021
6261
  }
6022
6262
  .input-field input[type=search]:focus:not(.browser-default) + label i, .input-field input[type=search]:focus:not(.browser-default) ~ .mdi-navigation-close, .input-field input[type=search]:focus:not(.browser-default) ~ .material-icons {
6023
- color: #444;
6263
+ color: var(--mm-input-text, #444);
6024
6264
  }
6025
6265
  .input-field input[type=search] + .label-icon {
6026
6266
  transform: none;
@@ -6126,7 +6366,7 @@ textarea.materialize-textarea {
6126
6366
 
6127
6367
  [type=radio]:not(:checked) + span:before,
6128
6368
  [type=radio]:not(:checked) + span:after {
6129
- border: 2px solid #5a5a5a;
6369
+ border: 2px solid var(--mm-text-secondary, #5a5a5a);
6130
6370
  }
6131
6371
 
6132
6372
  [type=radio]:not(:checked) + span:after {
@@ -6141,12 +6381,12 @@ textarea.materialize-textarea {
6141
6381
  [type=radio]:checked + span:after,
6142
6382
  [type=radio].with-gap:checked + span:before,
6143
6383
  [type=radio].with-gap:checked + span:after {
6144
- border: 2px solid #26a69a;
6384
+ border: 2px solid var(--mm-primary-color, #26a69a);
6145
6385
  }
6146
6386
 
6147
6387
  [type=radio]:checked + span:after,
6148
6388
  [type=radio].with-gap:checked + span:after {
6149
- background-color: #26a69a;
6389
+ background-color: var(--mm-primary-color, #26a69a);
6150
6390
  }
6151
6391
 
6152
6392
  [type=radio]:checked + span:after {
@@ -6165,32 +6405,32 @@ textarea.materialize-textarea {
6165
6405
 
6166
6406
  /* Disabled Radio With gap */
6167
6407
  [type=radio].with-gap:disabled:checked + span:before {
6168
- border: 2px solid rgba(0, 0, 0, 0.42);
6408
+ border: 2px solid var(--mm-text-disabled, rgba(0, 0, 0, 0.42));
6169
6409
  }
6170
6410
 
6171
6411
  [type=radio].with-gap:disabled:checked + span:after {
6172
6412
  border: none;
6173
- background-color: rgba(0, 0, 0, 0.42);
6413
+ background-color: var(--mm-text-disabled, rgba(0, 0, 0, 0.42));
6174
6414
  }
6175
6415
 
6176
6416
  /* Disabled style */
6177
6417
  [type=radio]:disabled:not(:checked) + span:before,
6178
6418
  [type=radio]:disabled:checked + span:before {
6179
6419
  background-color: transparent;
6180
- border-color: rgba(0, 0, 0, 0.42);
6420
+ border-color: var(--mm-text-disabled, rgba(0, 0, 0, 0.42));
6181
6421
  }
6182
6422
 
6183
6423
  [type=radio]:disabled + span {
6184
- color: rgba(0, 0, 0, 0.42);
6424
+ color: var(--mm-text-disabled, rgba(0, 0, 0, 0.42));
6185
6425
  }
6186
6426
 
6187
6427
  [type=radio]:disabled:not(:checked) + span:before {
6188
- border-color: rgba(0, 0, 0, 0.42);
6428
+ border-color: var(--mm-text-disabled, rgba(0, 0, 0, 0.42));
6189
6429
  }
6190
6430
 
6191
6431
  [type=radio]:disabled:checked + span:after {
6192
- background-color: rgba(0, 0, 0, 0.42);
6193
- border-color: #949494;
6432
+ background-color: var(--mm-text-disabled, rgba(0, 0, 0, 0.42));
6433
+ border-color: var(--mm-text-disabled, #949494);
6194
6434
  }
6195
6435
 
6196
6436
  /* Checkboxes
@@ -6379,13 +6619,13 @@ textarea.materialize-textarea {
6379
6619
  height: 0;
6380
6620
  }
6381
6621
  .switch label input[type=checkbox]:checked + .lever {
6382
- background-color: rgb(132.0625, 199.4375, 193.12109375);
6622
+ background-color: var(--mm-switch-checked-track, rgb(132.0625, 199.4375, 193.12109375));
6383
6623
  }
6384
6624
  .switch label input[type=checkbox]:checked + .lever:before, .switch label input[type=checkbox]:checked + .lever:after {
6385
6625
  left: 18px;
6386
6626
  }
6387
6627
  .switch label input[type=checkbox]:checked + .lever:after {
6388
- background-color: #26a69a;
6628
+ background-color: var(--mm-switch-checked-thumb, #26a69a);
6389
6629
  }
6390
6630
 
6391
6631
  .switch label .lever {
@@ -6394,7 +6634,7 @@ textarea.materialize-textarea {
6394
6634
  position: relative;
6395
6635
  width: 36px;
6396
6636
  height: 14px;
6397
- background-color: rgba(0, 0, 0, 0.38);
6637
+ background-color: var(--mm-switch-unchecked-track, rgba(0, 0, 0, 0.38));
6398
6638
  border-radius: 15px;
6399
6639
  margin-right: 10px;
6400
6640
  transition: background 0.3s ease;
@@ -6416,7 +6656,7 @@ textarea.materialize-textarea {
6416
6656
  background-color: rgba(38, 166, 154, 0.15);
6417
6657
  }
6418
6658
  .switch label .lever:after {
6419
- background-color: #F1F1F1;
6659
+ background-color: var(--mm-switch-unchecked-thumb, #F1F1F1);
6420
6660
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
6421
6661
  }
6422
6662
 
@@ -6434,12 +6674,12 @@ input[type=checkbox]:not(:disabled).tabbed:focus ~ .lever::before {
6434
6674
 
6435
6675
  .switch input[type=checkbox][disabled] + .lever {
6436
6676
  cursor: default;
6437
- background-color: rgba(0, 0, 0, 0.12);
6677
+ background-color: var(--mm-switch-disabled-track, rgba(0, 0, 0, 0.12));
6438
6678
  }
6439
6679
 
6440
6680
  .switch label input[type=checkbox][disabled] + .lever:after,
6441
6681
  .switch label input[type=checkbox][disabled]:checked + .lever:after {
6442
- background-color: #949494;
6682
+ background-color: var(--mm-switch-disabled-thumb, #949494);
6443
6683
  }
6444
6684
 
6445
6685
  /* Select Field
@@ -6498,7 +6738,7 @@ select {
6498
6738
  bottom: 0;
6499
6739
  margin: auto 0;
6500
6740
  z-index: 0;
6501
- fill: rgba(0, 0, 0, 0.87);
6741
+ fill: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
6502
6742
  }
6503
6743
  .select-wrapper + label {
6504
6744
  position: absolute;
@@ -6540,19 +6780,19 @@ select:disabled {
6540
6780
  .select-dropdown li.disabled,
6541
6781
  .select-dropdown li.disabled > span,
6542
6782
  .select-dropdown li.optgroup {
6543
- color: rgba(0, 0, 0, 0.3);
6783
+ color: var(--mm-text-disabled, rgba(0, 0, 0, 0.3));
6544
6784
  background-color: transparent;
6545
6785
  }
6546
6786
 
6547
6787
  body.keyboard-focused .select-dropdown.dropdown-content li:focus {
6548
- background-color: rgba(0, 0, 0, 0.08);
6788
+ background-color: var(--mm-dropdown-focus, rgba(0, 0, 0, 0.08));
6549
6789
  }
6550
6790
 
6551
6791
  .select-dropdown.dropdown-content li:hover {
6552
- background-color: rgba(0, 0, 0, 0.08);
6792
+ background-color: var(--mm-dropdown-hover, rgba(0, 0, 0, 0.08));
6553
6793
  }
6554
6794
  .select-dropdown.dropdown-content li.selected {
6555
- background-color: rgba(0, 0, 0, 0.03);
6795
+ background-color: var(--mm-dropdown-selected, rgba(0, 0, 0, 0.03));
6556
6796
  }
6557
6797
 
6558
6798
  .prefix ~ .select-wrapper {
@@ -6573,13 +6813,13 @@ body.keyboard-focused .select-dropdown.dropdown-content li:focus {
6573
6813
  }
6574
6814
 
6575
6815
  .select-dropdown li.optgroup {
6576
- border-top: 1px solid #eee;
6816
+ border-top: 1px solid var(--mm-border-color, #eee);
6577
6817
  }
6578
6818
  .select-dropdown li.optgroup.selected > span {
6579
- color: rgba(0, 0, 0, 0.7);
6819
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.7));
6580
6820
  }
6581
6821
  .select-dropdown li.optgroup > span {
6582
- color: rgba(0, 0, 0, 0.4);
6822
+ color: var(--mm-text-hint, rgba(0, 0, 0, 0.4));
6583
6823
  }
6584
6824
  .select-dropdown li.optgroup ~ li.optgroup-option {
6585
6825
  padding-left: 1rem;
@@ -6846,6 +7086,105 @@ label {
6846
7086
  border-left: 2px solid #ee6e73;
6847
7087
  }
6848
7088
 
7089
+ .sidenav-container {
7090
+ position: relative;
7091
+ z-index: 997;
7092
+ }
7093
+
7094
+ .sidenav-backdrop {
7095
+ position: fixed;
7096
+ top: 0;
7097
+ left: 0;
7098
+ right: 0;
7099
+ bottom: 0;
7100
+ width: 100%;
7101
+ height: 100%;
7102
+ background: var(--mm-overlay-background, rgba(0, 0, 0, 0.5));
7103
+ opacity: 0;
7104
+ visibility: hidden;
7105
+ transition: opacity 0.3s ease, visibility 0.3s ease;
7106
+ z-index: 998;
7107
+ cursor: pointer;
7108
+ }
7109
+ .sidenav-backdrop.show {
7110
+ opacity: 1;
7111
+ visibility: visible;
7112
+ }
7113
+
7114
+ .sidenav-link {
7115
+ display: flex;
7116
+ align-items: center;
7117
+ padding: 0.75rem 1rem;
7118
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
7119
+ text-decoration: none;
7120
+ transition: background-color 0.2s ease, color 0.2s ease;
7121
+ cursor: pointer;
7122
+ min-height: 48px;
7123
+ }
7124
+ .sidenav-link:hover:not(.disabled) {
7125
+ background: var(--mm-border-color, rgba(0, 0, 0, 0.12));
7126
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
7127
+ text-decoration: none;
7128
+ }
7129
+ .sidenav-link.active {
7130
+ background: var(--mm-primary-color-light, rgba(38, 166, 154, 0.1));
7131
+ color: var(--mm-primary-color, #26a69a);
7132
+ }
7133
+ .sidenav-link.active .sidenav-icon {
7134
+ color: var(--mm-primary-color, #26a69a);
7135
+ }
7136
+ .sidenav-link.disabled {
7137
+ color: var(--mm-text-disabled, rgba(0, 0, 0, 0.38));
7138
+ cursor: not-allowed;
7139
+ }
7140
+ .sidenav-link.disabled .sidenav-icon {
7141
+ color: var(--mm-text-disabled, rgba(0, 0, 0, 0.38));
7142
+ }
7143
+
7144
+ .sidenav-icon {
7145
+ margin-right: 1rem;
7146
+ font-size: 1.5rem;
7147
+ width: 24px;
7148
+ height: 24px;
7149
+ display: flex;
7150
+ align-items: center;
7151
+ justify-content: center;
7152
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
7153
+ flex-shrink: 0;
7154
+ }
7155
+
7156
+ .sidenav-text {
7157
+ font-size: 0.875rem;
7158
+ font-weight: 500;
7159
+ line-height: 1.5;
7160
+ overflow: hidden;
7161
+ text-overflow: ellipsis;
7162
+ white-space: nowrap;
7163
+ }
7164
+
7165
+ .sidenav-divider {
7166
+ height: 1px;
7167
+ background: var(--mm-divider-color, rgba(0, 0, 0, 0.12));
7168
+ margin: 0.5rem 0;
7169
+ }
7170
+
7171
+ .sidenav-subheader {
7172
+ padding: 1rem 1rem 0.5rem 1rem;
7173
+ font-size: 0.75rem;
7174
+ font-weight: 600;
7175
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
7176
+ text-transform: uppercase;
7177
+ letter-spacing: 0.5px;
7178
+ line-height: 1.5;
7179
+ }
7180
+
7181
+ .sidenav-content {
7182
+ padding: 0;
7183
+ height: 100%;
7184
+ display: flex;
7185
+ flex-direction: column;
7186
+ }
7187
+
6849
7188
  .sidenav {
6850
7189
  position: fixed;
6851
7190
  width: 300px;
@@ -6857,12 +7196,37 @@ label {
6857
7196
  height: calc(100% + 60px);
6858
7197
  height: -moz-calc(100%);
6859
7198
  padding-bottom: 60px;
6860
- background-color: #fff;
7199
+ background-color: var(--mm-surface-color, #fff);
6861
7200
  z-index: 999;
6862
7201
  overflow-y: auto;
6863
7202
  will-change: transform;
6864
7203
  backface-visibility: hidden;
6865
7204
  transform: translateX(-105%);
7205
+ transition: transform 0.3s ease, left 0.3s ease, right 0.3s ease;
7206
+ }
7207
+ .sidenav.sidenav-left {
7208
+ left: 0;
7209
+ }
7210
+ .sidenav.sidenav-right {
7211
+ right: 0;
7212
+ left: auto;
7213
+ transform: translateX(100%);
7214
+ }
7215
+ .sidenav.sidenav-overlay {
7216
+ position: fixed;
7217
+ }
7218
+ .sidenav.sidenav-push {
7219
+ position: relative;
7220
+ box-shadow: var(--mm-border-color, rgba(0, 0, 0, 0.12)) 1px 0 0 0;
7221
+ }
7222
+ .sidenav.closed.sidenav-left {
7223
+ transform: translateX(-100%);
7224
+ }
7225
+ .sidenav.closed.sidenav-right {
7226
+ transform: translateX(100%);
7227
+ }
7228
+ .sidenav.open {
7229
+ transform: translateX(0);
6866
7230
  }
6867
7231
  .sidenav.right-aligned {
6868
7232
  right: 0;
@@ -6881,7 +7245,7 @@ label {
6881
7245
  background-color: rgba(0, 0, 0, 0.05);
6882
7246
  }
6883
7247
  .sidenav li > a:not(.btn):not(.btn-large):not(.btn-flat):not(.btn-floating) {
6884
- color: rgba(0, 0, 0, 0.87);
7248
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
6885
7249
  display: block;
6886
7250
  font-size: 14px;
6887
7251
  font-weight: 500;
@@ -6890,7 +7254,7 @@ label {
6890
7254
  padding: 0 32px;
6891
7255
  }
6892
7256
  .sidenav li > a:not(.btn):not(.btn-large):not(.btn-flat):not(.btn-floating):hover {
6893
- background-color: rgba(0, 0, 0, 0.05);
7257
+ background-color: var(--mm-border-color, rgba(0, 0, 0, 0.05));
6894
7258
  }
6895
7259
  .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 {
6896
7260
  float: left;
@@ -6898,7 +7262,7 @@ label {
6898
7262
  line-height: 48px;
6899
7263
  margin: 0 32px 0 0;
6900
7264
  width: 24px;
6901
- color: rgba(0, 0, 0, 0.54);
7265
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.54));
6902
7266
  }
6903
7267
  .sidenav li > .btn, .sidenav li > .btn-large, .sidenav li > .btn-flat, .sidenav li > .btn-floating {
6904
7268
  margin: 10px 32px;
@@ -6909,10 +7273,14 @@ label {
6909
7273
  .sidenav .subheader {
6910
7274
  cursor: initial;
6911
7275
  pointer-events: none;
6912
- color: rgba(0, 0, 0, 0.54);
7276
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.54));
6913
7277
  font-size: 14px;
6914
7278
  font-weight: 500;
6915
7279
  line-height: 48px;
7280
+ padding: 0 32px;
7281
+ height: 48px;
7282
+ display: flex;
7283
+ align-items: center;
6916
7284
  }
6917
7285
  .sidenav .subheader:hover {
6918
7286
  background-color: transparent;
@@ -7013,11 +7381,18 @@ label {
7013
7381
  top: 0;
7014
7382
  left: 0;
7015
7383
  right: 0;
7384
+ bottom: 0;
7385
+ width: 100%;
7386
+ height: 100%;
7016
7387
  opacity: 0;
7017
- height: 120vh;
7018
- background-color: rgba(0, 0, 0, 0.5);
7388
+ background-color: var(--mm-overlay-background, rgba(0, 0, 0, 0.5));
7019
7389
  z-index: 997;
7020
7390
  display: none;
7391
+ transition: opacity 0.3s ease;
7392
+ }
7393
+
7394
+ .sidenav-overlay {
7395
+ pointer-events: auto;
7021
7396
  }
7022
7397
 
7023
7398
  /*
@@ -7618,6 +7993,8 @@ label {
7618
7993
  flex-direction: column;
7619
7994
  padding: 0;
7620
7995
  overflow: visible;
7996
+ background-color: var(--mm-surface-color, #ffffff);
7997
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
7621
7998
  }
7622
7999
 
7623
8000
  .datepicker-controls {
@@ -7652,17 +8029,17 @@ label {
7652
8029
  cursor: pointer;
7653
8030
  width: 16px;
7654
8031
  height: 16px;
7655
- fill: rgba(0, 0, 0, 0.54);
8032
+ fill: var(--mm-text-secondary, rgba(0, 0, 0, 0.54));
7656
8033
  }
7657
8034
  .datepicker-controls .select-wrapper .dropdown-content {
7658
8035
  position: absolute;
7659
8036
  top: 100%;
7660
8037
  left: 0;
7661
8038
  right: 0;
7662
- background-color: white;
7663
- box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
8039
+ background-color: var(--mm-surface-color, white);
8040
+ box-shadow: 0 4px 20px var(--mm-shadow-color, rgba(0, 0, 0, 0.3));
7664
8041
  z-index: 20000;
7665
- border: 1px solid #ddd;
8042
+ border: 1px solid var(--mm-border-color, #ddd);
7666
8043
  border-radius: 2px;
7667
8044
  display: block;
7668
8045
  opacity: 1;
@@ -7674,10 +8051,10 @@ label {
7674
8051
  transition: background-color 0.2s;
7675
8052
  }
7676
8053
  .datepicker-controls .select-wrapper .dropdown-content .dropdown-item:hover {
7677
- background-color: #f5f5f5;
8054
+ background-color: var(--mm-border-color, #f5f5f5);
7678
8055
  }
7679
8056
  .datepicker-controls .select-wrapper .dropdown-content .dropdown-item.selected {
7680
- background-color: #f5f5f5;
8057
+ background-color: var(--mm-border-color, #f5f5f5);
7681
8058
  }
7682
8059
  .datepicker-controls .select-year input {
7683
8060
  width: 50px;
@@ -7734,6 +8111,9 @@ label {
7734
8111
  font-size: 1rem;
7735
8112
  margin: 0 auto;
7736
8113
  }
8114
+ .datepicker-table.with-week-numbers {
8115
+ width: 310px;
8116
+ }
7737
8117
  .datepicker-table thead {
7738
8118
  border-bottom: none;
7739
8119
  }
@@ -7741,28 +8121,47 @@ label {
7741
8121
  padding: 10px 5px;
7742
8122
  text-align: center;
7743
8123
  }
8124
+ .datepicker-table th.datepicker-week-header {
8125
+ color: var(--mm-text-hint, rgba(0, 0, 0, 0.38));
8126
+ font-size: 0.8rem;
8127
+ font-weight: 600;
8128
+ width: 30px;
8129
+ padding: 10px 2px;
8130
+ }
7744
8131
  .datepicker-table tr {
7745
8132
  border: none;
7746
8133
  }
7747
8134
  .datepicker-table abbr {
7748
8135
  text-decoration: none;
7749
- color: rgba(0, 0, 0, 0.54);
8136
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.54));
7750
8137
  }
7751
8138
  .datepicker-table td {
7752
8139
  border-radius: 50%;
7753
8140
  padding: 0;
7754
8141
  }
7755
8142
  .datepicker-table td.is-today {
7756
- color: #26a69a;
8143
+ color: var(--mm-primary-color, #26a69a);
7757
8144
  }
7758
8145
  .datepicker-table td.is-selected {
7759
- background-color: #26a69a;
7760
- color: #fff;
8146
+ background-color: var(--mm-primary-color, #26a69a);
8147
+ color: var(--mm-button-text, #fff);
7761
8148
  }
7762
8149
  .datepicker-table td.is-outside-current-month, .datepicker-table td.is-disabled {
7763
- color: rgba(0, 0, 0, 0.3);
8150
+ color: var(--mm-text-disabled, rgba(0, 0, 0, 0.3));
7764
8151
  pointer-events: none;
7765
8152
  }
8153
+ .datepicker-table td.datepicker-week-number {
8154
+ color: var(--mm-text-hint, rgba(0, 0, 0, 0.38));
8155
+ font-size: 0.8rem;
8156
+ font-weight: 600;
8157
+ text-align: center;
8158
+ vertical-align: middle;
8159
+ border-radius: 0;
8160
+ width: 30px;
8161
+ padding: 5px 2px;
8162
+ background-color: var(--mm-border-color, rgba(0, 0, 0, 0.02));
8163
+ border-right: 1px solid var(--mm-border-color, rgba(0, 0, 0, 0.05));
8164
+ }
7766
8165
 
7767
8166
  .datepicker-day-button {
7768
8167
  background-color: transparent;
@@ -7775,9 +8174,6 @@ label {
7775
8174
  cursor: pointer;
7776
8175
  color: inherit;
7777
8176
  }
7778
- .datepicker-day-button:focus {
7779
- background-color: #eee;
7780
- }
7781
8177
 
7782
8178
  /* Footer */
7783
8179
  .datepicker-footer {
@@ -7816,6 +8212,9 @@ label {
7816
8212
  .datepicker-footer {
7817
8213
  width: 320px;
7818
8214
  }
8215
+ .datepicker-table.with-week-numbers {
8216
+ width: 350px;
8217
+ }
7819
8218
  .datepicker-day-button {
7820
8219
  line-height: 44px;
7821
8220
  }
@@ -7850,7 +8249,7 @@ label {
7850
8249
  gap: 8px;
7851
8250
  margin-top: 8px;
7852
8251
  padding: 12px;
7853
- background-color: #f5f5f5;
8252
+ background-color: var(--mm-border-color, #f5f5f5);
7854
8253
  border-radius: 4px;
7855
8254
  font-size: 14px;
7856
8255
  }
@@ -7863,106 +8262,1023 @@ label {
7863
8262
  width: 50px;
7864
8263
  text-align: center;
7865
8264
  padding: 4px;
7866
- border: 1px solid #ccc;
8265
+ border: 1px solid var(--mm-border-color, #ccc);
7867
8266
  border-radius: 4px;
7868
8267
  }
7869
8268
  .inline-time-controls .time-controls-12h select {
7870
8269
  padding: 4px;
7871
- border: 1px solid #ccc;
8270
+ border: 1px solid var(--mm-border-color, #ccc);
7872
8271
  border-radius: 4px;
7873
8272
  margin-left: 4px;
7874
8273
  }
7875
8274
  .inline-time-controls input[type=time] {
7876
8275
  font-size: 16px;
7877
8276
  padding: 4px 8px;
7878
- border: 1px solid #ccc;
8277
+ border: 1px solid var(--mm-border-color, #ccc);
7879
8278
  border-radius: 4px;
7880
8279
  min-width: 120px;
7881
8280
  }
7882
8281
  .inline-time-controls .btn-flat {
7883
8282
  padding: 4px 8px;
7884
8283
  font-size: 11px;
7885
- background-color: #e0e0e0;
8284
+ background-color: var(--mm-border-color, #e0e0e0);
7886
8285
  border-radius: 4px;
7887
8286
  min-width: auto;
7888
8287
  }
7889
8288
 
8289
+ /* Timepicker Containers */
7890
8290
  .timepicker-modal {
7891
- position: fixed;
7892
- top: 0;
7893
- left: 0;
7894
- width: 100%;
7895
- height: 100%;
7896
- background-color: rgba(0, 0, 0, 0.5);
8291
+ max-width: 325px;
8292
+ max-height: none;
8293
+ }
8294
+
8295
+ .timepicker-container.modal-content {
7897
8296
  display: flex;
7898
- align-items: center;
7899
- justify-content: center;
7900
- z-index: 1000;
8297
+ flex-direction: column;
8298
+ padding: 0;
7901
8299
  }
7902
- .timepicker-modal .timepicker-content {
7903
- background: white;
7904
- border-radius: 8px;
7905
- padding: 24px;
7906
- min-width: 320px;
7907
- max-width: 400px;
7908
- box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
8300
+
8301
+ .text-primary {
8302
+ color: rgb(255, 255, 255);
7909
8303
  }
7910
- .timepicker-modal .timepicker-content .modal-header {
7911
- display: flex;
7912
- justify-content: space-between;
7913
- align-items: center;
7914
- margin-bottom: 20px;
8304
+
8305
+ /* Clock Digital Display */
8306
+ .timepicker-digital-display {
8307
+ flex: 1 auto;
8308
+ background-color: #26a69a;
8309
+ padding: 10px;
8310
+ font-weight: 300;
7915
8311
  }
7916
- .timepicker-modal .timepicker-content .modal-header h5 {
7917
- margin: 0;
8312
+
8313
+ .timepicker-text-container {
8314
+ font-size: 4rem;
8315
+ font-weight: bold;
8316
+ text-align: center;
8317
+ color: rgba(255, 255, 255, 0.6);
8318
+ font-weight: 400;
8319
+ position: relative;
8320
+ -webkit-user-select: none;
8321
+ -moz-user-select: none;
8322
+ user-select: none;
7918
8323
  }
7919
- .timepicker-modal .timepicker-content .modal-header .btn-flat {
7920
- padding: 4px 8px;
7921
- font-size: 11px;
7922
- min-width: auto;
8324
+
8325
+ .timepicker-span-hours,
8326
+ .timepicker-span-minutes,
8327
+ .timepicker-span-am-pm div {
8328
+ cursor: pointer;
7923
8329
  }
7924
- .timepicker-modal .timepicker-content .modal-header .btn-flat i.material-icons {
7925
- font-size: 14px;
7926
- margin-right: 4px;
8330
+
8331
+ .timepicker-span-hours {
8332
+ margin-right: 3px;
7927
8333
  }
7928
- .timepicker-modal .timepicker-content .time-display {
7929
- display: flex;
7930
- align-items: center;
7931
- justify-content: center;
7932
- gap: 8px;
7933
- margin-bottom: 24px;
7934
- font-size: 2.5rem;
7935
- font-weight: 300;
8334
+
8335
+ .timepicker-span-minutes {
8336
+ margin-left: 3px;
7936
8337
  }
7937
- .timepicker-modal .timepicker-content .time-display input[type=number] {
7938
- width: 80px;
7939
- text-align: center;
7940
- font-size: 2.5rem;
7941
- border: 1px solid #ddd;
7942
- border-radius: 4px;
7943
- padding: 8px;
8338
+
8339
+ .timepicker-display-am-pm {
8340
+ font-size: 1.3rem;
8341
+ position: absolute;
8342
+ right: 1rem;
8343
+ bottom: 1rem;
8344
+ font-weight: 400;
7944
8345
  }
7945
- .timepicker-modal .timepicker-content .time-display .ampm-selector {
7946
- display: flex;
7947
- flex-direction: column;
7948
- gap: 4px;
8346
+
8347
+ /* Analog Clock Display */
8348
+ .timepicker-analog-display {
8349
+ flex: 2.5 auto;
7949
8350
  }
7950
- .timepicker-modal .timepicker-content .time-display .ampm-selector button {
7951
- min-width: 60px;
7952
- padding: 4px 8px;
8351
+
8352
+ .timepicker-plate {
8353
+ background-color: #eee;
8354
+ border-radius: 50%;
8355
+ width: 270px;
8356
+ height: 270px;
8357
+ overflow: visible;
8358
+ position: relative;
8359
+ margin: auto;
8360
+ margin-top: 25px;
8361
+ margin-bottom: 5px;
8362
+ -webkit-user-select: none;
8363
+ -moz-user-select: none;
8364
+ user-select: none;
7953
8365
  }
7954
- .timepicker-modal .timepicker-content .timepicker-actions {
7955
- display: flex;
7956
- justify-content: space-between;
7957
- gap: 8px;
7958
- margin-top: 24px;
8366
+
8367
+ .timepicker-canvas,
8368
+ .timepicker-dial {
8369
+ position: absolute;
8370
+ left: 0;
8371
+ right: 0;
8372
+ top: 0;
8373
+ bottom: 0;
7959
8374
  }
7960
- .timepicker-modal .timepicker-content .timepicker-actions > div {
7961
- display: flex;
7962
- gap: 8px;
8375
+
8376
+ .timepicker-minutes {
8377
+ visibility: hidden;
7963
8378
  }
7964
- .timepicker-modal .timepicker-content .timepicker-actions .btn-flat {
7965
- padding: 0 20px;
8379
+
8380
+ .timepicker-tick {
8381
+ border-radius: 50%;
8382
+ color: rgba(0, 0, 0, 0.87);
8383
+ line-height: 40px;
8384
+ text-align: center;
8385
+ width: 40px;
8386
+ height: 40px;
8387
+ position: absolute;
8388
+ cursor: pointer;
8389
+ font-size: 15px;
8390
+ }
8391
+
8392
+ .timepicker-tick.active,
8393
+ .timepicker-tick:hover {
8394
+ background-color: rgba(38, 166, 154, 0.25);
8395
+ }
8396
+
8397
+ .timepicker-dial {
8398
+ transition: transform 350ms, opacity 350ms;
8399
+ }
8400
+
8401
+ .timepicker-dial-out {
8402
+ opacity: 0;
8403
+ }
8404
+ .timepicker-dial-out.timepicker-hours {
8405
+ transform: scale(1.1, 1.1);
8406
+ }
8407
+ .timepicker-dial-out.timepicker-minutes {
8408
+ transform: scale(0.8, 0.8);
8409
+ }
8410
+
8411
+ .timepicker-canvas {
8412
+ transition: opacity 175ms;
8413
+ }
8414
+ .timepicker-canvas line {
8415
+ stroke: #26a69a;
8416
+ stroke-width: 4;
8417
+ stroke-linecap: round;
8418
+ }
8419
+
8420
+ .timepicker-canvas-out {
8421
+ opacity: 0.25;
8422
+ }
8423
+
8424
+ .timepicker-canvas-bearing {
8425
+ stroke: none;
8426
+ fill: #26a69a;
8427
+ }
8428
+
8429
+ .timepicker-canvas-bg {
8430
+ stroke: none;
8431
+ fill: #26a69a;
8432
+ }
8433
+
8434
+ /* Footer */
8435
+ .timepicker-footer {
8436
+ margin: 0 auto;
8437
+ padding: 5px 1rem;
8438
+ display: flex;
8439
+ justify-content: space-between;
8440
+ }
8441
+
8442
+ .timepicker-clear {
8443
+ color: #F44336;
8444
+ }
8445
+
8446
+ .timepicker-close {
8447
+ color: #26a69a;
8448
+ }
8449
+
8450
+ .timepicker-clear,
8451
+ .timepicker-close {
8452
+ padding: 0 20px;
8453
+ }
8454
+
8455
+ /* Media Queries */
8456
+ @media only screen and (min-width : 601px) {
8457
+ .timepicker-modal {
8458
+ max-width: 600px;
8459
+ }
8460
+ .timepicker-container.modal-content {
8461
+ flex-direction: row;
8462
+ }
8463
+ .timepicker-text-container {
8464
+ top: 32%;
8465
+ }
8466
+ .timepicker-display-am-pm {
8467
+ position: relative;
8468
+ right: auto;
8469
+ bottom: auto;
8470
+ text-align: center;
8471
+ margin-top: 1.2rem;
8472
+ }
8473
+ }
8474
+ .theme-switcher {
8475
+ display: flex;
8476
+ align-items: center;
8477
+ gap: 0.5rem;
8478
+ }
8479
+ .theme-switcher .theme-switcher-label {
8480
+ font-size: 0.875rem;
8481
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
8482
+ font-weight: 500;
8483
+ }
8484
+ .theme-switcher .theme-switcher-buttons {
8485
+ display: flex;
8486
+ background: var(--mm-surface-color, #ffffff);
8487
+ border: 1px solid var(--mm-border-color, rgba(0, 0, 0, 0.12));
8488
+ border-radius: 0.5rem;
8489
+ overflow: hidden;
8490
+ }
8491
+ .theme-switcher .theme-switcher-buttons .btn-flat {
8492
+ display: flex;
8493
+ align-items: center;
8494
+ gap: 0.25rem;
8495
+ padding: 0.5rem 0.75rem;
8496
+ margin: 0;
8497
+ border: none;
8498
+ background: transparent;
8499
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
8500
+ font-size: 0.875rem;
8501
+ border-radius: 0;
8502
+ min-width: auto;
8503
+ height: auto;
8504
+ line-height: 1;
8505
+ text-transform: none;
8506
+ transition: all 0.2s ease;
8507
+ cursor: pointer;
8508
+ }
8509
+ .theme-switcher .theme-switcher-buttons .btn-flat:hover {
8510
+ background: var(--mm-border-color, rgba(0, 0, 0, 0.12));
8511
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
8512
+ }
8513
+ .theme-switcher .theme-switcher-buttons .btn-flat.active {
8514
+ background: var(--mm-primary-color, #26a69a);
8515
+ color: var(--mm-button-text, #ffffff);
8516
+ }
8517
+ .theme-switcher .theme-switcher-buttons .btn-flat.active:hover {
8518
+ background: var(--mm-primary-color-dark, #00695c);
8519
+ }
8520
+ .theme-switcher .theme-switcher-buttons .btn-flat .material-icons {
8521
+ font-size: 1rem;
8522
+ }
8523
+ .theme-switcher .theme-switcher-buttons .btn-flat span {
8524
+ font-size: 0.75rem;
8525
+ font-weight: 500;
8526
+ }
8527
+
8528
+ .theme-toggle {
8529
+ width: 2.5rem;
8530
+ height: 2.5rem;
8531
+ border-radius: 50%;
8532
+ display: flex;
8533
+ align-items: center;
8534
+ justify-content: center;
8535
+ background: var(--mm-surface-color, #ffffff);
8536
+ border: 1px solid var(--mm-border-color, rgba(0, 0, 0, 0.12));
8537
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
8538
+ cursor: pointer;
8539
+ transition: all 0.2s ease;
8540
+ }
8541
+ .theme-toggle:hover {
8542
+ background: var(--mm-primary-color, #26a69a);
8543
+ color: var(--mm-button-text, #ffffff);
8544
+ border-color: var(--mm-primary-color, #26a69a);
8545
+ }
8546
+ .theme-toggle .material-icons {
8547
+ font-size: 1.25rem;
8548
+ }
8549
+
8550
+ nav .theme-toggle {
8551
+ background: transparent;
8552
+ border: none;
8553
+ border-radius: 0;
8554
+ width: 64px;
8555
+ height: 64px;
8556
+ }
8557
+ nav .theme-toggle:hover {
8558
+ background: rgba(255, 255, 255, 0.1);
8559
+ border: none;
8560
+ }
8561
+ nav .theme-toggle:focus {
8562
+ background: rgba(255, 255, 255, 0.1);
8563
+ }
8564
+
8565
+ @media (max-width: 600px) {
8566
+ .theme-switcher .theme-switcher-buttons .btn-flat {
8567
+ padding: 0.5rem;
8568
+ }
8569
+ .theme-switcher .theme-switcher-buttons .btn-flat span {
8570
+ display: none;
8571
+ }
8572
+ }
8573
+ .file-upload-container {
8574
+ margin-bottom: 1rem;
8575
+ }
8576
+
8577
+ .file-upload-area {
8578
+ border: 2px dashed var(--mm-border-color, rgba(0, 0, 0, 0.12));
8579
+ border-radius: 0.5rem;
8580
+ padding: 2rem;
8581
+ text-align: center;
8582
+ cursor: pointer;
8583
+ transition: all 0.2s ease;
8584
+ background: var(--mm-input-background, #ffffff);
8585
+ }
8586
+ .file-upload-area:hover:not(.disabled) {
8587
+ border-color: var(--mm-primary-color, #26a69a);
8588
+ background: var(--mm-surface-color, #f5f5f5);
8589
+ }
8590
+ .file-upload-area.drag-over {
8591
+ border-color: var(--mm-primary-color, #26a69a);
8592
+ background: var(--mm-primary-color-light, rgba(38, 166, 154, 0.1));
8593
+ transform: scale(1.02);
8594
+ }
8595
+ .file-upload-area.disabled {
8596
+ opacity: 0.6;
8597
+ cursor: not-allowed;
8598
+ background: var(--mm-border-color, rgba(0, 0, 0, 0.05));
8599
+ }
8600
+ .file-upload-area.error {
8601
+ border-color: #f44336;
8602
+ }
8603
+ .file-upload-area.has-files {
8604
+ padding: 1rem;
8605
+ }
8606
+
8607
+ .file-upload-content .file-upload-icon {
8608
+ font-size: 3rem;
8609
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
8610
+ margin-bottom: 0.5rem;
8611
+ }
8612
+ .file-upload-content .file-upload-label {
8613
+ font-size: 1.1rem;
8614
+ font-weight: 500;
8615
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
8616
+ margin: 0.5rem 0;
8617
+ }
8618
+ .file-upload-content .file-upload-helper {
8619
+ font-size: 0.875rem;
8620
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
8621
+ margin: 0.25rem 0;
8622
+ }
8623
+ .file-upload-content .file-upload-types {
8624
+ font-size: 0.75rem;
8625
+ color: var(--mm-text-hint, rgba(0, 0, 0, 0.38));
8626
+ margin: 0.25rem 0 0 0;
8627
+ font-style: italic;
8628
+ }
8629
+
8630
+ .file-upload-error {
8631
+ color: #f44336;
8632
+ font-size: 0.875rem;
8633
+ margin-top: 0.5rem;
8634
+ text-align: left;
8635
+ }
8636
+
8637
+ .file-upload-list {
8638
+ margin-top: 1rem;
8639
+ }
8640
+ .file-upload-list h6 {
8641
+ margin: 0 0 0.5rem 0;
8642
+ font-size: 0.875rem;
8643
+ font-weight: 600;
8644
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
8645
+ }
8646
+
8647
+ .file-upload-item {
8648
+ display: flex;
8649
+ align-items: center;
8650
+ gap: 1rem;
8651
+ padding: 0.75rem;
8652
+ margin-bottom: 0.5rem;
8653
+ background: var(--mm-surface-color, #ffffff);
8654
+ border: 1px solid var(--mm-border-color, rgba(0, 0, 0, 0.12));
8655
+ border-radius: 0.5rem;
8656
+ transition: all 0.2s ease;
8657
+ }
8658
+ .file-upload-item:hover {
8659
+ background: var(--mm-card-background, #f5f5f5);
8660
+ }
8661
+ .file-upload-item .file-preview {
8662
+ flex-shrink: 0;
8663
+ width: 3rem;
8664
+ height: 3rem;
8665
+ border-radius: 0.25rem;
8666
+ overflow: hidden;
8667
+ background: var(--mm-border-color, rgba(0, 0, 0, 0.05));
8668
+ }
8669
+ .file-upload-item .file-preview img {
8670
+ width: 100%;
8671
+ height: 100%;
8672
+ -o-object-fit: cover;
8673
+ object-fit: cover;
8674
+ }
8675
+ .file-upload-item .file-info {
8676
+ flex: 1;
8677
+ min-width: 0;
8678
+ }
8679
+ .file-upload-item .file-info .file-name {
8680
+ font-weight: 500;
8681
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
8682
+ margin-bottom: 0.25rem;
8683
+ overflow: hidden;
8684
+ text-overflow: ellipsis;
8685
+ white-space: nowrap;
8686
+ }
8687
+ .file-upload-item .file-info .file-details {
8688
+ display: flex;
8689
+ gap: 1rem;
8690
+ font-size: 0.75rem;
8691
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
8692
+ }
8693
+ .file-upload-item .file-info .file-progress {
8694
+ margin-top: 0.5rem;
8695
+ }
8696
+ .file-upload-item .file-info .file-progress .progress {
8697
+ height: 0.25rem;
8698
+ background-color: var(--mm-border-color, rgba(0, 0, 0, 0.12));
8699
+ border-radius: 0.125rem;
8700
+ overflow: hidden;
8701
+ }
8702
+ .file-upload-item .file-info .file-progress .progress .determinate {
8703
+ background-color: var(--mm-primary-color, #26a69a);
8704
+ height: 100%;
8705
+ transition: width 0.3s ease;
8706
+ }
8707
+ .file-upload-item .file-info .file-error {
8708
+ color: #f44336;
8709
+ font-size: 0.75rem;
8710
+ margin-top: 0.25rem;
8711
+ }
8712
+ .file-upload-item .file-remove {
8713
+ flex-shrink: 0;
8714
+ width: 2rem;
8715
+ height: 2rem;
8716
+ border-radius: 50%;
8717
+ display: flex;
8718
+ align-items: center;
8719
+ justify-content: center;
8720
+ background: transparent;
8721
+ border: none;
8722
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
8723
+ cursor: pointer;
8724
+ transition: all 0.2s ease;
8725
+ }
8726
+ .file-upload-item .file-remove:hover {
8727
+ background: rgba(244, 67, 54, 0.1);
8728
+ color: #f44336;
8729
+ }
8730
+ .file-upload-item .file-remove .material-icons {
8731
+ font-size: 1.25rem;
8732
+ }
8733
+
8734
+ @media (max-width: 600px) {
8735
+ .file-upload-area {
8736
+ padding: 1.5rem 1rem;
8737
+ }
8738
+ .file-upload-area .file-upload-content .file-upload-icon {
8739
+ font-size: 2.5rem;
8740
+ }
8741
+ .file-upload-area .file-upload-content .file-upload-label {
8742
+ font-size: 1rem;
8743
+ }
8744
+ .file-upload-item {
8745
+ gap: 0.75rem;
8746
+ padding: 0.5rem;
8747
+ }
8748
+ .file-upload-item .file-preview {
8749
+ width: 2.5rem;
8750
+ height: 2.5rem;
8751
+ }
8752
+ .file-upload-item .file-info .file-details {
8753
+ flex-direction: column;
8754
+ gap: 0.25rem;
8755
+ }
8756
+ }
8757
+ [data-theme=dark] .file-upload-area.drag-over {
8758
+ background: var(--mm-primary-color-dark, rgba(38, 166, 154, 0.2));
8759
+ }
8760
+
8761
+ .breadcrumb {
8762
+ padding: 1rem 0;
8763
+ margin-bottom: 1rem;
8764
+ background: transparent;
8765
+ display: flex;
8766
+ align-items: center;
8767
+ min-height: 2rem;
8768
+ }
8769
+ .breadcrumb .breadcrumb-list {
8770
+ display: flex;
8771
+ align-items: center;
8772
+ flex-wrap: wrap;
8773
+ list-style: none;
8774
+ padding: 0;
8775
+ margin: 0;
8776
+ gap: 0.5rem;
8777
+ width: 100%;
8778
+ }
8779
+
8780
+ .breadcrumb-item {
8781
+ display: flex;
8782
+ align-items: center;
8783
+ font-size: 0.875rem;
8784
+ line-height: 1.5;
8785
+ }
8786
+ .breadcrumb-item.active .breadcrumb-text {
8787
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
8788
+ font-weight: 500;
8789
+ }
8790
+ .breadcrumb-item.disabled .breadcrumb-text {
8791
+ color: var(--mm-text-disabled, rgba(0, 0, 0, 0.38));
8792
+ cursor: not-allowed;
8793
+ }
8794
+ .breadcrumb-item.breadcrumb-ellipsis .breadcrumb-text {
8795
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
8796
+ font-weight: 400;
8797
+ -webkit-user-select: none;
8798
+ -moz-user-select: none;
8799
+ user-select: none;
8800
+ }
8801
+
8802
+ .breadcrumb-link {
8803
+ display: flex;
8804
+ align-items: center;
8805
+ color: var(--mm-primary-color, #26a69a);
8806
+ text-decoration: none;
8807
+ transition: color 0.2s ease;
8808
+ padding: 0.25rem 0.5rem;
8809
+ border-radius: 4px;
8810
+ }
8811
+ .breadcrumb-link:hover {
8812
+ color: var(--mm-primary-color-dark, #00695c);
8813
+ text-decoration: underline;
8814
+ background: var(--mm-primary-color-light, rgba(38, 166, 154, 0.1));
8815
+ }
8816
+ .breadcrumb-link:focus {
8817
+ outline: 2px solid var(--mm-primary-color, #26a69a);
8818
+ outline-offset: 2px;
8819
+ border-radius: 2px;
8820
+ }
8821
+
8822
+ .breadcrumb-text {
8823
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
8824
+ font-weight: 400;
8825
+ line-height: inherit;
8826
+ overflow: hidden;
8827
+ text-overflow: ellipsis;
8828
+ white-space: nowrap;
8829
+ max-width: 200px;
8830
+ }
8831
+
8832
+ .breadcrumb-icon {
8833
+ font-size: 1.125rem;
8834
+ width: 18px;
8835
+ height: 18px;
8836
+ margin-right: 0.5rem;
8837
+ flex-shrink: 0;
8838
+ color: inherit;
8839
+ display: flex;
8840
+ align-items: center;
8841
+ justify-content: center;
8842
+ }
8843
+
8844
+ .breadcrumb-separator {
8845
+ display: flex;
8846
+ align-items: center;
8847
+ justify-content: center;
8848
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
8849
+ -webkit-user-select: none;
8850
+ -moz-user-select: none;
8851
+ user-select: none;
8852
+ height: 18px;
8853
+ }
8854
+ .breadcrumb-separator .material-icons {
8855
+ font-size: 1.125rem;
8856
+ width: 18px;
8857
+ height: 18px;
8858
+ line-height: 18px;
8859
+ }
8860
+
8861
+ .breadcrumb.compact {
8862
+ padding: 0.25rem 0;
8863
+ margin-bottom: 0.5rem;
8864
+ }
8865
+ .breadcrumb.compact .breadcrumb-item {
8866
+ font-size: 0.75rem;
8867
+ }
8868
+ .breadcrumb.compact .breadcrumb-icon {
8869
+ font-size: 0.875rem;
8870
+ width: 14px;
8871
+ height: 14px;
8872
+ }
8873
+ .breadcrumb.compact .breadcrumb-separator .material-icons {
8874
+ font-size: 0.875rem;
8875
+ width: 14px;
8876
+ height: 14px;
8877
+ }
8878
+
8879
+ .breadcrumb.large {
8880
+ padding: 0.75rem 0;
8881
+ margin-bottom: 1.5rem;
8882
+ }
8883
+ .breadcrumb.large .breadcrumb-item {
8884
+ font-size: 1rem;
8885
+ }
8886
+ .breadcrumb.large .breadcrumb-icon {
8887
+ font-size: 1.125rem;
8888
+ width: 18px;
8889
+ height: 18px;
8890
+ }
8891
+ .breadcrumb.large .breadcrumb-separator .material-icons {
8892
+ font-size: 1.125rem;
8893
+ width: 18px;
8894
+ height: 18px;
8895
+ }
8896
+
8897
+ @media (max-width: 600px) {
8898
+ .breadcrumb .breadcrumb-list {
8899
+ gap: 0.125rem;
8900
+ }
8901
+ .breadcrumb .breadcrumb-item {
8902
+ font-size: 0.75rem;
8903
+ }
8904
+ .breadcrumb .breadcrumb-text {
8905
+ max-width: 120px;
8906
+ }
8907
+ .breadcrumb .breadcrumb-icon {
8908
+ font-size: 0.875rem;
8909
+ width: 14px;
8910
+ height: 14px;
8911
+ margin-right: 0.125rem;
8912
+ }
8913
+ .breadcrumb .breadcrumb-separator .material-icons {
8914
+ font-size: 0.875rem;
8915
+ width: 14px;
8916
+ height: 14px;
8917
+ }
8918
+ }
8919
+ [data-theme=dark] .breadcrumb-link {
8920
+ color: var(--mm-primary-color, #80cbc4);
8921
+ }
8922
+ [data-theme=dark] .breadcrumb-link:hover {
8923
+ color: var(--mm-primary-color-light, #b2dfdb);
8924
+ }
8925
+
8926
+ .breadcrumb.slash-separator .breadcrumb-separator {
8927
+ font-family: monospace;
8928
+ font-size: 0.875rem;
8929
+ }
8930
+ .breadcrumb.slash-separator .breadcrumb-separator .material-icons {
8931
+ display: none;
8932
+ }
8933
+ .breadcrumb.slash-separator .breadcrumb-separator::before {
8934
+ content: "/";
8935
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
8936
+ }
8937
+
8938
+ .breadcrumb.dot-separator .breadcrumb-separator .material-icons {
8939
+ display: none;
8940
+ }
8941
+ .breadcrumb.dot-separator .breadcrumb-separator::before {
8942
+ content: "•";
8943
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
8944
+ font-size: 1rem;
8945
+ }
8946
+
8947
+ .breadcrumb:not([aria-label]) {
8948
+ aria-label: "Breadcrumb navigation";
8949
+ }
8950
+
8951
+ .breadcrumb-link[aria-current=page] {
8952
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
8953
+ text-decoration: none;
8954
+ font-weight: 500;
8955
+ }
8956
+ .breadcrumb-link[aria-current=page]:hover {
8957
+ text-decoration: none;
8958
+ }
8959
+
8960
+ .wizard {
8961
+ display: flex;
8962
+ flex-direction: column;
8963
+ width: 100%;
8964
+ }
8965
+ .wizard.horizontal .wizard-steps {
8966
+ display: flex;
8967
+ align-items: flex-start;
8968
+ justify-content: space-between;
8969
+ position: relative;
8970
+ }
8971
+ .wizard.horizontal .wizard-step {
8972
+ display: flex;
8973
+ flex-direction: column;
8974
+ align-items: center;
8975
+ text-align: center;
8976
+ flex: 1;
8977
+ position: relative;
8978
+ }
8979
+ .wizard.horizontal .wizard-step:not(:last-child) {
8980
+ margin-right: 2rem;
8981
+ }
8982
+ .wizard.horizontal .wizard-step-content {
8983
+ margin-top: 0.75rem;
8984
+ max-width: 200px;
8985
+ }
8986
+ .wizard.horizontal .wizard-step-connector {
8987
+ position: absolute;
8988
+ top: 20px;
8989
+ left: calc(50% + 20px);
8990
+ width: calc(100% - 40px);
8991
+ height: 2px;
8992
+ background: var(--mm-border-color, rgba(0, 0, 0, 0.12));
8993
+ z-index: 1;
8994
+ }
8995
+ .wizard.vertical .wizard-steps {
8996
+ display: flex;
8997
+ flex-direction: column;
8998
+ }
8999
+ .wizard.vertical .wizard-step {
9000
+ display: flex;
9001
+ align-items: flex-start;
9002
+ text-align: left;
9003
+ position: relative;
9004
+ padding-bottom: 2rem;
9005
+ }
9006
+ .wizard.vertical .wizard-step:last-child {
9007
+ padding-bottom: 0;
9008
+ }
9009
+ .wizard.vertical .wizard-step-content {
9010
+ margin-left: 1rem;
9011
+ flex: 1;
9012
+ }
9013
+ .wizard.vertical .wizard-step-connector {
9014
+ position: absolute;
9015
+ top: 40px;
9016
+ left: 19px;
9017
+ bottom: -2rem;
9018
+ width: 2px;
9019
+ background: var(--mm-border-color, rgba(0, 0, 0, 0.12));
9020
+ z-index: 1;
9021
+ }
9022
+
9023
+ .wizard-header {
9024
+ margin-bottom: 2rem;
9025
+ }
9026
+
9027
+ .wizard-step {
9028
+ cursor: pointer;
9029
+ transition: opacity 0.2s ease;
9030
+ }
9031
+ .wizard-step.disabled {
9032
+ opacity: 0.6;
9033
+ cursor: not-allowed;
9034
+ }
9035
+ .wizard-step:hover:not(.disabled) .wizard-step-indicator {
9036
+ box-shadow: 0 0 0 8px var(--mm-primary-color-light, rgba(38, 166, 154, 0.1));
9037
+ }
9038
+
9039
+ .wizard-step-indicator {
9040
+ width: 40px;
9041
+ height: 40px;
9042
+ border-radius: 50%;
9043
+ display: flex;
9044
+ align-items: center;
9045
+ justify-content: center;
9046
+ background: var(--mm-border-color, rgba(0, 0, 0, 0.12));
9047
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
9048
+ font-weight: 500;
9049
+ font-size: 0.875rem;
9050
+ transition: all 0.2s ease;
9051
+ position: relative;
9052
+ z-index: 2;
9053
+ }
9054
+ .wizard-step-indicator .material-icons {
9055
+ font-size: 1.25rem;
9056
+ }
9057
+ .wizard-step-indicator .wizard-step-number {
9058
+ font-weight: 600;
9059
+ }
9060
+
9061
+ .wizard-step.active .wizard-step-indicator {
9062
+ background: var(--mm-primary-color, #26a69a);
9063
+ color: var(--mm-button-text, #ffffff);
9064
+ }
9065
+ .wizard-step.active .wizard-step-title {
9066
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
9067
+ font-weight: 600;
9068
+ }
9069
+
9070
+ .wizard-step.completed .wizard-step-indicator {
9071
+ background: var(--mm-primary-color, #26a69a);
9072
+ color: var(--mm-button-text, #ffffff);
9073
+ }
9074
+ .wizard-step.completed .wizard-step-connector {
9075
+ background: var(--mm-primary-color, #26a69a);
9076
+ }
9077
+
9078
+ .wizard-step.error .wizard-step-indicator {
9079
+ background: #f44336;
9080
+ color: #ffffff;
9081
+ }
9082
+ .wizard-step.error .wizard-step-title {
9083
+ color: #f44336;
9084
+ }
9085
+
9086
+ .wizard-step-title {
9087
+ font-size: 0.875rem;
9088
+ font-weight: 500;
9089
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
9090
+ margin-bottom: 0.25rem;
9091
+ line-height: 1.3;
9092
+ }
9093
+
9094
+ .wizard-step-subtitle {
9095
+ font-size: 0.75rem;
9096
+ color: var(--mm-text-hint, rgba(0, 0, 0, 0.38));
9097
+ line-height: 1.3;
9098
+ margin-bottom: 0.25rem;
9099
+ }
9100
+
9101
+ .wizard-step-optional {
9102
+ font-size: 0.625rem;
9103
+ color: var(--mm-text-hint, rgba(0, 0, 0, 0.38));
9104
+ font-style: italic;
9105
+ text-transform: uppercase;
9106
+ letter-spacing: 0.5px;
9107
+ }
9108
+
9109
+ .wizard-body {
9110
+ flex: 1;
9111
+ margin-bottom: 2rem;
9112
+ }
9113
+ .wizard-body .input-field {
9114
+ margin-bottom: 1.5rem;
9115
+ }
9116
+ .wizard-body .input-field input, .wizard-body .input-field textarea {
9117
+ width: 100%;
9118
+ box-sizing: border-box;
9119
+ }
9120
+ .wizard-body .input-field label {
9121
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
9122
+ transition: all 0.3s ease;
9123
+ }
9124
+ .wizard-body .input-field label.active {
9125
+ color: var(--mm-primary-color, #26a69a);
9126
+ transform: translateY(-14px) scale(0.8);
9127
+ }
9128
+ .wizard-body .row {
9129
+ margin-bottom: 0;
9130
+ }
9131
+ .wizard-body .row .col {
9132
+ padding: 0 0.75rem;
9133
+ }
9134
+ .wizard-body .row .col:first-child {
9135
+ padding-left: 0;
9136
+ }
9137
+ .wizard-body .row .col:last-child {
9138
+ padding-right: 0;
9139
+ }
9140
+
9141
+ .wizard-step-panel {
9142
+ animation: wizard-slide-in 0.3s ease;
9143
+ }
9144
+
9145
+ @keyframes wizard-slide-in {
9146
+ from {
9147
+ opacity: 0;
9148
+ transform: translateX(20px);
9149
+ }
9150
+ to {
9151
+ opacity: 1;
9152
+ transform: translateX(0);
9153
+ }
9154
+ }
9155
+ .wizard-footer {
9156
+ border-top: 1px solid var(--mm-border-color, rgba(0, 0, 0, 0.12));
9157
+ padding-top: 1.5rem;
9158
+ }
9159
+
9160
+ .wizard-navigation {
9161
+ display: flex;
9162
+ justify-content: space-between;
9163
+ align-items: center;
9164
+ gap: 1rem;
9165
+ }
9166
+ .wizard-navigation .wizard-btn-previous,
9167
+ .wizard-navigation .wizard-btn-skip {
9168
+ margin-right: auto;
9169
+ }
9170
+ .wizard-navigation .wizard-btn-next,
9171
+ .wizard-navigation .wizard-btn-complete {
9172
+ margin-left: auto;
9173
+ }
9174
+ .wizard-navigation .wizard-btn-next .material-icons,
9175
+ .wizard-navigation .wizard-btn-complete .material-icons {
9176
+ margin-right: 0.5rem;
9177
+ animation: wizard-loading 1s infinite linear;
9178
+ }
9179
+
9180
+ @keyframes wizard-loading {
9181
+ from {
9182
+ transform: rotate(0deg);
9183
+ }
9184
+ to {
9185
+ transform: rotate(360deg);
9186
+ }
9187
+ }
9188
+ .wizard.compact .wizard-step-indicator {
9189
+ width: 32px;
9190
+ height: 32px;
9191
+ font-size: 0.75rem;
9192
+ }
9193
+ .wizard.compact .wizard-step-indicator .material-icons {
9194
+ font-size: 1rem;
9195
+ }
9196
+ .wizard.compact .wizard-step-title {
9197
+ font-size: 0.75rem;
9198
+ }
9199
+ .wizard.compact .wizard-step-subtitle {
9200
+ font-size: 0.625rem;
9201
+ }
9202
+ .wizard.compact .wizard-header {
9203
+ margin-bottom: 1.5rem;
9204
+ }
9205
+ .wizard.compact.horizontal .wizard-step-connector {
9206
+ top: 16px;
9207
+ }
9208
+ .wizard.compact.vertical .wizard-step-connector {
9209
+ top: 32px;
9210
+ left: 15px;
9211
+ }
9212
+
9213
+ .wizard.large .wizard-step-indicator {
9214
+ width: 48px;
9215
+ height: 48px;
9216
+ font-size: 1rem;
9217
+ }
9218
+ .wizard.large .wizard-step-indicator .material-icons {
9219
+ font-size: 1.5rem;
9220
+ }
9221
+ .wizard.large .wizard-step-title {
9222
+ font-size: 1rem;
9223
+ }
9224
+ .wizard.large .wizard-step-subtitle {
9225
+ font-size: 0.875rem;
9226
+ }
9227
+ .wizard.large .wizard-header {
9228
+ margin-bottom: 2.5rem;
9229
+ }
9230
+ .wizard.large.horizontal .wizard-step-connector {
9231
+ top: 24px;
9232
+ }
9233
+ .wizard.large.vertical .wizard-step-connector {
9234
+ top: 48px;
9235
+ left: 23px;
9236
+ }
9237
+
9238
+ @media (max-width: 768px) {
9239
+ .wizard.horizontal .wizard-steps {
9240
+ flex-direction: column;
9241
+ align-items: stretch;
9242
+ }
9243
+ .wizard.horizontal .wizard-step {
9244
+ flex-direction: row;
9245
+ align-items: center;
9246
+ text-align: left;
9247
+ margin-right: 0;
9248
+ margin-bottom: 1rem;
9249
+ }
9250
+ .wizard.horizontal .wizard-step:last-child {
9251
+ margin-bottom: 0;
9252
+ }
9253
+ .wizard.horizontal .wizard-step-content {
9254
+ margin-top: 0;
9255
+ margin-left: 1rem;
9256
+ max-width: none;
9257
+ }
9258
+ .wizard.horizontal .wizard-step-connector {
9259
+ display: none;
9260
+ }
9261
+ }
9262
+ [data-theme=dark] .wizard-step.error .wizard-step-title {
9263
+ color: #f48fb1;
9264
+ }
9265
+ [data-theme=dark] .wizard-step.error .wizard-step-indicator {
9266
+ background: #f48fb1;
9267
+ color: #000000;
9268
+ }
9269
+ [data-theme=dark] .wizard-footer {
9270
+ border-color: var(--mm-border-color, rgba(255, 255, 255, 0.12));
9271
+ }
9272
+
9273
+ .wizard-step:focus {
9274
+ outline: 2px solid var(--mm-primary-color, #26a69a);
9275
+ outline-offset: 2px;
9276
+ border-radius: 4px;
9277
+ }
9278
+ .wizard-step[aria-disabled=true] {
9279
+ pointer-events: none;
7966
9280
  }
7967
9281
 
7968
- /* Legacy styles kept for applications using old Materialize TimePicker */
9282
+ .wizard-step-indicator[aria-current=step] {
9283
+ box-shadow: 0 0 0 4px var(--mm-primary-color-light, rgba(38, 166, 154, 0.2));
9284
+ }