mithril-materialized 2.0.0-beta.1 → 2.0.0-beta.11
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.
- package/README.md +287 -308
- package/dist/advanced.css +1888 -0
- package/dist/autocomplete.d.ts +3 -3
- package/dist/breadcrumb.d.ts +53 -0
- package/dist/button.d.ts +66 -21
- package/dist/carousel.d.ts +2 -2
- package/dist/chip.d.ts +2 -2
- package/dist/code-block.d.ts +2 -2
- package/dist/collapsible.d.ts +2 -2
- package/dist/collection.d.ts +2 -2
- package/dist/components.css +2310 -0
- package/dist/core.css +3402 -0
- package/dist/datatable.d.ts +291 -0
- package/dist/datepicker.d.ts +66 -0
- package/dist/dropdown.d.ts +2 -2
- package/dist/file-upload.d.ts +34 -0
- package/dist/floating-action-button.d.ts +2 -2
- package/dist/forms.css +2284 -0
- package/dist/index.css +1825 -184
- package/dist/index.d.ts +14 -1
- package/dist/index.esm.js +4752 -2143
- package/dist/index.js +4776 -2142
- package/dist/index.min.css +8 -0
- package/dist/index.umd.js +4776 -2142
- package/dist/input-options.d.ts +1 -1
- package/dist/input.d.ts +9 -10
- package/dist/label.d.ts +4 -2
- package/dist/material-box.d.ts +2 -2
- package/dist/modal.d.ts +2 -2
- package/dist/option.d.ts +4 -4
- package/dist/pagination.d.ts +2 -2
- package/dist/parallax.d.ts +2 -2
- package/dist/pickers.css +487 -0
- package/dist/pushpin.d.ts +32 -0
- package/dist/radio.d.ts +4 -4
- package/dist/search-select.d.ts +2 -2
- package/dist/select.d.ts +2 -2
- package/dist/sidenav.d.ts +76 -0
- package/dist/switch.d.ts +2 -2
- package/dist/tabs.d.ts +2 -4
- package/dist/theme-switcher.d.ts +49 -0
- package/dist/timepicker.d.ts +42 -0
- package/dist/toast.d.ts +45 -0
- package/dist/tooltip.d.ts +59 -0
- package/dist/types.d.ts +226 -0
- package/dist/utilities.css +3204 -0
- package/dist/wizard.d.ts +58 -0
- package/package.json +20 -9
- package/sass/components/_breadcrumb.scss +248 -0
- package/sass/components/_buttons.scss +3 -3
- package/sass/components/_cards.scss +10 -3
- package/sass/components/_chips.scss +8 -8
- package/sass/components/_collapsible.scss +8 -8
- package/sass/components/_datatable.scss +417 -0
- package/sass/components/_datepicker.scss +45 -14
- package/sass/components/_dropdown.scss +5 -5
- package/sass/components/_file-upload.scss +228 -0
- package/sass/components/_global.scss +13 -11
- package/sass/components/_modal.scss +5 -2
- package/sass/components/_navbar.scss +13 -5
- package/sass/components/_sidenav.scss +164 -7
- package/sass/components/_tabs.scss +5 -4
- package/sass/components/_theme-switcher.scss +120 -0
- package/sass/components/_theme-variables.scss +205 -0
- package/sass/components/_timepicker.scss +179 -87
- package/sass/components/_wizard.scss +416 -0
- package/sass/components/forms/_input-fields.scss +34 -12
- package/sass/components/forms/_radio-buttons.scss +10 -10
- package/sass/components/forms/_range.scss +5 -5
- package/sass/components/forms/_select.scss +9 -9
- package/sass/components/forms/_switches.scss +6 -6
- package/sass/materialize.scss +8 -0
- package/dist/pickers.d.ts +0 -130
package/dist/index.css
CHANGED
|
@@ -1,4 +1,144 @@
|
|
|
1
|
-
|
|
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
|
}
|
|
@@ -2662,21 +2802,21 @@ video.responsive-video {
|
|
|
2662
2802
|
height: 30px;
|
|
2663
2803
|
}
|
|
2664
2804
|
.pagination li a {
|
|
2665
|
-
color: #444;
|
|
2805
|
+
color: var(--mm-text-primary, #444);
|
|
2666
2806
|
display: inline-block;
|
|
2667
2807
|
font-size: 1.2rem;
|
|
2668
2808
|
padding: 0 10px;
|
|
2669
2809
|
line-height: 30px;
|
|
2670
2810
|
}
|
|
2671
2811
|
.pagination li.active a {
|
|
2672
|
-
color: #fff;
|
|
2812
|
+
color: var(--mm-text-on-primary, #fff);
|
|
2673
2813
|
}
|
|
2674
2814
|
.pagination li.active {
|
|
2675
2815
|
background-color: #ee6e73;
|
|
2676
2816
|
}
|
|
2677
2817
|
.pagination li.disabled a {
|
|
2678
2818
|
cursor: default;
|
|
2679
|
-
color: #999;
|
|
2819
|
+
color: var(--mm-text-disabled, #999);
|
|
2680
2820
|
}
|
|
2681
2821
|
.pagination li i {
|
|
2682
2822
|
font-size: 2rem;
|
|
@@ -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;
|
|
@@ -3006,8 +3147,8 @@ td, th {
|
|
|
3006
3147
|
.collection .collection-item.avatar i.circle {
|
|
3007
3148
|
font-size: 18px;
|
|
3008
3149
|
line-height: 42px;
|
|
3009
|
-
color: #fff;
|
|
3010
|
-
background-color: #999;
|
|
3150
|
+
color: var(--mm-text-on-primary, #fff);
|
|
3151
|
+
background-color: var(--mm-text-disabled, #999);
|
|
3011
3152
|
text-align: center;
|
|
3012
3153
|
}
|
|
3013
3154
|
.collection .collection-item.avatar .title {
|
|
@@ -3029,7 +3170,7 @@ td, th {
|
|
|
3029
3170
|
color: rgb(234.25, 250.25, 248.75);
|
|
3030
3171
|
}
|
|
3031
3172
|
.collection .collection-item.active .secondary-content {
|
|
3032
|
-
color: #fff;
|
|
3173
|
+
color: var(--mm-text-on-primary, #fff);
|
|
3033
3174
|
}
|
|
3034
3175
|
.collection a.collection-item {
|
|
3035
3176
|
display: block;
|
|
@@ -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
|
-
|
|
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 {
|
|
@@ -4435,13 +4583,15 @@ small {
|
|
|
4435
4583
|
padding: 24px;
|
|
4436
4584
|
margin: 0.5rem 0 1rem 0;
|
|
4437
4585
|
border-radius: 2px;
|
|
4438
|
-
background-color: #fff;
|
|
4586
|
+
background-color: var(--mm-card-background, #fff);
|
|
4587
|
+
color: var(--mm-text-primary);
|
|
4439
4588
|
}
|
|
4440
4589
|
|
|
4441
4590
|
.card {
|
|
4442
4591
|
position: relative;
|
|
4443
4592
|
margin: 0.5rem 0 1rem 0;
|
|
4444
|
-
background-color: #fff;
|
|
4593
|
+
background-color: var(--mm-card-background, #fff);
|
|
4594
|
+
color: var(--mm-text-primary);
|
|
4445
4595
|
transition: box-shadow 0.25s;
|
|
4446
4596
|
border-radius: 2px;
|
|
4447
4597
|
}
|
|
@@ -4540,6 +4690,8 @@ small {
|
|
|
4540
4690
|
.card .card-content {
|
|
4541
4691
|
padding: 24px;
|
|
4542
4692
|
border-radius: 0 0 2px 2px;
|
|
4693
|
+
background-color: var(--mm-card-background, #fff);
|
|
4694
|
+
color: var(--mm-text-primary);
|
|
4543
4695
|
}
|
|
4544
4696
|
.card .card-content p {
|
|
4545
4697
|
margin: 0;
|
|
@@ -4548,6 +4700,7 @@ small {
|
|
|
4548
4700
|
display: block;
|
|
4549
4701
|
line-height: 32px;
|
|
4550
4702
|
margin-bottom: 8px;
|
|
4703
|
+
color: var(--mm-text-primary);
|
|
4551
4704
|
}
|
|
4552
4705
|
.card .card-content .card-title i {
|
|
4553
4706
|
line-height: 32px;
|
|
@@ -4573,7 +4726,8 @@ small {
|
|
|
4573
4726
|
.card .card-reveal {
|
|
4574
4727
|
padding: 24px;
|
|
4575
4728
|
position: absolute;
|
|
4576
|
-
background-color: #fff;
|
|
4729
|
+
background-color: var(--mm-card-background, #fff);
|
|
4730
|
+
color: var(--mm-text-primary);
|
|
4577
4731
|
width: 100%;
|
|
4578
4732
|
overflow-y: auto;
|
|
4579
4733
|
left: 0;
|
|
@@ -4585,6 +4739,7 @@ small {
|
|
|
4585
4739
|
.card .card-reveal .card-title {
|
|
4586
4740
|
cursor: pointer;
|
|
4587
4741
|
display: block;
|
|
4742
|
+
color: var(--mm-text-primary);
|
|
4588
4743
|
}
|
|
4589
4744
|
|
|
4590
4745
|
#toast-container {
|
|
@@ -4655,7 +4810,8 @@ small {
|
|
|
4655
4810
|
overflow-y: hidden;
|
|
4656
4811
|
height: 48px;
|
|
4657
4812
|
width: 100%;
|
|
4658
|
-
background-color: #fff;
|
|
4813
|
+
background-color: var(--mm-background-color, #fff);
|
|
4814
|
+
color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
|
|
4659
4815
|
margin: 0 auto;
|
|
4660
4816
|
white-space: nowrap;
|
|
4661
4817
|
}
|
|
@@ -4690,7 +4846,7 @@ small {
|
|
|
4690
4846
|
text-transform: uppercase;
|
|
4691
4847
|
}
|
|
4692
4848
|
.tabs .tab a {
|
|
4693
|
-
color: rgba(238, 110, 115, 0.7);
|
|
4849
|
+
color: var(--mm-text-secondary, rgba(238, 110, 115, 0.7));
|
|
4694
4850
|
display: block;
|
|
4695
4851
|
width: 100%;
|
|
4696
4852
|
height: 100%;
|
|
@@ -4706,10 +4862,10 @@ small {
|
|
|
4706
4862
|
}
|
|
4707
4863
|
.tabs .tab a:hover, .tabs .tab a.active {
|
|
4708
4864
|
background-color: transparent;
|
|
4709
|
-
color: #ee6e73;
|
|
4865
|
+
color: var(--mm-primary-color, #ee6e73);
|
|
4710
4866
|
}
|
|
4711
4867
|
.tabs .tab.disabled a, .tabs .tab.disabled a:hover {
|
|
4712
|
-
color: rgba(238, 110, 115, 0.4);
|
|
4868
|
+
color: var(--mm-text-disabled, rgba(238, 110, 115, 0.4));
|
|
4713
4869
|
cursor: default;
|
|
4714
4870
|
}
|
|
4715
4871
|
.tabs .indicator {
|
|
@@ -5034,7 +5190,7 @@ button.btn-floating {
|
|
|
5034
5190
|
.btn-flat {
|
|
5035
5191
|
box-shadow: none;
|
|
5036
5192
|
background-color: transparent;
|
|
5037
|
-
color: #343434;
|
|
5193
|
+
color: var(--mm-button-flat-text, #343434);
|
|
5038
5194
|
cursor: pointer;
|
|
5039
5195
|
transition: background-color 0.2s;
|
|
5040
5196
|
}
|
|
@@ -5042,11 +5198,11 @@ button.btn-floating {
|
|
|
5042
5198
|
box-shadow: none;
|
|
5043
5199
|
}
|
|
5044
5200
|
.btn-flat:focus {
|
|
5045
|
-
background-color: rgba(0, 0, 0, 0.1);
|
|
5201
|
+
background-color: var(--mm-border-color, rgba(0, 0, 0, 0.1));
|
|
5046
5202
|
}
|
|
5047
5203
|
.btn-flat.disabled, .btn-flat.btn-flat[disabled] {
|
|
5048
5204
|
background-color: transparent !important;
|
|
5049
|
-
color: rgb(178.5, 178.5, 178.5) !important;
|
|
5205
|
+
color: var(--mm-text-disabled, rgb(178.5, 178.5, 178.5)) !important;
|
|
5050
5206
|
cursor: default;
|
|
5051
5207
|
}
|
|
5052
5208
|
|
|
@@ -5074,7 +5230,7 @@ button.btn-floating {
|
|
|
5074
5230
|
}
|
|
5075
5231
|
|
|
5076
5232
|
.dropdown-content {
|
|
5077
|
-
background-color: #fff;
|
|
5233
|
+
background-color: var(--mm-surface-color, #fff);
|
|
5078
5234
|
margin: 0;
|
|
5079
5235
|
display: none;
|
|
5080
5236
|
min-width: 100px;
|
|
@@ -5091,7 +5247,7 @@ button.btn-floating {
|
|
|
5091
5247
|
}
|
|
5092
5248
|
.dropdown-content li {
|
|
5093
5249
|
clear: both;
|
|
5094
|
-
color: rgba(0, 0, 0, 0.87);
|
|
5250
|
+
color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
|
|
5095
5251
|
cursor: pointer;
|
|
5096
5252
|
min-height: 50px;
|
|
5097
5253
|
line-height: 1.5rem;
|
|
@@ -5099,7 +5255,7 @@ button.btn-floating {
|
|
|
5099
5255
|
text-align: left;
|
|
5100
5256
|
}
|
|
5101
5257
|
.dropdown-content li:hover, .dropdown-content li.active {
|
|
5102
|
-
background-color: #eee;
|
|
5258
|
+
background-color: var(--mm-dropdown-hover, #eee);
|
|
5103
5259
|
}
|
|
5104
5260
|
.dropdown-content li:focus {
|
|
5105
5261
|
outline: none;
|
|
@@ -5110,7 +5266,7 @@ button.btn-floating {
|
|
|
5110
5266
|
}
|
|
5111
5267
|
.dropdown-content li > a, .dropdown-content li > span {
|
|
5112
5268
|
font-size: 16px;
|
|
5113
|
-
color: #26a69a;
|
|
5269
|
+
color: var(--mm-text-primary, #26a69a);
|
|
5114
5270
|
display: block;
|
|
5115
5271
|
line-height: 22px;
|
|
5116
5272
|
padding: 14px 16px;
|
|
@@ -5129,7 +5285,7 @@ button.btn-floating {
|
|
|
5129
5285
|
}
|
|
5130
5286
|
|
|
5131
5287
|
body.keyboard-focused .dropdown-content li:focus {
|
|
5132
|
-
background-color: rgb(217.6, 217.6, 217.6);
|
|
5288
|
+
background-color: var(--mm-dropdown-focus, rgb(217.6, 217.6, 217.6));
|
|
5133
5289
|
}
|
|
5134
5290
|
|
|
5135
5291
|
.input-field.col .dropdown-content [type=checkbox] + label {
|
|
@@ -5254,7 +5410,8 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
5254
5410
|
position: fixed;
|
|
5255
5411
|
left: 0;
|
|
5256
5412
|
right: 0;
|
|
5257
|
-
background-color: #fafafa;
|
|
5413
|
+
background-color: var(--mm-modal-background, #fafafa);
|
|
5414
|
+
color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
|
|
5258
5415
|
padding: 0;
|
|
5259
5416
|
max-height: 70%;
|
|
5260
5417
|
width: 55%;
|
|
@@ -5276,13 +5433,15 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
5276
5433
|
}
|
|
5277
5434
|
.modal .modal-content {
|
|
5278
5435
|
padding: 24px;
|
|
5436
|
+
background-color: var(--mm-modal-background, #fafafa);
|
|
5437
|
+
color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
|
|
5279
5438
|
}
|
|
5280
5439
|
.modal .modal-close {
|
|
5281
5440
|
cursor: pointer;
|
|
5282
5441
|
}
|
|
5283
5442
|
.modal .modal-footer {
|
|
5284
5443
|
border-radius: 0 0 2px 2px;
|
|
5285
|
-
background-color: #fafafa;
|
|
5444
|
+
background-color: var(--mm-modal-background, #fafafa);
|
|
5286
5445
|
padding: 4px 6px;
|
|
5287
5446
|
height: 56px;
|
|
5288
5447
|
width: 100%;
|
|
@@ -5334,9 +5493,9 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
5334
5493
|
}
|
|
5335
5494
|
|
|
5336
5495
|
.collapsible {
|
|
5337
|
-
border-top: 1px solid #ddd;
|
|
5338
|
-
border-right: 1px solid #ddd;
|
|
5339
|
-
border-left: 1px solid #ddd;
|
|
5496
|
+
border-top: 1px solid var(--mm-border-color, #ddd);
|
|
5497
|
+
border-right: 1px solid var(--mm-border-color, #ddd);
|
|
5498
|
+
border-left: 1px solid var(--mm-border-color, #ddd);
|
|
5340
5499
|
margin: 0.5rem 0 1rem 0;
|
|
5341
5500
|
}
|
|
5342
5501
|
|
|
@@ -5346,8 +5505,7 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
5346
5505
|
-webkit-tap-highlight-color: transparent;
|
|
5347
5506
|
line-height: 1.5;
|
|
5348
5507
|
padding: 1rem;
|
|
5349
|
-
|
|
5350
|
-
border-bottom: 1px solid #ddd;
|
|
5508
|
+
border-bottom: 1px solid var(--mm-border-color, #ddd);
|
|
5351
5509
|
}
|
|
5352
5510
|
.collapsible-header:focus {
|
|
5353
5511
|
outline: 0;
|
|
@@ -5361,12 +5519,12 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
5361
5519
|
}
|
|
5362
5520
|
|
|
5363
5521
|
.keyboard-focused .collapsible-header:focus {
|
|
5364
|
-
background-color:
|
|
5522
|
+
background-color: var(--mm-border-color, rgba(0, 0, 0, 0.05));
|
|
5365
5523
|
}
|
|
5366
5524
|
|
|
5367
5525
|
.collapsible-body {
|
|
5368
5526
|
display: none;
|
|
5369
|
-
border-bottom: 1px solid #ddd;
|
|
5527
|
+
border-bottom: 1px solid var(--mm-border-color, #ddd);
|
|
5370
5528
|
box-sizing: border-box;
|
|
5371
5529
|
padding: 2rem;
|
|
5372
5530
|
}
|
|
@@ -5399,7 +5557,8 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
5399
5557
|
.sidenav .collapsible-body,
|
|
5400
5558
|
.sidenav.sidenav-fixed .collapsible-body {
|
|
5401
5559
|
border: 0;
|
|
5402
|
-
background-color: #fff;
|
|
5560
|
+
background-color: var(--mm-surface-color, #fff);
|
|
5561
|
+
color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
|
|
5403
5562
|
}
|
|
5404
5563
|
.sidenav .collapsible-body li a,
|
|
5405
5564
|
.sidenav.sidenav-fixed .collapsible-body li a {
|
|
@@ -5425,18 +5584,18 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
5425
5584
|
height: 32px;
|
|
5426
5585
|
font-size: 13px;
|
|
5427
5586
|
font-weight: 500;
|
|
5428
|
-
color: rgba(0, 0, 0, 0.6);
|
|
5587
|
+
color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
|
|
5429
5588
|
line-height: 32px;
|
|
5430
5589
|
padding: 0 12px;
|
|
5431
5590
|
border-radius: 16px;
|
|
5432
|
-
background-color: #e4e4e4;
|
|
5591
|
+
background-color: var(--mm-chip-bg, #e4e4e4);
|
|
5433
5592
|
margin-bottom: 5px;
|
|
5434
5593
|
margin-right: 5px;
|
|
5435
5594
|
}
|
|
5436
5595
|
.chip:focus {
|
|
5437
5596
|
outline: none;
|
|
5438
|
-
background-color: #26a69a;
|
|
5439
|
-
color: #fff;
|
|
5597
|
+
background-color: var(--mm-primary-color, #26a69a);
|
|
5598
|
+
color: var(--mm-button-text, #fff);
|
|
5440
5599
|
}
|
|
5441
5600
|
.chip > img {
|
|
5442
5601
|
float: left;
|
|
@@ -5455,7 +5614,7 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
5455
5614
|
|
|
5456
5615
|
.chips {
|
|
5457
5616
|
border: none;
|
|
5458
|
-
border-bottom: 1px solid #9e9e9e;
|
|
5617
|
+
border-bottom: 1px solid var(--mm-input-border, #9e9e9e);
|
|
5459
5618
|
box-shadow: none;
|
|
5460
5619
|
margin: 0 0 8px 0;
|
|
5461
5620
|
min-height: 45px;
|
|
@@ -5463,8 +5622,8 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
5463
5622
|
transition: all 0.3s;
|
|
5464
5623
|
}
|
|
5465
5624
|
.chips.focus {
|
|
5466
|
-
border-bottom: 1px solid #26a69a;
|
|
5467
|
-
box-shadow: 0 1px 0 0 #26a69a;
|
|
5625
|
+
border-bottom: 1px solid var(--mm-primary-color, #26a69a);
|
|
5626
|
+
box-shadow: 0 1px 0 0 var(--mm-primary-color, #26a69a);
|
|
5468
5627
|
}
|
|
5469
5628
|
.chips:hover {
|
|
5470
5629
|
cursor: text;
|
|
@@ -5472,7 +5631,7 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
5472
5631
|
.chips .input {
|
|
5473
5632
|
background: none;
|
|
5474
5633
|
border: 0;
|
|
5475
|
-
color: rgba(0, 0, 0, 0.6);
|
|
5634
|
+
color: var(--mm-text-primary, rgba(0, 0, 0, 0.6));
|
|
5476
5635
|
display: inline-block;
|
|
5477
5636
|
font-size: 16px;
|
|
5478
5637
|
height: 3rem;
|
|
@@ -5546,10 +5705,10 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
5546
5705
|
========================================================================== */
|
|
5547
5706
|
/* Style Placeholders */
|
|
5548
5707
|
::-moz-placeholder {
|
|
5549
|
-
color: #d1d1d1;
|
|
5708
|
+
color: var(--mm-text-hint, #d1d1d1);
|
|
5550
5709
|
}
|
|
5551
5710
|
::placeholder {
|
|
5552
|
-
color: #d1d1d1;
|
|
5711
|
+
color: var(--mm-text-hint, #d1d1d1);
|
|
5553
5712
|
}
|
|
5554
5713
|
|
|
5555
5714
|
/* Text inputs */
|
|
@@ -5568,7 +5727,7 @@ input[type=search]:not(.browser-default),
|
|
|
5568
5727
|
textarea.materialize-textarea {
|
|
5569
5728
|
background-color: transparent;
|
|
5570
5729
|
border: none;
|
|
5571
|
-
border-bottom: 1px solid #9e9e9e;
|
|
5730
|
+
border-bottom: 1px solid var(--mm-input-border, 1px solid #9e9e9e);
|
|
5572
5731
|
border-radius: 0;
|
|
5573
5732
|
outline: none;
|
|
5574
5733
|
height: 3rem;
|
|
@@ -5579,6 +5738,7 @@ textarea.materialize-textarea {
|
|
|
5579
5738
|
box-shadow: none;
|
|
5580
5739
|
box-sizing: content-box;
|
|
5581
5740
|
transition: box-shadow 0.3s, border 0.3s;
|
|
5741
|
+
color: var(--mm-input-text, inherit);
|
|
5582
5742
|
}
|
|
5583
5743
|
input:not([type]):not(.browser-default):disabled, input:not([type]):not(.browser-default)[readonly=readonly],
|
|
5584
5744
|
input[type=text]:not(.browser-default):disabled,
|
|
@@ -5605,8 +5765,8 @@ input[type=search]:not(.browser-default):disabled,
|
|
|
5605
5765
|
input[type=search]:not(.browser-default)[readonly=readonly],
|
|
5606
5766
|
textarea.materialize-textarea:disabled,
|
|
5607
5767
|
textarea.materialize-textarea[readonly=readonly] {
|
|
5608
|
-
color: rgba(0, 0, 0, 0.42);
|
|
5609
|
-
border-bottom: 1px dotted rgba(0, 0, 0, 0.42);
|
|
5768
|
+
color: var(--mm-text-disabled, rgba(0, 0, 0, 0.42));
|
|
5769
|
+
border-bottom: 1px dotted var(--mm-input-border, 1px dotted rgba(0, 0, 0, 0.42));
|
|
5610
5770
|
}
|
|
5611
5771
|
input:not([type]):not(.browser-default):disabled + label, input:not([type]):not(.browser-default)[readonly=readonly] + label,
|
|
5612
5772
|
input[type=text]:not(.browser-default):disabled + label,
|
|
@@ -5633,7 +5793,7 @@ input[type=search]:not(.browser-default):disabled + label,
|
|
|
5633
5793
|
input[type=search]:not(.browser-default)[readonly=readonly] + label,
|
|
5634
5794
|
textarea.materialize-textarea:disabled + label,
|
|
5635
5795
|
textarea.materialize-textarea[readonly=readonly] + label {
|
|
5636
|
-
color: rgba(0, 0, 0, 0.42);
|
|
5796
|
+
color: var(--mm-text-disabled, rgba(0, 0, 0, 0.42));
|
|
5637
5797
|
}
|
|
5638
5798
|
input:not([type]):not(.browser-default):focus:not([readonly]),
|
|
5639
5799
|
input[type=text]:not(.browser-default):focus:not([readonly]),
|
|
@@ -5648,8 +5808,8 @@ input[type=tel]:not(.browser-default):focus:not([readonly]),
|
|
|
5648
5808
|
input[type=number]:not(.browser-default):focus:not([readonly]),
|
|
5649
5809
|
input[type=search]:not(.browser-default):focus:not([readonly]),
|
|
5650
5810
|
textarea.materialize-textarea:focus:not([readonly]) {
|
|
5651
|
-
border-bottom: 1px solid #26a69a;
|
|
5652
|
-
box-shadow: 0 1px 0 0 #26a69a;
|
|
5811
|
+
border-bottom: 1px solid var(--mm-input-border-focus, #26a69a);
|
|
5812
|
+
box-shadow: 0 1px 0 0 var(--mm-input-border-focus, #26a69a);
|
|
5653
5813
|
}
|
|
5654
5814
|
input:not([type]):not(.browser-default):focus:not([readonly]) + label,
|
|
5655
5815
|
input[type=text]:not(.browser-default):focus:not([readonly]) + label,
|
|
@@ -5664,7 +5824,7 @@ input[type=tel]:not(.browser-default):focus:not([readonly]) + label,
|
|
|
5664
5824
|
input[type=number]:not(.browser-default):focus:not([readonly]) + label,
|
|
5665
5825
|
input[type=search]:not(.browser-default):focus:not([readonly]) + label,
|
|
5666
5826
|
textarea.materialize-textarea:focus:not([readonly]) + label {
|
|
5667
|
-
color: #26a69a;
|
|
5827
|
+
color: var(--mm-input-border-focus, #26a69a);
|
|
5668
5828
|
}
|
|
5669
5829
|
input:not([type]):not(.browser-default):focus.valid ~ label,
|
|
5670
5830
|
input[type=text]:not(.browser-default):focus.valid ~ label,
|
|
@@ -5711,6 +5871,93 @@ input[type=search]:not(.browser-default).validate + label,
|
|
|
5711
5871
|
textarea.materialize-textarea.validate + label {
|
|
5712
5872
|
width: 100%;
|
|
5713
5873
|
}
|
|
5874
|
+
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,
|
|
5875
|
+
input[type=text]:not(.browser-default):-webkit-autofill,
|
|
5876
|
+
input[type=text]:not(.browser-default):-webkit-autofill:hover,
|
|
5877
|
+
input[type=text]:not(.browser-default):-webkit-autofill:focus,
|
|
5878
|
+
input[type=text]:not(.browser-default):-webkit-autofill:active,
|
|
5879
|
+
input[type=password]:not(.browser-default):-webkit-autofill,
|
|
5880
|
+
input[type=password]:not(.browser-default):-webkit-autofill:hover,
|
|
5881
|
+
input[type=password]:not(.browser-default):-webkit-autofill:focus,
|
|
5882
|
+
input[type=password]:not(.browser-default):-webkit-autofill:active,
|
|
5883
|
+
input[type=email]:not(.browser-default):-webkit-autofill,
|
|
5884
|
+
input[type=email]:not(.browser-default):-webkit-autofill:hover,
|
|
5885
|
+
input[type=email]:not(.browser-default):-webkit-autofill:focus,
|
|
5886
|
+
input[type=email]:not(.browser-default):-webkit-autofill:active,
|
|
5887
|
+
input[type=url]:not(.browser-default):-webkit-autofill,
|
|
5888
|
+
input[type=url]:not(.browser-default):-webkit-autofill:hover,
|
|
5889
|
+
input[type=url]:not(.browser-default):-webkit-autofill:focus,
|
|
5890
|
+
input[type=url]:not(.browser-default):-webkit-autofill:active,
|
|
5891
|
+
input[type=time]:not(.browser-default):-webkit-autofill,
|
|
5892
|
+
input[type=time]:not(.browser-default):-webkit-autofill:hover,
|
|
5893
|
+
input[type=time]:not(.browser-default):-webkit-autofill:focus,
|
|
5894
|
+
input[type=time]:not(.browser-default):-webkit-autofill:active,
|
|
5895
|
+
input[type=date]:not(.browser-default):-webkit-autofill,
|
|
5896
|
+
input[type=date]:not(.browser-default):-webkit-autofill:hover,
|
|
5897
|
+
input[type=date]:not(.browser-default):-webkit-autofill:focus,
|
|
5898
|
+
input[type=date]:not(.browser-default):-webkit-autofill:active,
|
|
5899
|
+
input[type=datetime]:not(.browser-default):-webkit-autofill,
|
|
5900
|
+
input[type=datetime]:not(.browser-default):-webkit-autofill:hover,
|
|
5901
|
+
input[type=datetime]:not(.browser-default):-webkit-autofill:focus,
|
|
5902
|
+
input[type=datetime]:not(.browser-default):-webkit-autofill:active,
|
|
5903
|
+
input[type=datetime-local]:not(.browser-default):-webkit-autofill,
|
|
5904
|
+
input[type=datetime-local]:not(.browser-default):-webkit-autofill:hover,
|
|
5905
|
+
input[type=datetime-local]:not(.browser-default):-webkit-autofill:focus,
|
|
5906
|
+
input[type=datetime-local]:not(.browser-default):-webkit-autofill:active,
|
|
5907
|
+
input[type=tel]:not(.browser-default):-webkit-autofill,
|
|
5908
|
+
input[type=tel]:not(.browser-default):-webkit-autofill:hover,
|
|
5909
|
+
input[type=tel]:not(.browser-default):-webkit-autofill:focus,
|
|
5910
|
+
input[type=tel]:not(.browser-default):-webkit-autofill:active,
|
|
5911
|
+
input[type=number]:not(.browser-default):-webkit-autofill,
|
|
5912
|
+
input[type=number]:not(.browser-default):-webkit-autofill:hover,
|
|
5913
|
+
input[type=number]:not(.browser-default):-webkit-autofill:focus,
|
|
5914
|
+
input[type=number]:not(.browser-default):-webkit-autofill:active,
|
|
5915
|
+
input[type=search]:not(.browser-default):-webkit-autofill,
|
|
5916
|
+
input[type=search]:not(.browser-default):-webkit-autofill:hover,
|
|
5917
|
+
input[type=search]:not(.browser-default):-webkit-autofill:focus,
|
|
5918
|
+
input[type=search]:not(.browser-default):-webkit-autofill:active,
|
|
5919
|
+
textarea.materialize-textarea:-webkit-autofill,
|
|
5920
|
+
textarea.materialize-textarea:-webkit-autofill:hover,
|
|
5921
|
+
textarea.materialize-textarea:-webkit-autofill:focus,
|
|
5922
|
+
textarea.materialize-textarea:-webkit-autofill:active {
|
|
5923
|
+
-webkit-box-shadow: 0 0 0 30px var(--mm-input-background, transparent) inset !important;
|
|
5924
|
+
-webkit-text-fill-color: var(--mm-input-text, inherit) !important;
|
|
5925
|
+
background-color: transparent !important;
|
|
5926
|
+
color: var(--mm-input-text, inherit) !important;
|
|
5927
|
+
-webkit-transition: background-color 5000s ease-in-out 0s;
|
|
5928
|
+
transition: background-color 5000s ease-in-out 0s;
|
|
5929
|
+
}
|
|
5930
|
+
input:not([type]):not(.browser-default):-ms-input-placeholder,
|
|
5931
|
+
input[type=text]:not(.browser-default):-ms-input-placeholder,
|
|
5932
|
+
input[type=password]:not(.browser-default):-ms-input-placeholder,
|
|
5933
|
+
input[type=email]:not(.browser-default):-ms-input-placeholder,
|
|
5934
|
+
input[type=url]:not(.browser-default):-ms-input-placeholder,
|
|
5935
|
+
input[type=time]:not(.browser-default):-ms-input-placeholder,
|
|
5936
|
+
input[type=date]:not(.browser-default):-ms-input-placeholder,
|
|
5937
|
+
input[type=datetime]:not(.browser-default):-ms-input-placeholder,
|
|
5938
|
+
input[type=datetime-local]:not(.browser-default):-ms-input-placeholder,
|
|
5939
|
+
input[type=tel]:not(.browser-default):-ms-input-placeholder,
|
|
5940
|
+
input[type=number]:not(.browser-default):-ms-input-placeholder,
|
|
5941
|
+
input[type=search]:not(.browser-default):-ms-input-placeholder,
|
|
5942
|
+
textarea.materialize-textarea:-ms-input-placeholder {
|
|
5943
|
+
color: var(--mm-text-hint, #d1d1d1) !important;
|
|
5944
|
+
}
|
|
5945
|
+
input:not([type]):not(.browser-default)::-ms-input-placeholder,
|
|
5946
|
+
input[type=text]:not(.browser-default)::-ms-input-placeholder,
|
|
5947
|
+
input[type=password]:not(.browser-default)::-ms-input-placeholder,
|
|
5948
|
+
input[type=email]:not(.browser-default)::-ms-input-placeholder,
|
|
5949
|
+
input[type=url]:not(.browser-default)::-ms-input-placeholder,
|
|
5950
|
+
input[type=time]:not(.browser-default)::-ms-input-placeholder,
|
|
5951
|
+
input[type=date]:not(.browser-default)::-ms-input-placeholder,
|
|
5952
|
+
input[type=datetime]:not(.browser-default)::-ms-input-placeholder,
|
|
5953
|
+
input[type=datetime-local]:not(.browser-default)::-ms-input-placeholder,
|
|
5954
|
+
input[type=tel]:not(.browser-default)::-ms-input-placeholder,
|
|
5955
|
+
input[type=number]:not(.browser-default)::-ms-input-placeholder,
|
|
5956
|
+
input[type=search]:not(.browser-default)::-ms-input-placeholder,
|
|
5957
|
+
textarea.materialize-textarea::-ms-input-placeholder {
|
|
5958
|
+
color: var(--mm-text-hint, #d1d1d1) !important;
|
|
5959
|
+
}
|
|
5960
|
+
|
|
5714
5961
|
/* Validation Sass Placeholders */
|
|
5715
5962
|
.select-wrapper.valid > input.select-dropdown, input:not([type]):not(.browser-default).valid, input:not([type]):not(.browser-default):focus.valid,
|
|
5716
5963
|
input[type=text]:not(.browser-default).valid,
|
|
@@ -5952,7 +6199,7 @@ textarea.materialize-textarea + label:after {
|
|
|
5952
6199
|
min-height: 18px;
|
|
5953
6200
|
display: block;
|
|
5954
6201
|
font-size: 12px;
|
|
5955
|
-
color: rgba(0, 0, 0, 0.54);
|
|
6202
|
+
color: var(--mm-text-secondary, rgba(0, 0, 0, 0.54));
|
|
5956
6203
|
}
|
|
5957
6204
|
.input-field .helper-text::after {
|
|
5958
6205
|
opacity: 1;
|
|
@@ -6014,13 +6261,13 @@ textarea.materialize-textarea + label:after {
|
|
|
6014
6261
|
box-shadow: none;
|
|
6015
6262
|
}
|
|
6016
6263
|
.input-field input[type=search]:focus:not(.browser-default) {
|
|
6017
|
-
background-color: #fff;
|
|
6264
|
+
background-color: var(--mm-input-background, #fff);
|
|
6018
6265
|
border: 0;
|
|
6019
6266
|
box-shadow: none;
|
|
6020
|
-
color: #444;
|
|
6267
|
+
color: var(--mm-input-text, #444);
|
|
6021
6268
|
}
|
|
6022
6269
|
.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;
|
|
6270
|
+
color: var(--mm-input-text, #444);
|
|
6024
6271
|
}
|
|
6025
6272
|
.input-field input[type=search] + .label-icon {
|
|
6026
6273
|
transform: none;
|
|
@@ -6126,7 +6373,7 @@ textarea.materialize-textarea {
|
|
|
6126
6373
|
|
|
6127
6374
|
[type=radio]:not(:checked) + span:before,
|
|
6128
6375
|
[type=radio]:not(:checked) + span:after {
|
|
6129
|
-
border: 2px solid #5a5a5a;
|
|
6376
|
+
border: 2px solid var(--mm-text-secondary, #5a5a5a);
|
|
6130
6377
|
}
|
|
6131
6378
|
|
|
6132
6379
|
[type=radio]:not(:checked) + span:after {
|
|
@@ -6141,12 +6388,12 @@ textarea.materialize-textarea {
|
|
|
6141
6388
|
[type=radio]:checked + span:after,
|
|
6142
6389
|
[type=radio].with-gap:checked + span:before,
|
|
6143
6390
|
[type=radio].with-gap:checked + span:after {
|
|
6144
|
-
border: 2px solid #26a69a;
|
|
6391
|
+
border: 2px solid var(--mm-primary-color, #26a69a);
|
|
6145
6392
|
}
|
|
6146
6393
|
|
|
6147
6394
|
[type=radio]:checked + span:after,
|
|
6148
6395
|
[type=radio].with-gap:checked + span:after {
|
|
6149
|
-
background-color: #26a69a;
|
|
6396
|
+
background-color: var(--mm-primary-color, #26a69a);
|
|
6150
6397
|
}
|
|
6151
6398
|
|
|
6152
6399
|
[type=radio]:checked + span:after {
|
|
@@ -6165,32 +6412,32 @@ textarea.materialize-textarea {
|
|
|
6165
6412
|
|
|
6166
6413
|
/* Disabled Radio With gap */
|
|
6167
6414
|
[type=radio].with-gap:disabled:checked + span:before {
|
|
6168
|
-
border: 2px solid rgba(0, 0, 0, 0.42);
|
|
6415
|
+
border: 2px solid var(--mm-text-disabled, rgba(0, 0, 0, 0.42));
|
|
6169
6416
|
}
|
|
6170
6417
|
|
|
6171
6418
|
[type=radio].with-gap:disabled:checked + span:after {
|
|
6172
6419
|
border: none;
|
|
6173
|
-
background-color: rgba(0, 0, 0, 0.42);
|
|
6420
|
+
background-color: var(--mm-text-disabled, rgba(0, 0, 0, 0.42));
|
|
6174
6421
|
}
|
|
6175
6422
|
|
|
6176
6423
|
/* Disabled style */
|
|
6177
6424
|
[type=radio]:disabled:not(:checked) + span:before,
|
|
6178
6425
|
[type=radio]:disabled:checked + span:before {
|
|
6179
6426
|
background-color: transparent;
|
|
6180
|
-
border-color: rgba(0, 0, 0, 0.42);
|
|
6427
|
+
border-color: var(--mm-text-disabled, rgba(0, 0, 0, 0.42));
|
|
6181
6428
|
}
|
|
6182
6429
|
|
|
6183
6430
|
[type=radio]:disabled + span {
|
|
6184
|
-
color: rgba(0, 0, 0, 0.42);
|
|
6431
|
+
color: var(--mm-text-disabled, rgba(0, 0, 0, 0.42));
|
|
6185
6432
|
}
|
|
6186
6433
|
|
|
6187
6434
|
[type=radio]:disabled:not(:checked) + span:before {
|
|
6188
|
-
border-color: rgba(0, 0, 0, 0.42);
|
|
6435
|
+
border-color: var(--mm-text-disabled, rgba(0, 0, 0, 0.42));
|
|
6189
6436
|
}
|
|
6190
6437
|
|
|
6191
6438
|
[type=radio]:disabled:checked + span:after {
|
|
6192
|
-
background-color: rgba(0, 0, 0, 0.42);
|
|
6193
|
-
border-color: #949494;
|
|
6439
|
+
background-color: var(--mm-text-disabled, rgba(0, 0, 0, 0.42));
|
|
6440
|
+
border-color: var(--mm-text-disabled, #949494);
|
|
6194
6441
|
}
|
|
6195
6442
|
|
|
6196
6443
|
/* Checkboxes
|
|
@@ -6379,13 +6626,13 @@ textarea.materialize-textarea {
|
|
|
6379
6626
|
height: 0;
|
|
6380
6627
|
}
|
|
6381
6628
|
.switch label input[type=checkbox]:checked + .lever {
|
|
6382
|
-
background-color: rgb(132.0625, 199.4375, 193.12109375);
|
|
6629
|
+
background-color: var(--mm-switch-checked-track, rgb(132.0625, 199.4375, 193.12109375));
|
|
6383
6630
|
}
|
|
6384
6631
|
.switch label input[type=checkbox]:checked + .lever:before, .switch label input[type=checkbox]:checked + .lever:after {
|
|
6385
6632
|
left: 18px;
|
|
6386
6633
|
}
|
|
6387
6634
|
.switch label input[type=checkbox]:checked + .lever:after {
|
|
6388
|
-
background-color: #26a69a;
|
|
6635
|
+
background-color: var(--mm-switch-checked-thumb, #26a69a);
|
|
6389
6636
|
}
|
|
6390
6637
|
|
|
6391
6638
|
.switch label .lever {
|
|
@@ -6394,7 +6641,7 @@ textarea.materialize-textarea {
|
|
|
6394
6641
|
position: relative;
|
|
6395
6642
|
width: 36px;
|
|
6396
6643
|
height: 14px;
|
|
6397
|
-
background-color: rgba(0, 0, 0, 0.38);
|
|
6644
|
+
background-color: var(--mm-switch-unchecked-track, rgba(0, 0, 0, 0.38));
|
|
6398
6645
|
border-radius: 15px;
|
|
6399
6646
|
margin-right: 10px;
|
|
6400
6647
|
transition: background 0.3s ease;
|
|
@@ -6416,7 +6663,7 @@ textarea.materialize-textarea {
|
|
|
6416
6663
|
background-color: rgba(38, 166, 154, 0.15);
|
|
6417
6664
|
}
|
|
6418
6665
|
.switch label .lever:after {
|
|
6419
|
-
background-color: #F1F1F1;
|
|
6666
|
+
background-color: var(--mm-switch-unchecked-thumb, #F1F1F1);
|
|
6420
6667
|
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
6668
|
}
|
|
6422
6669
|
|
|
@@ -6434,12 +6681,12 @@ input[type=checkbox]:not(:disabled).tabbed:focus ~ .lever::before {
|
|
|
6434
6681
|
|
|
6435
6682
|
.switch input[type=checkbox][disabled] + .lever {
|
|
6436
6683
|
cursor: default;
|
|
6437
|
-
background-color: rgba(0, 0, 0, 0.12);
|
|
6684
|
+
background-color: var(--mm-switch-disabled-track, rgba(0, 0, 0, 0.12));
|
|
6438
6685
|
}
|
|
6439
6686
|
|
|
6440
6687
|
.switch label input[type=checkbox][disabled] + .lever:after,
|
|
6441
6688
|
.switch label input[type=checkbox][disabled]:checked + .lever:after {
|
|
6442
|
-
background-color: #949494;
|
|
6689
|
+
background-color: var(--mm-switch-disabled-thumb, #949494);
|
|
6443
6690
|
}
|
|
6444
6691
|
|
|
6445
6692
|
/* Select Field
|
|
@@ -6498,7 +6745,7 @@ select {
|
|
|
6498
6745
|
bottom: 0;
|
|
6499
6746
|
margin: auto 0;
|
|
6500
6747
|
z-index: 0;
|
|
6501
|
-
fill: rgba(0, 0, 0, 0.87);
|
|
6748
|
+
fill: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
|
|
6502
6749
|
}
|
|
6503
6750
|
.select-wrapper + label {
|
|
6504
6751
|
position: absolute;
|
|
@@ -6534,25 +6781,25 @@ select:disabled {
|
|
|
6534
6781
|
}
|
|
6535
6782
|
|
|
6536
6783
|
.select-wrapper i {
|
|
6537
|
-
color: rgba(0, 0, 0, 0.
|
|
6784
|
+
color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
|
|
6538
6785
|
}
|
|
6539
6786
|
|
|
6540
6787
|
.select-dropdown li.disabled,
|
|
6541
6788
|
.select-dropdown li.disabled > span,
|
|
6542
6789
|
.select-dropdown li.optgroup {
|
|
6543
|
-
color: rgba(0, 0, 0, 0.3);
|
|
6790
|
+
color: var(--mm-text-disabled, rgba(0, 0, 0, 0.3));
|
|
6544
6791
|
background-color: transparent;
|
|
6545
6792
|
}
|
|
6546
6793
|
|
|
6547
6794
|
body.keyboard-focused .select-dropdown.dropdown-content li:focus {
|
|
6548
|
-
background-color: rgba(0, 0, 0, 0.08);
|
|
6795
|
+
background-color: var(--mm-dropdown-focus, rgba(0, 0, 0, 0.08));
|
|
6549
6796
|
}
|
|
6550
6797
|
|
|
6551
6798
|
.select-dropdown.dropdown-content li:hover {
|
|
6552
|
-
background-color: rgba(0, 0, 0, 0.08);
|
|
6799
|
+
background-color: var(--mm-dropdown-hover, rgba(0, 0, 0, 0.08));
|
|
6553
6800
|
}
|
|
6554
6801
|
.select-dropdown.dropdown-content li.selected {
|
|
6555
|
-
background-color: rgba(0, 0, 0, 0.03);
|
|
6802
|
+
background-color: var(--mm-dropdown-selected, rgba(0, 0, 0, 0.03));
|
|
6556
6803
|
}
|
|
6557
6804
|
|
|
6558
6805
|
.prefix ~ .select-wrapper {
|
|
@@ -6573,13 +6820,13 @@ body.keyboard-focused .select-dropdown.dropdown-content li:focus {
|
|
|
6573
6820
|
}
|
|
6574
6821
|
|
|
6575
6822
|
.select-dropdown li.optgroup {
|
|
6576
|
-
border-top: 1px solid #eee;
|
|
6823
|
+
border-top: 1px solid var(--mm-border-color, #eee);
|
|
6577
6824
|
}
|
|
6578
6825
|
.select-dropdown li.optgroup.selected > span {
|
|
6579
|
-
color: rgba(0, 0, 0, 0.7);
|
|
6826
|
+
color: var(--mm-text-secondary, rgba(0, 0, 0, 0.7));
|
|
6580
6827
|
}
|
|
6581
6828
|
.select-dropdown li.optgroup > span {
|
|
6582
|
-
color: rgba(0, 0, 0, 0.4);
|
|
6829
|
+
color: var(--mm-text-hint, rgba(0, 0, 0, 0.4));
|
|
6583
6830
|
}
|
|
6584
6831
|
.select-dropdown li.optgroup ~ li.optgroup-option {
|
|
6585
6832
|
padding-left: 1rem;
|
|
@@ -6687,7 +6934,7 @@ input[type=range] {
|
|
|
6687
6934
|
|
|
6688
6935
|
input[type=range]::-webkit-slider-runnable-track {
|
|
6689
6936
|
height: 3px;
|
|
6690
|
-
background: #c2c0c2;
|
|
6937
|
+
background: var(--mm-border-color, #c2c0c2);
|
|
6691
6938
|
border: none;
|
|
6692
6939
|
}
|
|
6693
6940
|
|
|
@@ -6711,13 +6958,13 @@ input[type=range]::-webkit-slider-thumb {
|
|
|
6711
6958
|
|
|
6712
6959
|
input[type=range] {
|
|
6713
6960
|
/* fix for FF unable to apply focus style bug */
|
|
6714
|
-
border: 1px solid white;
|
|
6961
|
+
border: 1px solid var(--mm-card-background, white);
|
|
6715
6962
|
/*required for proper track sizing in FF*/
|
|
6716
6963
|
}
|
|
6717
6964
|
|
|
6718
6965
|
input[type=range]::-moz-range-track {
|
|
6719
6966
|
height: 3px;
|
|
6720
|
-
background: #c2c0c2;
|
|
6967
|
+
background: var(--mm-border-color, #c2c0c2);
|
|
6721
6968
|
border: none;
|
|
6722
6969
|
}
|
|
6723
6970
|
|
|
@@ -6737,7 +6984,7 @@ input[type=range]::-moz-range-thumb {
|
|
|
6737
6984
|
}
|
|
6738
6985
|
|
|
6739
6986
|
input[type=range]:-moz-focusring {
|
|
6740
|
-
outline: 1px solid #fff;
|
|
6987
|
+
outline: 1px solid var(--mm-card-background, #fff);
|
|
6741
6988
|
outline-offset: -1px;
|
|
6742
6989
|
}
|
|
6743
6990
|
|
|
@@ -6755,11 +7002,11 @@ input[type=range]::-ms-track {
|
|
|
6755
7002
|
}
|
|
6756
7003
|
|
|
6757
7004
|
input[type=range]::-ms-fill-lower {
|
|
6758
|
-
background: #777;
|
|
7005
|
+
background: var(--mm-text-secondary, #777);
|
|
6759
7006
|
}
|
|
6760
7007
|
|
|
6761
7008
|
input[type=range]::-ms-fill-upper {
|
|
6762
|
-
background: #ddd;
|
|
7009
|
+
background: var(--mm-surface-color, #ddd);
|
|
6763
7010
|
}
|
|
6764
7011
|
|
|
6765
7012
|
input[type=range]::-ms-thumb {
|
|
@@ -6846,6 +7093,105 @@ label {
|
|
|
6846
7093
|
border-left: 2px solid #ee6e73;
|
|
6847
7094
|
}
|
|
6848
7095
|
|
|
7096
|
+
.sidenav-container {
|
|
7097
|
+
position: relative;
|
|
7098
|
+
z-index: 997;
|
|
7099
|
+
}
|
|
7100
|
+
|
|
7101
|
+
.sidenav-backdrop {
|
|
7102
|
+
position: fixed;
|
|
7103
|
+
top: 0;
|
|
7104
|
+
left: 0;
|
|
7105
|
+
right: 0;
|
|
7106
|
+
bottom: 0;
|
|
7107
|
+
width: 100%;
|
|
7108
|
+
height: 100%;
|
|
7109
|
+
background: var(--mm-overlay-background, rgba(0, 0, 0, 0.5));
|
|
7110
|
+
opacity: 0;
|
|
7111
|
+
visibility: hidden;
|
|
7112
|
+
transition: opacity 0.3s ease, visibility 0.3s ease;
|
|
7113
|
+
z-index: 998;
|
|
7114
|
+
cursor: pointer;
|
|
7115
|
+
}
|
|
7116
|
+
.sidenav-backdrop.show {
|
|
7117
|
+
opacity: 1;
|
|
7118
|
+
visibility: visible;
|
|
7119
|
+
}
|
|
7120
|
+
|
|
7121
|
+
.sidenav-link {
|
|
7122
|
+
display: flex;
|
|
7123
|
+
align-items: center;
|
|
7124
|
+
padding: 0.75rem 1rem;
|
|
7125
|
+
color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
|
|
7126
|
+
text-decoration: none;
|
|
7127
|
+
transition: background-color 0.2s ease, color 0.2s ease;
|
|
7128
|
+
cursor: pointer;
|
|
7129
|
+
min-height: 48px;
|
|
7130
|
+
}
|
|
7131
|
+
.sidenav-link:hover:not(.disabled) {
|
|
7132
|
+
background: var(--mm-border-color, rgba(0, 0, 0, 0.12));
|
|
7133
|
+
color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
|
|
7134
|
+
text-decoration: none;
|
|
7135
|
+
}
|
|
7136
|
+
.sidenav-link.active {
|
|
7137
|
+
background: var(--mm-primary-color-light, rgba(38, 166, 154, 0.1));
|
|
7138
|
+
color: var(--mm-primary-color, #26a69a);
|
|
7139
|
+
}
|
|
7140
|
+
.sidenav-link.active .sidenav-icon {
|
|
7141
|
+
color: var(--mm-primary-color, #26a69a);
|
|
7142
|
+
}
|
|
7143
|
+
.sidenav-link.disabled {
|
|
7144
|
+
color: var(--mm-text-disabled, rgba(0, 0, 0, 0.38));
|
|
7145
|
+
cursor: not-allowed;
|
|
7146
|
+
}
|
|
7147
|
+
.sidenav-link.disabled .sidenav-icon {
|
|
7148
|
+
color: var(--mm-text-disabled, rgba(0, 0, 0, 0.38));
|
|
7149
|
+
}
|
|
7150
|
+
|
|
7151
|
+
.sidenav-icon {
|
|
7152
|
+
margin-right: 1rem;
|
|
7153
|
+
font-size: 1.5rem;
|
|
7154
|
+
width: 24px;
|
|
7155
|
+
height: 24px;
|
|
7156
|
+
display: flex;
|
|
7157
|
+
align-items: center;
|
|
7158
|
+
justify-content: center;
|
|
7159
|
+
color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
|
|
7160
|
+
flex-shrink: 0;
|
|
7161
|
+
}
|
|
7162
|
+
|
|
7163
|
+
.sidenav-text {
|
|
7164
|
+
font-size: 0.875rem;
|
|
7165
|
+
font-weight: 500;
|
|
7166
|
+
line-height: 1.5;
|
|
7167
|
+
overflow: hidden;
|
|
7168
|
+
text-overflow: ellipsis;
|
|
7169
|
+
white-space: nowrap;
|
|
7170
|
+
}
|
|
7171
|
+
|
|
7172
|
+
.sidenav-divider {
|
|
7173
|
+
height: 1px;
|
|
7174
|
+
background: var(--mm-divider-color, rgba(0, 0, 0, 0.12));
|
|
7175
|
+
margin: 0.5rem 0;
|
|
7176
|
+
}
|
|
7177
|
+
|
|
7178
|
+
.sidenav-subheader {
|
|
7179
|
+
padding: 1rem 1rem 0.5rem 1rem;
|
|
7180
|
+
font-size: 0.75rem;
|
|
7181
|
+
font-weight: 600;
|
|
7182
|
+
color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
|
|
7183
|
+
text-transform: uppercase;
|
|
7184
|
+
letter-spacing: 0.5px;
|
|
7185
|
+
line-height: 1.5;
|
|
7186
|
+
}
|
|
7187
|
+
|
|
7188
|
+
.sidenav-content {
|
|
7189
|
+
padding: 0;
|
|
7190
|
+
height: 100%;
|
|
7191
|
+
display: flex;
|
|
7192
|
+
flex-direction: column;
|
|
7193
|
+
}
|
|
7194
|
+
|
|
6849
7195
|
.sidenav {
|
|
6850
7196
|
position: fixed;
|
|
6851
7197
|
width: 300px;
|
|
@@ -6857,12 +7203,37 @@ label {
|
|
|
6857
7203
|
height: calc(100% + 60px);
|
|
6858
7204
|
height: -moz-calc(100%);
|
|
6859
7205
|
padding-bottom: 60px;
|
|
6860
|
-
background-color: #fff;
|
|
7206
|
+
background-color: var(--mm-surface-color, #fff);
|
|
6861
7207
|
z-index: 999;
|
|
6862
7208
|
overflow-y: auto;
|
|
6863
7209
|
will-change: transform;
|
|
6864
7210
|
backface-visibility: hidden;
|
|
6865
7211
|
transform: translateX(-105%);
|
|
7212
|
+
transition: transform 0.3s ease, left 0.3s ease, right 0.3s ease;
|
|
7213
|
+
}
|
|
7214
|
+
.sidenav.sidenav-left {
|
|
7215
|
+
left: 0;
|
|
7216
|
+
}
|
|
7217
|
+
.sidenav.sidenav-right {
|
|
7218
|
+
right: 0;
|
|
7219
|
+
left: auto;
|
|
7220
|
+
transform: translateX(100%);
|
|
7221
|
+
}
|
|
7222
|
+
.sidenav.sidenav-overlay {
|
|
7223
|
+
position: fixed;
|
|
7224
|
+
}
|
|
7225
|
+
.sidenav.sidenav-push {
|
|
7226
|
+
position: relative;
|
|
7227
|
+
box-shadow: var(--mm-border-color, rgba(0, 0, 0, 0.12)) 1px 0 0 0;
|
|
7228
|
+
}
|
|
7229
|
+
.sidenav.closed.sidenav-left {
|
|
7230
|
+
transform: translateX(-100%);
|
|
7231
|
+
}
|
|
7232
|
+
.sidenav.closed.sidenav-right {
|
|
7233
|
+
transform: translateX(100%);
|
|
7234
|
+
}
|
|
7235
|
+
.sidenav.open {
|
|
7236
|
+
transform: translateX(0);
|
|
6866
7237
|
}
|
|
6867
7238
|
.sidenav.right-aligned {
|
|
6868
7239
|
right: 0;
|
|
@@ -6881,7 +7252,7 @@ label {
|
|
|
6881
7252
|
background-color: rgba(0, 0, 0, 0.05);
|
|
6882
7253
|
}
|
|
6883
7254
|
.sidenav li > a:not(.btn):not(.btn-large):not(.btn-flat):not(.btn-floating) {
|
|
6884
|
-
color: rgba(0, 0, 0, 0.87);
|
|
7255
|
+
color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
|
|
6885
7256
|
display: block;
|
|
6886
7257
|
font-size: 14px;
|
|
6887
7258
|
font-weight: 500;
|
|
@@ -6890,7 +7261,7 @@ label {
|
|
|
6890
7261
|
padding: 0 32px;
|
|
6891
7262
|
}
|
|
6892
7263
|
.sidenav li > a:not(.btn):not(.btn-large):not(.btn-flat):not(.btn-floating):hover {
|
|
6893
|
-
background-color: rgba(0, 0, 0, 0.05);
|
|
7264
|
+
background-color: var(--mm-border-color, rgba(0, 0, 0, 0.05));
|
|
6894
7265
|
}
|
|
6895
7266
|
.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
7267
|
float: left;
|
|
@@ -6898,7 +7269,7 @@ label {
|
|
|
6898
7269
|
line-height: 48px;
|
|
6899
7270
|
margin: 0 32px 0 0;
|
|
6900
7271
|
width: 24px;
|
|
6901
|
-
color: rgba(0, 0, 0, 0.54);
|
|
7272
|
+
color: var(--mm-text-secondary, rgba(0, 0, 0, 0.54));
|
|
6902
7273
|
}
|
|
6903
7274
|
.sidenav li > .btn, .sidenav li > .btn-large, .sidenav li > .btn-flat, .sidenav li > .btn-floating {
|
|
6904
7275
|
margin: 10px 32px;
|
|
@@ -6909,10 +7280,14 @@ label {
|
|
|
6909
7280
|
.sidenav .subheader {
|
|
6910
7281
|
cursor: initial;
|
|
6911
7282
|
pointer-events: none;
|
|
6912
|
-
color: rgba(0, 0, 0, 0.54);
|
|
7283
|
+
color: var(--mm-text-secondary, rgba(0, 0, 0, 0.54));
|
|
6913
7284
|
font-size: 14px;
|
|
6914
7285
|
font-weight: 500;
|
|
6915
7286
|
line-height: 48px;
|
|
7287
|
+
padding: 0 32px;
|
|
7288
|
+
height: 48px;
|
|
7289
|
+
display: flex;
|
|
7290
|
+
align-items: center;
|
|
6916
7291
|
}
|
|
6917
7292
|
.sidenav .subheader:hover {
|
|
6918
7293
|
background-color: transparent;
|
|
@@ -7013,11 +7388,18 @@ label {
|
|
|
7013
7388
|
top: 0;
|
|
7014
7389
|
left: 0;
|
|
7015
7390
|
right: 0;
|
|
7391
|
+
bottom: 0;
|
|
7392
|
+
width: 100%;
|
|
7393
|
+
height: 100%;
|
|
7016
7394
|
opacity: 0;
|
|
7017
|
-
|
|
7018
|
-
background-color: rgba(0, 0, 0, 0.5);
|
|
7395
|
+
background-color: var(--mm-overlay-background, rgba(0, 0, 0, 0.5));
|
|
7019
7396
|
z-index: 997;
|
|
7020
7397
|
display: none;
|
|
7398
|
+
transition: opacity 0.3s ease;
|
|
7399
|
+
}
|
|
7400
|
+
|
|
7401
|
+
.sidenav-overlay {
|
|
7402
|
+
pointer-events: auto;
|
|
7021
7403
|
}
|
|
7022
7404
|
|
|
7023
7405
|
/*
|
|
@@ -7618,6 +8000,8 @@ label {
|
|
|
7618
8000
|
flex-direction: column;
|
|
7619
8001
|
padding: 0;
|
|
7620
8002
|
overflow: visible;
|
|
8003
|
+
background-color: var(--mm-surface-color, #ffffff);
|
|
8004
|
+
color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
|
|
7621
8005
|
}
|
|
7622
8006
|
|
|
7623
8007
|
.datepicker-controls {
|
|
@@ -7652,17 +8036,17 @@ label {
|
|
|
7652
8036
|
cursor: pointer;
|
|
7653
8037
|
width: 16px;
|
|
7654
8038
|
height: 16px;
|
|
7655
|
-
fill: rgba(0, 0, 0, 0.54);
|
|
8039
|
+
fill: var(--mm-text-secondary, rgba(0, 0, 0, 0.54));
|
|
7656
8040
|
}
|
|
7657
8041
|
.datepicker-controls .select-wrapper .dropdown-content {
|
|
7658
8042
|
position: absolute;
|
|
7659
8043
|
top: 100%;
|
|
7660
8044
|
left: 0;
|
|
7661
8045
|
right: 0;
|
|
7662
|
-
background-color: white;
|
|
7663
|
-
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
|
|
8046
|
+
background-color: var(--mm-surface-color, white);
|
|
8047
|
+
box-shadow: 0 4px 20px var(--mm-shadow-color, rgba(0, 0, 0, 0.3));
|
|
7664
8048
|
z-index: 20000;
|
|
7665
|
-
border: 1px solid #ddd;
|
|
8049
|
+
border: 1px solid var(--mm-border-color, #ddd);
|
|
7666
8050
|
border-radius: 2px;
|
|
7667
8051
|
display: block;
|
|
7668
8052
|
opacity: 1;
|
|
@@ -7674,10 +8058,10 @@ label {
|
|
|
7674
8058
|
transition: background-color 0.2s;
|
|
7675
8059
|
}
|
|
7676
8060
|
.datepicker-controls .select-wrapper .dropdown-content .dropdown-item:hover {
|
|
7677
|
-
background-color: #f5f5f5;
|
|
8061
|
+
background-color: var(--mm-border-color, #f5f5f5);
|
|
7678
8062
|
}
|
|
7679
8063
|
.datepicker-controls .select-wrapper .dropdown-content .dropdown-item.selected {
|
|
7680
|
-
background-color: #f5f5f5;
|
|
8064
|
+
background-color: var(--mm-border-color, #f5f5f5);
|
|
7681
8065
|
}
|
|
7682
8066
|
.datepicker-controls .select-year input {
|
|
7683
8067
|
width: 50px;
|
|
@@ -7734,6 +8118,9 @@ label {
|
|
|
7734
8118
|
font-size: 1rem;
|
|
7735
8119
|
margin: 0 auto;
|
|
7736
8120
|
}
|
|
8121
|
+
.datepicker-table.with-week-numbers {
|
|
8122
|
+
width: 310px;
|
|
8123
|
+
}
|
|
7737
8124
|
.datepicker-table thead {
|
|
7738
8125
|
border-bottom: none;
|
|
7739
8126
|
}
|
|
@@ -7741,28 +8128,47 @@ label {
|
|
|
7741
8128
|
padding: 10px 5px;
|
|
7742
8129
|
text-align: center;
|
|
7743
8130
|
}
|
|
8131
|
+
.datepicker-table th.datepicker-week-header {
|
|
8132
|
+
color: var(--mm-text-hint, rgba(0, 0, 0, 0.38));
|
|
8133
|
+
font-size: 0.8rem;
|
|
8134
|
+
font-weight: 600;
|
|
8135
|
+
width: 30px;
|
|
8136
|
+
padding: 10px 2px;
|
|
8137
|
+
}
|
|
7744
8138
|
.datepicker-table tr {
|
|
7745
8139
|
border: none;
|
|
7746
8140
|
}
|
|
7747
8141
|
.datepicker-table abbr {
|
|
7748
8142
|
text-decoration: none;
|
|
7749
|
-
color: rgba(0, 0, 0, 0.54);
|
|
8143
|
+
color: var(--mm-text-secondary, rgba(0, 0, 0, 0.54));
|
|
7750
8144
|
}
|
|
7751
8145
|
.datepicker-table td {
|
|
7752
8146
|
border-radius: 50%;
|
|
7753
8147
|
padding: 0;
|
|
7754
8148
|
}
|
|
7755
8149
|
.datepicker-table td.is-today {
|
|
7756
|
-
color: #26a69a;
|
|
8150
|
+
color: var(--mm-primary-color, #26a69a);
|
|
7757
8151
|
}
|
|
7758
8152
|
.datepicker-table td.is-selected {
|
|
7759
|
-
background-color: #26a69a;
|
|
7760
|
-
color: #fff;
|
|
8153
|
+
background-color: var(--mm-primary-color, #26a69a);
|
|
8154
|
+
color: var(--mm-button-text, #fff);
|
|
7761
8155
|
}
|
|
7762
8156
|
.datepicker-table td.is-outside-current-month, .datepicker-table td.is-disabled {
|
|
7763
|
-
color: rgba(0, 0, 0, 0.3);
|
|
8157
|
+
color: var(--mm-text-disabled, rgba(0, 0, 0, 0.3));
|
|
7764
8158
|
pointer-events: none;
|
|
7765
8159
|
}
|
|
8160
|
+
.datepicker-table td.datepicker-week-number {
|
|
8161
|
+
color: var(--mm-text-hint, rgba(0, 0, 0, 0.38));
|
|
8162
|
+
font-size: 0.8rem;
|
|
8163
|
+
font-weight: 600;
|
|
8164
|
+
text-align: center;
|
|
8165
|
+
vertical-align: middle;
|
|
8166
|
+
border-radius: 0;
|
|
8167
|
+
width: 30px;
|
|
8168
|
+
padding: 5px 2px;
|
|
8169
|
+
background-color: var(--mm-border-color, rgba(0, 0, 0, 0.02));
|
|
8170
|
+
border-right: 1px solid var(--mm-border-color, rgba(0, 0, 0, 0.05));
|
|
8171
|
+
}
|
|
7766
8172
|
|
|
7767
8173
|
.datepicker-day-button {
|
|
7768
8174
|
background-color: transparent;
|
|
@@ -7775,9 +8181,6 @@ label {
|
|
|
7775
8181
|
cursor: pointer;
|
|
7776
8182
|
color: inherit;
|
|
7777
8183
|
}
|
|
7778
|
-
.datepicker-day-button:focus {
|
|
7779
|
-
background-color: #eee;
|
|
7780
|
-
}
|
|
7781
8184
|
|
|
7782
8185
|
/* Footer */
|
|
7783
8186
|
.datepicker-footer {
|
|
@@ -7816,6 +8219,9 @@ label {
|
|
|
7816
8219
|
.datepicker-footer {
|
|
7817
8220
|
width: 320px;
|
|
7818
8221
|
}
|
|
8222
|
+
.datepicker-table.with-week-numbers {
|
|
8223
|
+
width: 350px;
|
|
8224
|
+
}
|
|
7819
8225
|
.datepicker-day-button {
|
|
7820
8226
|
line-height: 44px;
|
|
7821
8227
|
}
|
|
@@ -7850,7 +8256,7 @@ label {
|
|
|
7850
8256
|
gap: 8px;
|
|
7851
8257
|
margin-top: 8px;
|
|
7852
8258
|
padding: 12px;
|
|
7853
|
-
background-color: #f5f5f5;
|
|
8259
|
+
background-color: var(--mm-border-color, #f5f5f5);
|
|
7854
8260
|
border-radius: 4px;
|
|
7855
8261
|
font-size: 14px;
|
|
7856
8262
|
}
|
|
@@ -7863,106 +8269,1341 @@ label {
|
|
|
7863
8269
|
width: 50px;
|
|
7864
8270
|
text-align: center;
|
|
7865
8271
|
padding: 4px;
|
|
7866
|
-
border: 1px solid #ccc;
|
|
8272
|
+
border: 1px solid var(--mm-border-color, #ccc);
|
|
7867
8273
|
border-radius: 4px;
|
|
7868
8274
|
}
|
|
7869
8275
|
.inline-time-controls .time-controls-12h select {
|
|
7870
8276
|
padding: 4px;
|
|
7871
|
-
border: 1px solid #ccc;
|
|
8277
|
+
border: 1px solid var(--mm-border-color, #ccc);
|
|
7872
8278
|
border-radius: 4px;
|
|
7873
8279
|
margin-left: 4px;
|
|
7874
8280
|
}
|
|
7875
8281
|
.inline-time-controls input[type=time] {
|
|
7876
8282
|
font-size: 16px;
|
|
7877
8283
|
padding: 4px 8px;
|
|
7878
|
-
border: 1px solid #ccc;
|
|
8284
|
+
border: 1px solid var(--mm-border-color, #ccc);
|
|
7879
8285
|
border-radius: 4px;
|
|
7880
8286
|
min-width: 120px;
|
|
7881
8287
|
}
|
|
7882
8288
|
.inline-time-controls .btn-flat {
|
|
7883
8289
|
padding: 4px 8px;
|
|
7884
8290
|
font-size: 11px;
|
|
7885
|
-
background-color: #e0e0e0;
|
|
8291
|
+
background-color: var(--mm-border-color, #e0e0e0);
|
|
7886
8292
|
border-radius: 4px;
|
|
7887
8293
|
min-width: auto;
|
|
7888
8294
|
}
|
|
7889
8295
|
|
|
8296
|
+
/* Timepicker Containers */
|
|
7890
8297
|
.timepicker-modal {
|
|
7891
|
-
|
|
7892
|
-
|
|
7893
|
-
left: 0;
|
|
7894
|
-
width: 100%;
|
|
7895
|
-
height: 100%;
|
|
7896
|
-
background-color: rgba(0, 0, 0, 0.5);
|
|
7897
|
-
display: flex;
|
|
7898
|
-
align-items: center;
|
|
7899
|
-
justify-content: center;
|
|
7900
|
-
z-index: 1000;
|
|
7901
|
-
}
|
|
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);
|
|
8298
|
+
max-width: 325px;
|
|
8299
|
+
max-height: none;
|
|
7909
8300
|
}
|
|
7910
|
-
|
|
8301
|
+
|
|
8302
|
+
.timepicker-container.modal-content {
|
|
7911
8303
|
display: flex;
|
|
7912
|
-
|
|
7913
|
-
|
|
7914
|
-
margin-bottom: 20px;
|
|
7915
|
-
}
|
|
7916
|
-
.timepicker-modal .timepicker-content .modal-header h5 {
|
|
7917
|
-
margin: 0;
|
|
7918
|
-
}
|
|
7919
|
-
.timepicker-modal .timepicker-content .modal-header .btn-flat {
|
|
7920
|
-
padding: 4px 8px;
|
|
7921
|
-
font-size: 11px;
|
|
7922
|
-
min-width: auto;
|
|
8304
|
+
flex-direction: column;
|
|
8305
|
+
padding: 0;
|
|
7923
8306
|
}
|
|
7924
|
-
|
|
7925
|
-
|
|
7926
|
-
|
|
8307
|
+
|
|
8308
|
+
.text-primary {
|
|
8309
|
+
color: rgb(255, 255, 255);
|
|
7927
8310
|
}
|
|
7928
|
-
|
|
7929
|
-
|
|
7930
|
-
|
|
7931
|
-
|
|
7932
|
-
|
|
7933
|
-
|
|
7934
|
-
font-size: 2.5rem;
|
|
8311
|
+
|
|
8312
|
+
/* Clock Digital Display */
|
|
8313
|
+
.timepicker-digital-display {
|
|
8314
|
+
flex: 1 auto;
|
|
8315
|
+
background-color: #26a69a;
|
|
8316
|
+
padding: 10px;
|
|
7935
8317
|
font-weight: 300;
|
|
7936
8318
|
}
|
|
7937
|
-
|
|
7938
|
-
|
|
8319
|
+
|
|
8320
|
+
.timepicker-text-container {
|
|
8321
|
+
font-size: 4rem;
|
|
8322
|
+
font-weight: bold;
|
|
7939
8323
|
text-align: center;
|
|
7940
|
-
|
|
7941
|
-
|
|
7942
|
-
|
|
7943
|
-
|
|
8324
|
+
color: rgba(255, 255, 255, 0.6);
|
|
8325
|
+
font-weight: 400;
|
|
8326
|
+
position: relative;
|
|
8327
|
+
-webkit-user-select: none;
|
|
8328
|
+
-moz-user-select: none;
|
|
8329
|
+
user-select: none;
|
|
7944
8330
|
}
|
|
7945
|
-
|
|
7946
|
-
|
|
7947
|
-
|
|
7948
|
-
|
|
8331
|
+
|
|
8332
|
+
.timepicker-span-hours,
|
|
8333
|
+
.timepicker-span-minutes,
|
|
8334
|
+
.timepicker-span-am-pm div {
|
|
8335
|
+
cursor: pointer;
|
|
7949
8336
|
}
|
|
7950
|
-
|
|
7951
|
-
|
|
7952
|
-
|
|
8337
|
+
|
|
8338
|
+
.timepicker-span-hours {
|
|
8339
|
+
margin-right: 3px;
|
|
7953
8340
|
}
|
|
7954
|
-
|
|
7955
|
-
|
|
7956
|
-
|
|
7957
|
-
gap: 8px;
|
|
7958
|
-
margin-top: 24px;
|
|
8341
|
+
|
|
8342
|
+
.timepicker-span-minutes {
|
|
8343
|
+
margin-left: 3px;
|
|
7959
8344
|
}
|
|
7960
|
-
|
|
7961
|
-
|
|
7962
|
-
|
|
8345
|
+
|
|
8346
|
+
.timepicker-display-am-pm {
|
|
8347
|
+
font-size: 1.3rem;
|
|
8348
|
+
position: absolute;
|
|
8349
|
+
right: 1rem;
|
|
8350
|
+
bottom: 1rem;
|
|
8351
|
+
font-weight: 400;
|
|
7963
8352
|
}
|
|
7964
|
-
|
|
7965
|
-
|
|
8353
|
+
|
|
8354
|
+
/* Analog Clock Display */
|
|
8355
|
+
.timepicker-analog-display {
|
|
8356
|
+
flex: 2.5 auto;
|
|
8357
|
+
}
|
|
8358
|
+
|
|
8359
|
+
.timepicker-plate {
|
|
8360
|
+
background-color: #eee;
|
|
8361
|
+
border-radius: 50%;
|
|
8362
|
+
width: 270px;
|
|
8363
|
+
height: 270px;
|
|
8364
|
+
overflow: visible;
|
|
8365
|
+
position: relative;
|
|
8366
|
+
margin: auto;
|
|
8367
|
+
margin-top: 25px;
|
|
8368
|
+
margin-bottom: 5px;
|
|
8369
|
+
-webkit-user-select: none;
|
|
8370
|
+
-moz-user-select: none;
|
|
8371
|
+
user-select: none;
|
|
8372
|
+
}
|
|
8373
|
+
|
|
8374
|
+
.timepicker-canvas,
|
|
8375
|
+
.timepicker-dial {
|
|
8376
|
+
position: absolute;
|
|
8377
|
+
left: 0;
|
|
8378
|
+
right: 0;
|
|
8379
|
+
top: 0;
|
|
8380
|
+
bottom: 0;
|
|
8381
|
+
}
|
|
8382
|
+
|
|
8383
|
+
.timepicker-minutes {
|
|
8384
|
+
visibility: hidden;
|
|
7966
8385
|
}
|
|
7967
8386
|
|
|
7968
|
-
|
|
8387
|
+
.timepicker-tick {
|
|
8388
|
+
border-radius: 50%;
|
|
8389
|
+
color: rgba(0, 0, 0, 0.87);
|
|
8390
|
+
line-height: 40px;
|
|
8391
|
+
text-align: center;
|
|
8392
|
+
width: 40px;
|
|
8393
|
+
height: 40px;
|
|
8394
|
+
position: absolute;
|
|
8395
|
+
cursor: pointer;
|
|
8396
|
+
font-size: 15px;
|
|
8397
|
+
}
|
|
8398
|
+
|
|
8399
|
+
.timepicker-tick.active,
|
|
8400
|
+
.timepicker-tick:hover {
|
|
8401
|
+
background-color: rgba(38, 166, 154, 0.25);
|
|
8402
|
+
}
|
|
8403
|
+
|
|
8404
|
+
.timepicker-dial {
|
|
8405
|
+
transition: transform 350ms, opacity 350ms;
|
|
8406
|
+
}
|
|
8407
|
+
|
|
8408
|
+
.timepicker-dial-out {
|
|
8409
|
+
opacity: 0;
|
|
8410
|
+
}
|
|
8411
|
+
.timepicker-dial-out.timepicker-hours {
|
|
8412
|
+
transform: scale(1.1, 1.1);
|
|
8413
|
+
}
|
|
8414
|
+
.timepicker-dial-out.timepicker-minutes {
|
|
8415
|
+
transform: scale(0.8, 0.8);
|
|
8416
|
+
}
|
|
8417
|
+
|
|
8418
|
+
.timepicker-canvas {
|
|
8419
|
+
transition: opacity 175ms;
|
|
8420
|
+
}
|
|
8421
|
+
.timepicker-canvas line {
|
|
8422
|
+
stroke: #26a69a;
|
|
8423
|
+
stroke-width: 4;
|
|
8424
|
+
stroke-linecap: round;
|
|
8425
|
+
}
|
|
8426
|
+
|
|
8427
|
+
.timepicker-canvas-out {
|
|
8428
|
+
opacity: 0.25;
|
|
8429
|
+
}
|
|
8430
|
+
|
|
8431
|
+
.timepicker-canvas-bearing {
|
|
8432
|
+
stroke: none;
|
|
8433
|
+
fill: #26a69a;
|
|
8434
|
+
}
|
|
8435
|
+
|
|
8436
|
+
.timepicker-canvas-bg {
|
|
8437
|
+
stroke: none;
|
|
8438
|
+
fill: #26a69a;
|
|
8439
|
+
}
|
|
8440
|
+
|
|
8441
|
+
/* Footer */
|
|
8442
|
+
.timepicker-footer {
|
|
8443
|
+
margin: 0 auto;
|
|
8444
|
+
padding: 5px 1rem;
|
|
8445
|
+
display: flex;
|
|
8446
|
+
justify-content: space-between;
|
|
8447
|
+
}
|
|
8448
|
+
|
|
8449
|
+
.timepicker-clear {
|
|
8450
|
+
color: #F44336;
|
|
8451
|
+
}
|
|
8452
|
+
|
|
8453
|
+
.timepicker-close {
|
|
8454
|
+
color: #26a69a;
|
|
8455
|
+
}
|
|
8456
|
+
|
|
8457
|
+
.timepicker-clear,
|
|
8458
|
+
.timepicker-close {
|
|
8459
|
+
padding: 0 20px;
|
|
8460
|
+
}
|
|
8461
|
+
|
|
8462
|
+
/* Media Queries */
|
|
8463
|
+
@media only screen and (min-width : 601px) {
|
|
8464
|
+
.timepicker-modal {
|
|
8465
|
+
max-width: 600px;
|
|
8466
|
+
}
|
|
8467
|
+
.timepicker-container.modal-content {
|
|
8468
|
+
flex-direction: row;
|
|
8469
|
+
}
|
|
8470
|
+
.timepicker-text-container {
|
|
8471
|
+
top: 32%;
|
|
8472
|
+
}
|
|
8473
|
+
.timepicker-display-am-pm {
|
|
8474
|
+
position: relative;
|
|
8475
|
+
right: auto;
|
|
8476
|
+
bottom: auto;
|
|
8477
|
+
text-align: center;
|
|
8478
|
+
margin-top: 1.2rem;
|
|
8479
|
+
}
|
|
8480
|
+
}
|
|
8481
|
+
.theme-switcher {
|
|
8482
|
+
display: flex;
|
|
8483
|
+
align-items: center;
|
|
8484
|
+
gap: 0.5rem;
|
|
8485
|
+
}
|
|
8486
|
+
.theme-switcher .theme-switcher-label {
|
|
8487
|
+
font-size: 0.875rem;
|
|
8488
|
+
color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
|
|
8489
|
+
font-weight: 500;
|
|
8490
|
+
}
|
|
8491
|
+
.theme-switcher .theme-switcher-buttons {
|
|
8492
|
+
display: flex;
|
|
8493
|
+
background: var(--mm-surface-color, #ffffff);
|
|
8494
|
+
border: 1px solid var(--mm-border-color, rgba(0, 0, 0, 0.12));
|
|
8495
|
+
border-radius: 0.5rem;
|
|
8496
|
+
overflow: hidden;
|
|
8497
|
+
}
|
|
8498
|
+
.theme-switcher .theme-switcher-buttons .btn-flat {
|
|
8499
|
+
display: flex;
|
|
8500
|
+
align-items: center;
|
|
8501
|
+
gap: 0.25rem;
|
|
8502
|
+
padding: 0.5rem 0.75rem;
|
|
8503
|
+
margin: 0;
|
|
8504
|
+
border: none;
|
|
8505
|
+
background: transparent;
|
|
8506
|
+
color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
|
|
8507
|
+
font-size: 0.875rem;
|
|
8508
|
+
border-radius: 0;
|
|
8509
|
+
min-width: auto;
|
|
8510
|
+
height: auto;
|
|
8511
|
+
line-height: 1;
|
|
8512
|
+
text-transform: none;
|
|
8513
|
+
transition: all 0.2s ease;
|
|
8514
|
+
cursor: pointer;
|
|
8515
|
+
}
|
|
8516
|
+
.theme-switcher .theme-switcher-buttons .btn-flat:hover {
|
|
8517
|
+
background: var(--mm-border-color, rgba(0, 0, 0, 0.12));
|
|
8518
|
+
color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
|
|
8519
|
+
}
|
|
8520
|
+
.theme-switcher .theme-switcher-buttons .btn-flat.active {
|
|
8521
|
+
background: var(--mm-primary-color, #26a69a);
|
|
8522
|
+
color: var(--mm-button-text, #ffffff);
|
|
8523
|
+
}
|
|
8524
|
+
.theme-switcher .theme-switcher-buttons .btn-flat.active:hover {
|
|
8525
|
+
background: var(--mm-primary-color-dark, #00695c);
|
|
8526
|
+
}
|
|
8527
|
+
.theme-switcher .theme-switcher-buttons .btn-flat .material-icons {
|
|
8528
|
+
font-size: 1rem;
|
|
8529
|
+
}
|
|
8530
|
+
.theme-switcher .theme-switcher-buttons .btn-flat span {
|
|
8531
|
+
font-size: 0.75rem;
|
|
8532
|
+
font-weight: 500;
|
|
8533
|
+
}
|
|
8534
|
+
|
|
8535
|
+
.theme-toggle {
|
|
8536
|
+
width: 2.5rem;
|
|
8537
|
+
height: 2.5rem;
|
|
8538
|
+
border-radius: 50%;
|
|
8539
|
+
display: flex;
|
|
8540
|
+
align-items: center;
|
|
8541
|
+
justify-content: center;
|
|
8542
|
+
background: var(--mm-surface-color, #ffffff);
|
|
8543
|
+
border: 1px solid var(--mm-border-color, rgba(0, 0, 0, 0.12));
|
|
8544
|
+
color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
|
|
8545
|
+
cursor: pointer;
|
|
8546
|
+
transition: all 0.2s ease;
|
|
8547
|
+
}
|
|
8548
|
+
.theme-toggle:hover {
|
|
8549
|
+
background: var(--mm-primary-color, #26a69a);
|
|
8550
|
+
color: var(--mm-button-text, #ffffff);
|
|
8551
|
+
border-color: var(--mm-primary-color, #26a69a);
|
|
8552
|
+
}
|
|
8553
|
+
.theme-toggle .material-icons {
|
|
8554
|
+
font-size: 1.25rem;
|
|
8555
|
+
}
|
|
8556
|
+
|
|
8557
|
+
nav .theme-toggle {
|
|
8558
|
+
background: transparent;
|
|
8559
|
+
border: none;
|
|
8560
|
+
border-radius: 0;
|
|
8561
|
+
width: 64px;
|
|
8562
|
+
height: 64px;
|
|
8563
|
+
}
|
|
8564
|
+
nav .theme-toggle:hover {
|
|
8565
|
+
background: rgba(255, 255, 255, 0.1);
|
|
8566
|
+
border: none;
|
|
8567
|
+
}
|
|
8568
|
+
nav .theme-toggle:focus {
|
|
8569
|
+
background: rgba(255, 255, 255, 0.1);
|
|
8570
|
+
}
|
|
8571
|
+
|
|
8572
|
+
@media (max-width: 600px) {
|
|
8573
|
+
.theme-switcher .theme-switcher-buttons .btn-flat {
|
|
8574
|
+
padding: 0.5rem;
|
|
8575
|
+
}
|
|
8576
|
+
.theme-switcher .theme-switcher-buttons .btn-flat span {
|
|
8577
|
+
display: none;
|
|
8578
|
+
}
|
|
8579
|
+
}
|
|
8580
|
+
.file-upload-container {
|
|
8581
|
+
margin-bottom: 1rem;
|
|
8582
|
+
}
|
|
8583
|
+
|
|
8584
|
+
.file-upload-area {
|
|
8585
|
+
border: 2px dashed var(--mm-border-color, rgba(0, 0, 0, 0.12));
|
|
8586
|
+
border-radius: 0.5rem;
|
|
8587
|
+
padding: 2rem;
|
|
8588
|
+
text-align: center;
|
|
8589
|
+
cursor: pointer;
|
|
8590
|
+
transition: all 0.2s ease;
|
|
8591
|
+
background: var(--mm-input-background, #ffffff);
|
|
8592
|
+
}
|
|
8593
|
+
.file-upload-area:hover:not(.disabled) {
|
|
8594
|
+
border-color: var(--mm-primary-color, #26a69a);
|
|
8595
|
+
background: var(--mm-surface-color, #f5f5f5);
|
|
8596
|
+
}
|
|
8597
|
+
.file-upload-area.drag-over {
|
|
8598
|
+
border-color: var(--mm-primary-color, #26a69a);
|
|
8599
|
+
background: var(--mm-primary-color-light, rgba(38, 166, 154, 0.1));
|
|
8600
|
+
transform: scale(1.02);
|
|
8601
|
+
}
|
|
8602
|
+
.file-upload-area.disabled {
|
|
8603
|
+
opacity: 0.6;
|
|
8604
|
+
cursor: not-allowed;
|
|
8605
|
+
background: var(--mm-border-color, rgba(0, 0, 0, 0.05));
|
|
8606
|
+
}
|
|
8607
|
+
.file-upload-area.error {
|
|
8608
|
+
border-color: #f44336;
|
|
8609
|
+
}
|
|
8610
|
+
.file-upload-area.has-files {
|
|
8611
|
+
padding: 1rem;
|
|
8612
|
+
}
|
|
8613
|
+
|
|
8614
|
+
.file-upload-content .file-upload-icon {
|
|
8615
|
+
font-size: 3rem;
|
|
8616
|
+
color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
|
|
8617
|
+
margin-bottom: 0.5rem;
|
|
8618
|
+
}
|
|
8619
|
+
.file-upload-content .file-upload-label {
|
|
8620
|
+
font-size: 1.1rem;
|
|
8621
|
+
font-weight: 500;
|
|
8622
|
+
color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
|
|
8623
|
+
margin: 0.5rem 0;
|
|
8624
|
+
}
|
|
8625
|
+
.file-upload-content .file-upload-helper {
|
|
8626
|
+
font-size: 0.875rem;
|
|
8627
|
+
color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
|
|
8628
|
+
margin: 0.25rem 0;
|
|
8629
|
+
}
|
|
8630
|
+
.file-upload-content .file-upload-types {
|
|
8631
|
+
font-size: 0.75rem;
|
|
8632
|
+
color: var(--mm-text-hint, rgba(0, 0, 0, 0.38));
|
|
8633
|
+
margin: 0.25rem 0 0 0;
|
|
8634
|
+
font-style: italic;
|
|
8635
|
+
}
|
|
8636
|
+
|
|
8637
|
+
.file-upload-error {
|
|
8638
|
+
color: #f44336;
|
|
8639
|
+
font-size: 0.875rem;
|
|
8640
|
+
margin-top: 0.5rem;
|
|
8641
|
+
text-align: left;
|
|
8642
|
+
}
|
|
8643
|
+
|
|
8644
|
+
.file-upload-list {
|
|
8645
|
+
margin-top: 1rem;
|
|
8646
|
+
}
|
|
8647
|
+
.file-upload-list h6 {
|
|
8648
|
+
margin: 0 0 0.5rem 0;
|
|
8649
|
+
font-size: 0.875rem;
|
|
8650
|
+
font-weight: 600;
|
|
8651
|
+
color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
|
|
8652
|
+
}
|
|
8653
|
+
|
|
8654
|
+
.file-upload-item {
|
|
8655
|
+
display: flex;
|
|
8656
|
+
align-items: center;
|
|
8657
|
+
gap: 1rem;
|
|
8658
|
+
padding: 0.75rem;
|
|
8659
|
+
margin-bottom: 0.5rem;
|
|
8660
|
+
background: var(--mm-surface-color, #ffffff);
|
|
8661
|
+
border: 1px solid var(--mm-border-color, rgba(0, 0, 0, 0.12));
|
|
8662
|
+
border-radius: 0.5rem;
|
|
8663
|
+
transition: all 0.2s ease;
|
|
8664
|
+
}
|
|
8665
|
+
.file-upload-item:hover {
|
|
8666
|
+
background: var(--mm-card-background, #f5f5f5);
|
|
8667
|
+
}
|
|
8668
|
+
.file-upload-item .file-preview {
|
|
8669
|
+
flex-shrink: 0;
|
|
8670
|
+
width: 3rem;
|
|
8671
|
+
height: 3rem;
|
|
8672
|
+
border-radius: 0.25rem;
|
|
8673
|
+
overflow: hidden;
|
|
8674
|
+
background: var(--mm-border-color, rgba(0, 0, 0, 0.05));
|
|
8675
|
+
}
|
|
8676
|
+
.file-upload-item .file-preview img {
|
|
8677
|
+
width: 100%;
|
|
8678
|
+
height: 100%;
|
|
8679
|
+
-o-object-fit: cover;
|
|
8680
|
+
object-fit: cover;
|
|
8681
|
+
}
|
|
8682
|
+
.file-upload-item .file-info {
|
|
8683
|
+
flex: 1;
|
|
8684
|
+
min-width: 0;
|
|
8685
|
+
}
|
|
8686
|
+
.file-upload-item .file-info .file-name {
|
|
8687
|
+
font-weight: 500;
|
|
8688
|
+
color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
|
|
8689
|
+
margin-bottom: 0.25rem;
|
|
8690
|
+
overflow: hidden;
|
|
8691
|
+
text-overflow: ellipsis;
|
|
8692
|
+
white-space: nowrap;
|
|
8693
|
+
}
|
|
8694
|
+
.file-upload-item .file-info .file-details {
|
|
8695
|
+
display: flex;
|
|
8696
|
+
gap: 1rem;
|
|
8697
|
+
font-size: 0.75rem;
|
|
8698
|
+
color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
|
|
8699
|
+
}
|
|
8700
|
+
.file-upload-item .file-info .file-progress {
|
|
8701
|
+
margin-top: 0.5rem;
|
|
8702
|
+
}
|
|
8703
|
+
.file-upload-item .file-info .file-progress .progress {
|
|
8704
|
+
height: 0.25rem;
|
|
8705
|
+
background-color: var(--mm-border-color, rgba(0, 0, 0, 0.12));
|
|
8706
|
+
border-radius: 0.125rem;
|
|
8707
|
+
overflow: hidden;
|
|
8708
|
+
}
|
|
8709
|
+
.file-upload-item .file-info .file-progress .progress .determinate {
|
|
8710
|
+
background-color: var(--mm-primary-color, #26a69a);
|
|
8711
|
+
height: 100%;
|
|
8712
|
+
transition: width 0.3s ease;
|
|
8713
|
+
}
|
|
8714
|
+
.file-upload-item .file-info .file-error {
|
|
8715
|
+
color: #f44336;
|
|
8716
|
+
font-size: 0.75rem;
|
|
8717
|
+
margin-top: 0.25rem;
|
|
8718
|
+
}
|
|
8719
|
+
.file-upload-item .file-remove {
|
|
8720
|
+
flex-shrink: 0;
|
|
8721
|
+
width: 2rem;
|
|
8722
|
+
height: 2rem;
|
|
8723
|
+
border-radius: 50%;
|
|
8724
|
+
display: flex;
|
|
8725
|
+
align-items: center;
|
|
8726
|
+
justify-content: center;
|
|
8727
|
+
background: transparent;
|
|
8728
|
+
border: none;
|
|
8729
|
+
color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
|
|
8730
|
+
cursor: pointer;
|
|
8731
|
+
transition: all 0.2s ease;
|
|
8732
|
+
}
|
|
8733
|
+
.file-upload-item .file-remove:hover {
|
|
8734
|
+
background: rgba(244, 67, 54, 0.1);
|
|
8735
|
+
color: #f44336;
|
|
8736
|
+
}
|
|
8737
|
+
.file-upload-item .file-remove .material-icons {
|
|
8738
|
+
font-size: 1.25rem;
|
|
8739
|
+
}
|
|
8740
|
+
|
|
8741
|
+
@media (max-width: 600px) {
|
|
8742
|
+
.file-upload-area {
|
|
8743
|
+
padding: 1.5rem 1rem;
|
|
8744
|
+
}
|
|
8745
|
+
.file-upload-area .file-upload-content .file-upload-icon {
|
|
8746
|
+
font-size: 2.5rem;
|
|
8747
|
+
}
|
|
8748
|
+
.file-upload-area .file-upload-content .file-upload-label {
|
|
8749
|
+
font-size: 1rem;
|
|
8750
|
+
}
|
|
8751
|
+
.file-upload-item {
|
|
8752
|
+
gap: 0.75rem;
|
|
8753
|
+
padding: 0.5rem;
|
|
8754
|
+
}
|
|
8755
|
+
.file-upload-item .file-preview {
|
|
8756
|
+
width: 2.5rem;
|
|
8757
|
+
height: 2.5rem;
|
|
8758
|
+
}
|
|
8759
|
+
.file-upload-item .file-info .file-details {
|
|
8760
|
+
flex-direction: column;
|
|
8761
|
+
gap: 0.25rem;
|
|
8762
|
+
}
|
|
8763
|
+
}
|
|
8764
|
+
[data-theme=dark] .file-upload-area.drag-over {
|
|
8765
|
+
background: var(--mm-primary-color-dark, rgba(38, 166, 154, 0.2));
|
|
8766
|
+
}
|
|
8767
|
+
|
|
8768
|
+
.breadcrumb {
|
|
8769
|
+
padding: 1rem 0;
|
|
8770
|
+
margin-bottom: 1rem;
|
|
8771
|
+
background: transparent;
|
|
8772
|
+
display: flex;
|
|
8773
|
+
align-items: center;
|
|
8774
|
+
min-height: 2rem;
|
|
8775
|
+
}
|
|
8776
|
+
.breadcrumb .breadcrumb-list {
|
|
8777
|
+
display: flex;
|
|
8778
|
+
align-items: center;
|
|
8779
|
+
flex-wrap: wrap;
|
|
8780
|
+
list-style: none;
|
|
8781
|
+
padding: 0;
|
|
8782
|
+
margin: 0;
|
|
8783
|
+
gap: 0.5rem;
|
|
8784
|
+
width: 100%;
|
|
8785
|
+
}
|
|
8786
|
+
|
|
8787
|
+
.breadcrumb-item {
|
|
8788
|
+
display: flex;
|
|
8789
|
+
align-items: center;
|
|
8790
|
+
font-size: 0.875rem;
|
|
8791
|
+
line-height: 1.5;
|
|
8792
|
+
}
|
|
8793
|
+
.breadcrumb-item.active .breadcrumb-text {
|
|
8794
|
+
color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
|
|
8795
|
+
font-weight: 500;
|
|
8796
|
+
}
|
|
8797
|
+
.breadcrumb-item.disabled .breadcrumb-text {
|
|
8798
|
+
color: var(--mm-text-disabled, rgba(0, 0, 0, 0.38));
|
|
8799
|
+
cursor: not-allowed;
|
|
8800
|
+
}
|
|
8801
|
+
.breadcrumb-item.breadcrumb-ellipsis .breadcrumb-text {
|
|
8802
|
+
color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
|
|
8803
|
+
font-weight: 400;
|
|
8804
|
+
-webkit-user-select: none;
|
|
8805
|
+
-moz-user-select: none;
|
|
8806
|
+
user-select: none;
|
|
8807
|
+
}
|
|
8808
|
+
|
|
8809
|
+
.breadcrumb-link {
|
|
8810
|
+
display: flex;
|
|
8811
|
+
align-items: center;
|
|
8812
|
+
color: var(--mm-primary-color, #26a69a);
|
|
8813
|
+
text-decoration: none;
|
|
8814
|
+
transition: color 0.2s ease;
|
|
8815
|
+
padding: 0.25rem 0.5rem;
|
|
8816
|
+
border-radius: 4px;
|
|
8817
|
+
}
|
|
8818
|
+
.breadcrumb-link:hover {
|
|
8819
|
+
color: var(--mm-primary-color-dark, #00695c);
|
|
8820
|
+
text-decoration: underline;
|
|
8821
|
+
background: var(--mm-primary-color-light, rgba(38, 166, 154, 0.1));
|
|
8822
|
+
}
|
|
8823
|
+
.breadcrumb-link:focus {
|
|
8824
|
+
outline: 2px solid var(--mm-primary-color, #26a69a);
|
|
8825
|
+
outline-offset: 2px;
|
|
8826
|
+
border-radius: 2px;
|
|
8827
|
+
}
|
|
8828
|
+
|
|
8829
|
+
.breadcrumb-text {
|
|
8830
|
+
color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
|
|
8831
|
+
font-weight: 400;
|
|
8832
|
+
line-height: inherit;
|
|
8833
|
+
overflow: hidden;
|
|
8834
|
+
text-overflow: ellipsis;
|
|
8835
|
+
white-space: nowrap;
|
|
8836
|
+
max-width: 200px;
|
|
8837
|
+
}
|
|
8838
|
+
|
|
8839
|
+
.breadcrumb-icon {
|
|
8840
|
+
font-size: 1.125rem;
|
|
8841
|
+
width: 18px;
|
|
8842
|
+
height: 18px;
|
|
8843
|
+
margin-right: 0.5rem;
|
|
8844
|
+
flex-shrink: 0;
|
|
8845
|
+
color: inherit;
|
|
8846
|
+
display: flex;
|
|
8847
|
+
align-items: center;
|
|
8848
|
+
justify-content: center;
|
|
8849
|
+
}
|
|
8850
|
+
|
|
8851
|
+
.breadcrumb-separator {
|
|
8852
|
+
display: flex;
|
|
8853
|
+
align-items: center;
|
|
8854
|
+
justify-content: center;
|
|
8855
|
+
color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
|
|
8856
|
+
-webkit-user-select: none;
|
|
8857
|
+
-moz-user-select: none;
|
|
8858
|
+
user-select: none;
|
|
8859
|
+
height: 18px;
|
|
8860
|
+
}
|
|
8861
|
+
.breadcrumb-separator .material-icons {
|
|
8862
|
+
font-size: 1.125rem;
|
|
8863
|
+
width: 18px;
|
|
8864
|
+
height: 18px;
|
|
8865
|
+
line-height: 18px;
|
|
8866
|
+
}
|
|
8867
|
+
|
|
8868
|
+
.breadcrumb.compact {
|
|
8869
|
+
padding: 0.25rem 0;
|
|
8870
|
+
margin-bottom: 0.5rem;
|
|
8871
|
+
}
|
|
8872
|
+
.breadcrumb.compact .breadcrumb-item {
|
|
8873
|
+
font-size: 0.75rem;
|
|
8874
|
+
}
|
|
8875
|
+
.breadcrumb.compact .breadcrumb-icon {
|
|
8876
|
+
font-size: 0.875rem;
|
|
8877
|
+
width: 14px;
|
|
8878
|
+
height: 14px;
|
|
8879
|
+
}
|
|
8880
|
+
.breadcrumb.compact .breadcrumb-separator .material-icons {
|
|
8881
|
+
font-size: 0.875rem;
|
|
8882
|
+
width: 14px;
|
|
8883
|
+
height: 14px;
|
|
8884
|
+
}
|
|
8885
|
+
|
|
8886
|
+
.breadcrumb.large {
|
|
8887
|
+
padding: 0.75rem 0;
|
|
8888
|
+
margin-bottom: 1.5rem;
|
|
8889
|
+
}
|
|
8890
|
+
.breadcrumb.large .breadcrumb-item {
|
|
8891
|
+
font-size: 1rem;
|
|
8892
|
+
}
|
|
8893
|
+
.breadcrumb.large .breadcrumb-icon {
|
|
8894
|
+
font-size: 1.125rem;
|
|
8895
|
+
width: 18px;
|
|
8896
|
+
height: 18px;
|
|
8897
|
+
}
|
|
8898
|
+
.breadcrumb.large .breadcrumb-separator .material-icons {
|
|
8899
|
+
font-size: 1.125rem;
|
|
8900
|
+
width: 18px;
|
|
8901
|
+
height: 18px;
|
|
8902
|
+
}
|
|
8903
|
+
|
|
8904
|
+
@media (max-width: 600px) {
|
|
8905
|
+
.breadcrumb .breadcrumb-list {
|
|
8906
|
+
gap: 0.125rem;
|
|
8907
|
+
}
|
|
8908
|
+
.breadcrumb .breadcrumb-item {
|
|
8909
|
+
font-size: 0.75rem;
|
|
8910
|
+
}
|
|
8911
|
+
.breadcrumb .breadcrumb-text {
|
|
8912
|
+
max-width: 120px;
|
|
8913
|
+
}
|
|
8914
|
+
.breadcrumb .breadcrumb-icon {
|
|
8915
|
+
font-size: 0.875rem;
|
|
8916
|
+
width: 14px;
|
|
8917
|
+
height: 14px;
|
|
8918
|
+
margin-right: 0.125rem;
|
|
8919
|
+
}
|
|
8920
|
+
.breadcrumb .breadcrumb-separator .material-icons {
|
|
8921
|
+
font-size: 0.875rem;
|
|
8922
|
+
width: 14px;
|
|
8923
|
+
height: 14px;
|
|
8924
|
+
}
|
|
8925
|
+
}
|
|
8926
|
+
[data-theme=dark] .breadcrumb-link {
|
|
8927
|
+
color: var(--mm-primary-color, #80cbc4);
|
|
8928
|
+
}
|
|
8929
|
+
[data-theme=dark] .breadcrumb-link:hover {
|
|
8930
|
+
color: var(--mm-primary-color-light, #b2dfdb);
|
|
8931
|
+
}
|
|
8932
|
+
|
|
8933
|
+
.breadcrumb.slash-separator .breadcrumb-separator {
|
|
8934
|
+
font-family: monospace;
|
|
8935
|
+
font-size: 0.875rem;
|
|
8936
|
+
}
|
|
8937
|
+
.breadcrumb.slash-separator .breadcrumb-separator .material-icons {
|
|
8938
|
+
display: none;
|
|
8939
|
+
}
|
|
8940
|
+
.breadcrumb.slash-separator .breadcrumb-separator::before {
|
|
8941
|
+
content: "/";
|
|
8942
|
+
color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
|
|
8943
|
+
}
|
|
8944
|
+
|
|
8945
|
+
.breadcrumb.dot-separator .breadcrumb-separator .material-icons {
|
|
8946
|
+
display: none;
|
|
8947
|
+
}
|
|
8948
|
+
.breadcrumb.dot-separator .breadcrumb-separator::before {
|
|
8949
|
+
content: "•";
|
|
8950
|
+
color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
|
|
8951
|
+
font-size: 1rem;
|
|
8952
|
+
}
|
|
8953
|
+
|
|
8954
|
+
.breadcrumb:not([aria-label]) {
|
|
8955
|
+
aria-label: "Breadcrumb navigation";
|
|
8956
|
+
}
|
|
8957
|
+
|
|
8958
|
+
.breadcrumb-link[aria-current=page] {
|
|
8959
|
+
color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
|
|
8960
|
+
text-decoration: none;
|
|
8961
|
+
font-weight: 500;
|
|
8962
|
+
}
|
|
8963
|
+
.breadcrumb-link[aria-current=page]:hover {
|
|
8964
|
+
text-decoration: none;
|
|
8965
|
+
}
|
|
8966
|
+
|
|
8967
|
+
.wizard {
|
|
8968
|
+
display: flex;
|
|
8969
|
+
flex-direction: column;
|
|
8970
|
+
width: 100%;
|
|
8971
|
+
}
|
|
8972
|
+
.wizard.horizontal .wizard-steps {
|
|
8973
|
+
display: flex;
|
|
8974
|
+
align-items: flex-start;
|
|
8975
|
+
justify-content: space-between;
|
|
8976
|
+
position: relative;
|
|
8977
|
+
}
|
|
8978
|
+
.wizard.horizontal .wizard-step {
|
|
8979
|
+
display: flex;
|
|
8980
|
+
flex-direction: column;
|
|
8981
|
+
align-items: center;
|
|
8982
|
+
text-align: center;
|
|
8983
|
+
flex: 1;
|
|
8984
|
+
position: relative;
|
|
8985
|
+
}
|
|
8986
|
+
.wizard.horizontal .wizard-step:not(:last-child) {
|
|
8987
|
+
margin-right: 2rem;
|
|
8988
|
+
}
|
|
8989
|
+
.wizard.horizontal .wizard-step-content {
|
|
8990
|
+
margin-top: 0.75rem;
|
|
8991
|
+
max-width: 200px;
|
|
8992
|
+
}
|
|
8993
|
+
.wizard.horizontal .wizard-step-connector {
|
|
8994
|
+
position: absolute;
|
|
8995
|
+
top: 20px;
|
|
8996
|
+
left: calc(50% + 20px);
|
|
8997
|
+
width: calc(100% - 40px);
|
|
8998
|
+
height: 2px;
|
|
8999
|
+
background: var(--mm-border-color, rgba(0, 0, 0, 0.12));
|
|
9000
|
+
z-index: 1;
|
|
9001
|
+
}
|
|
9002
|
+
.wizard.vertical .wizard-steps {
|
|
9003
|
+
display: flex;
|
|
9004
|
+
flex-direction: column;
|
|
9005
|
+
}
|
|
9006
|
+
.wizard.vertical .wizard-step {
|
|
9007
|
+
display: flex;
|
|
9008
|
+
align-items: flex-start;
|
|
9009
|
+
text-align: left;
|
|
9010
|
+
position: relative;
|
|
9011
|
+
padding-bottom: 2rem;
|
|
9012
|
+
}
|
|
9013
|
+
.wizard.vertical .wizard-step:last-child {
|
|
9014
|
+
padding-bottom: 0;
|
|
9015
|
+
}
|
|
9016
|
+
.wizard.vertical .wizard-step-content {
|
|
9017
|
+
margin-left: 1rem;
|
|
9018
|
+
flex: 1;
|
|
9019
|
+
}
|
|
9020
|
+
.wizard.vertical .wizard-step-connector {
|
|
9021
|
+
position: absolute;
|
|
9022
|
+
top: 40px;
|
|
9023
|
+
left: 19px;
|
|
9024
|
+
bottom: -2rem;
|
|
9025
|
+
width: 2px;
|
|
9026
|
+
background: var(--mm-border-color, rgba(0, 0, 0, 0.12));
|
|
9027
|
+
z-index: 1;
|
|
9028
|
+
}
|
|
9029
|
+
|
|
9030
|
+
.wizard-header {
|
|
9031
|
+
margin-bottom: 2rem;
|
|
9032
|
+
}
|
|
9033
|
+
|
|
9034
|
+
.wizard-step {
|
|
9035
|
+
cursor: pointer;
|
|
9036
|
+
transition: opacity 0.2s ease;
|
|
9037
|
+
}
|
|
9038
|
+
.wizard-step.disabled {
|
|
9039
|
+
opacity: 0.6;
|
|
9040
|
+
cursor: not-allowed;
|
|
9041
|
+
}
|
|
9042
|
+
.wizard-step:hover:not(.disabled) .wizard-step-indicator {
|
|
9043
|
+
box-shadow: 0 0 0 8px var(--mm-primary-color-light, rgba(38, 166, 154, 0.1));
|
|
9044
|
+
}
|
|
9045
|
+
|
|
9046
|
+
.wizard-step-indicator {
|
|
9047
|
+
width: 40px;
|
|
9048
|
+
height: 40px;
|
|
9049
|
+
border-radius: 50%;
|
|
9050
|
+
display: flex;
|
|
9051
|
+
align-items: center;
|
|
9052
|
+
justify-content: center;
|
|
9053
|
+
background: var(--mm-border-color, rgba(0, 0, 0, 0.12));
|
|
9054
|
+
color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
|
|
9055
|
+
font-weight: 500;
|
|
9056
|
+
font-size: 0.875rem;
|
|
9057
|
+
transition: all 0.2s ease;
|
|
9058
|
+
position: relative;
|
|
9059
|
+
z-index: 2;
|
|
9060
|
+
}
|
|
9061
|
+
.wizard-step-indicator .material-icons {
|
|
9062
|
+
font-size: 1.25rem;
|
|
9063
|
+
}
|
|
9064
|
+
.wizard-step-indicator .wizard-step-number {
|
|
9065
|
+
font-weight: 600;
|
|
9066
|
+
}
|
|
9067
|
+
|
|
9068
|
+
.wizard-step.active .wizard-step-indicator {
|
|
9069
|
+
background: var(--mm-primary-color, #26a69a);
|
|
9070
|
+
color: var(--mm-button-text, #ffffff);
|
|
9071
|
+
}
|
|
9072
|
+
.wizard-step.active .wizard-step-title {
|
|
9073
|
+
color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
|
|
9074
|
+
font-weight: 600;
|
|
9075
|
+
}
|
|
9076
|
+
|
|
9077
|
+
.wizard-step.completed .wizard-step-indicator {
|
|
9078
|
+
background: var(--mm-primary-color, #26a69a);
|
|
9079
|
+
color: var(--mm-button-text, #ffffff);
|
|
9080
|
+
}
|
|
9081
|
+
.wizard-step.completed .wizard-step-connector {
|
|
9082
|
+
background: var(--mm-primary-color, #26a69a);
|
|
9083
|
+
}
|
|
9084
|
+
|
|
9085
|
+
.wizard-step.error .wizard-step-indicator {
|
|
9086
|
+
background: #f44336;
|
|
9087
|
+
color: #ffffff;
|
|
9088
|
+
}
|
|
9089
|
+
.wizard-step.error .wizard-step-title {
|
|
9090
|
+
color: #f44336;
|
|
9091
|
+
}
|
|
9092
|
+
|
|
9093
|
+
.wizard-step-title {
|
|
9094
|
+
font-size: 0.875rem;
|
|
9095
|
+
font-weight: 500;
|
|
9096
|
+
color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
|
|
9097
|
+
margin-bottom: 0.25rem;
|
|
9098
|
+
line-height: 1.3;
|
|
9099
|
+
}
|
|
9100
|
+
|
|
9101
|
+
.wizard-step-subtitle {
|
|
9102
|
+
font-size: 0.75rem;
|
|
9103
|
+
color: var(--mm-text-hint, rgba(0, 0, 0, 0.38));
|
|
9104
|
+
line-height: 1.3;
|
|
9105
|
+
margin-bottom: 0.25rem;
|
|
9106
|
+
}
|
|
9107
|
+
|
|
9108
|
+
.wizard-step-optional {
|
|
9109
|
+
font-size: 0.625rem;
|
|
9110
|
+
color: var(--mm-text-hint, rgba(0, 0, 0, 0.38));
|
|
9111
|
+
font-style: italic;
|
|
9112
|
+
text-transform: uppercase;
|
|
9113
|
+
letter-spacing: 0.5px;
|
|
9114
|
+
}
|
|
9115
|
+
|
|
9116
|
+
.wizard-body {
|
|
9117
|
+
flex: 1;
|
|
9118
|
+
margin-bottom: 2rem;
|
|
9119
|
+
}
|
|
9120
|
+
.wizard-body .input-field {
|
|
9121
|
+
margin-bottom: 1.5rem;
|
|
9122
|
+
}
|
|
9123
|
+
.wizard-body .input-field input, .wizard-body .input-field textarea {
|
|
9124
|
+
width: 100%;
|
|
9125
|
+
box-sizing: border-box;
|
|
9126
|
+
}
|
|
9127
|
+
.wizard-body .input-field label {
|
|
9128
|
+
color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
|
|
9129
|
+
transition: all 0.3s ease;
|
|
9130
|
+
}
|
|
9131
|
+
.wizard-body .input-field label.active {
|
|
9132
|
+
color: var(--mm-primary-color, #26a69a);
|
|
9133
|
+
transform: translateY(-14px) scale(0.8);
|
|
9134
|
+
}
|
|
9135
|
+
.wizard-body .row {
|
|
9136
|
+
margin-bottom: 0;
|
|
9137
|
+
}
|
|
9138
|
+
.wizard-body .row .col {
|
|
9139
|
+
padding: 0 0.75rem;
|
|
9140
|
+
}
|
|
9141
|
+
.wizard-body .row .col:first-child {
|
|
9142
|
+
padding-left: 0;
|
|
9143
|
+
}
|
|
9144
|
+
.wizard-body .row .col:last-child {
|
|
9145
|
+
padding-right: 0;
|
|
9146
|
+
}
|
|
9147
|
+
|
|
9148
|
+
.wizard-step-panel {
|
|
9149
|
+
animation: wizard-slide-in 0.3s ease;
|
|
9150
|
+
}
|
|
9151
|
+
|
|
9152
|
+
@keyframes wizard-slide-in {
|
|
9153
|
+
from {
|
|
9154
|
+
opacity: 0;
|
|
9155
|
+
transform: translateX(20px);
|
|
9156
|
+
}
|
|
9157
|
+
to {
|
|
9158
|
+
opacity: 1;
|
|
9159
|
+
transform: translateX(0);
|
|
9160
|
+
}
|
|
9161
|
+
}
|
|
9162
|
+
.wizard-footer {
|
|
9163
|
+
border-top: 1px solid var(--mm-border-color, rgba(0, 0, 0, 0.12));
|
|
9164
|
+
padding-top: 1.5rem;
|
|
9165
|
+
}
|
|
9166
|
+
|
|
9167
|
+
.wizard-navigation {
|
|
9168
|
+
display: flex;
|
|
9169
|
+
justify-content: space-between;
|
|
9170
|
+
align-items: center;
|
|
9171
|
+
gap: 1rem;
|
|
9172
|
+
}
|
|
9173
|
+
.wizard-navigation .wizard-btn-previous,
|
|
9174
|
+
.wizard-navigation .wizard-btn-skip {
|
|
9175
|
+
margin-right: auto;
|
|
9176
|
+
}
|
|
9177
|
+
.wizard-navigation .wizard-btn-next,
|
|
9178
|
+
.wizard-navigation .wizard-btn-complete {
|
|
9179
|
+
margin-left: auto;
|
|
9180
|
+
}
|
|
9181
|
+
.wizard-navigation .wizard-btn-next .material-icons,
|
|
9182
|
+
.wizard-navigation .wizard-btn-complete .material-icons {
|
|
9183
|
+
margin-right: 0.5rem;
|
|
9184
|
+
animation: wizard-loading 1s infinite linear;
|
|
9185
|
+
}
|
|
9186
|
+
|
|
9187
|
+
@keyframes wizard-loading {
|
|
9188
|
+
from {
|
|
9189
|
+
transform: rotate(0deg);
|
|
9190
|
+
}
|
|
9191
|
+
to {
|
|
9192
|
+
transform: rotate(360deg);
|
|
9193
|
+
}
|
|
9194
|
+
}
|
|
9195
|
+
.wizard.compact .wizard-step-indicator {
|
|
9196
|
+
width: 32px;
|
|
9197
|
+
height: 32px;
|
|
9198
|
+
font-size: 0.75rem;
|
|
9199
|
+
}
|
|
9200
|
+
.wizard.compact .wizard-step-indicator .material-icons {
|
|
9201
|
+
font-size: 1rem;
|
|
9202
|
+
}
|
|
9203
|
+
.wizard.compact .wizard-step-title {
|
|
9204
|
+
font-size: 0.75rem;
|
|
9205
|
+
}
|
|
9206
|
+
.wizard.compact .wizard-step-subtitle {
|
|
9207
|
+
font-size: 0.625rem;
|
|
9208
|
+
}
|
|
9209
|
+
.wizard.compact .wizard-header {
|
|
9210
|
+
margin-bottom: 1.5rem;
|
|
9211
|
+
}
|
|
9212
|
+
.wizard.compact.horizontal .wizard-step-connector {
|
|
9213
|
+
top: 16px;
|
|
9214
|
+
}
|
|
9215
|
+
.wizard.compact.vertical .wizard-step-connector {
|
|
9216
|
+
top: 32px;
|
|
9217
|
+
left: 15px;
|
|
9218
|
+
}
|
|
9219
|
+
|
|
9220
|
+
.wizard.large .wizard-step-indicator {
|
|
9221
|
+
width: 48px;
|
|
9222
|
+
height: 48px;
|
|
9223
|
+
font-size: 1rem;
|
|
9224
|
+
}
|
|
9225
|
+
.wizard.large .wizard-step-indicator .material-icons {
|
|
9226
|
+
font-size: 1.5rem;
|
|
9227
|
+
}
|
|
9228
|
+
.wizard.large .wizard-step-title {
|
|
9229
|
+
font-size: 1rem;
|
|
9230
|
+
}
|
|
9231
|
+
.wizard.large .wizard-step-subtitle {
|
|
9232
|
+
font-size: 0.875rem;
|
|
9233
|
+
}
|
|
9234
|
+
.wizard.large .wizard-header {
|
|
9235
|
+
margin-bottom: 2.5rem;
|
|
9236
|
+
}
|
|
9237
|
+
.wizard.large.horizontal .wizard-step-connector {
|
|
9238
|
+
top: 24px;
|
|
9239
|
+
}
|
|
9240
|
+
.wizard.large.vertical .wizard-step-connector {
|
|
9241
|
+
top: 48px;
|
|
9242
|
+
left: 23px;
|
|
9243
|
+
}
|
|
9244
|
+
|
|
9245
|
+
@media (max-width: 768px) {
|
|
9246
|
+
.wizard.horizontal .wizard-steps {
|
|
9247
|
+
flex-direction: column;
|
|
9248
|
+
align-items: stretch;
|
|
9249
|
+
}
|
|
9250
|
+
.wizard.horizontal .wizard-step {
|
|
9251
|
+
flex-direction: row;
|
|
9252
|
+
align-items: center;
|
|
9253
|
+
text-align: left;
|
|
9254
|
+
margin-right: 0;
|
|
9255
|
+
margin-bottom: 1rem;
|
|
9256
|
+
}
|
|
9257
|
+
.wizard.horizontal .wizard-step:last-child {
|
|
9258
|
+
margin-bottom: 0;
|
|
9259
|
+
}
|
|
9260
|
+
.wizard.horizontal .wizard-step-content {
|
|
9261
|
+
margin-top: 0;
|
|
9262
|
+
margin-left: 1rem;
|
|
9263
|
+
max-width: none;
|
|
9264
|
+
}
|
|
9265
|
+
.wizard.horizontal .wizard-step-connector {
|
|
9266
|
+
display: none;
|
|
9267
|
+
}
|
|
9268
|
+
}
|
|
9269
|
+
[data-theme=dark] .wizard-step.error .wizard-step-title {
|
|
9270
|
+
color: #f48fb1;
|
|
9271
|
+
}
|
|
9272
|
+
[data-theme=dark] .wizard-step.error .wizard-step-indicator {
|
|
9273
|
+
background: #f48fb1;
|
|
9274
|
+
color: #000000;
|
|
9275
|
+
}
|
|
9276
|
+
[data-theme=dark] .wizard-footer {
|
|
9277
|
+
border-color: var(--mm-border-color, rgba(255, 255, 255, 0.12));
|
|
9278
|
+
}
|
|
9279
|
+
|
|
9280
|
+
.wizard-step:focus {
|
|
9281
|
+
outline: 2px solid var(--mm-primary-color, #26a69a);
|
|
9282
|
+
outline-offset: 2px;
|
|
9283
|
+
border-radius: 4px;
|
|
9284
|
+
}
|
|
9285
|
+
.wizard-step[aria-disabled=true] {
|
|
9286
|
+
pointer-events: none;
|
|
9287
|
+
}
|
|
9288
|
+
|
|
9289
|
+
.wizard-step-indicator[aria-current=step] {
|
|
9290
|
+
box-shadow: 0 0 0 4px var(--mm-primary-color-light, rgba(38, 166, 154, 0.2));
|
|
9291
|
+
}
|
|
9292
|
+
|
|
9293
|
+
.datatable-container {
|
|
9294
|
+
background: var(--mm-card-background);
|
|
9295
|
+
color: var(--mm-text-primary);
|
|
9296
|
+
border-radius: 4px;
|
|
9297
|
+
}
|
|
9298
|
+
.datatable-container .datatable-title {
|
|
9299
|
+
color: var(--mm-text-primary);
|
|
9300
|
+
font-weight: 400;
|
|
9301
|
+
margin-bottom: 1rem;
|
|
9302
|
+
}
|
|
9303
|
+
.datatable-container .datatable-global-search {
|
|
9304
|
+
padding-top: 0.5rem;
|
|
9305
|
+
}
|
|
9306
|
+
.datatable-container .datatable-wrapper {
|
|
9307
|
+
position: relative;
|
|
9308
|
+
background: var(--mm-card-background);
|
|
9309
|
+
border-radius: 4px;
|
|
9310
|
+
overflow: hidden;
|
|
9311
|
+
}
|
|
9312
|
+
.datatable-container .table-wrapper {
|
|
9313
|
+
overflow-x: auto;
|
|
9314
|
+
width: 100%;
|
|
9315
|
+
-webkit-overflow-scrolling: touch;
|
|
9316
|
+
background: var(--mm-card-background);
|
|
9317
|
+
}
|
|
9318
|
+
.datatable-container .datatable-loading {
|
|
9319
|
+
padding: 2rem;
|
|
9320
|
+
text-align: center;
|
|
9321
|
+
color: var(--mm-text-secondary);
|
|
9322
|
+
background: var(--mm-card-background);
|
|
9323
|
+
}
|
|
9324
|
+
.datatable-container .datatable-loading .preloader-wrapper {
|
|
9325
|
+
margin-bottom: 1rem;
|
|
9326
|
+
}
|
|
9327
|
+
.datatable-container .datatable-empty {
|
|
9328
|
+
padding: 3rem 2rem;
|
|
9329
|
+
text-align: center;
|
|
9330
|
+
color: var(--mm-text-secondary);
|
|
9331
|
+
font-style: italic;
|
|
9332
|
+
background: var(--mm-card-background);
|
|
9333
|
+
}
|
|
9334
|
+
|
|
9335
|
+
.datatable {
|
|
9336
|
+
background: var(--mm-card-background);
|
|
9337
|
+
color: var(--mm-text-primary);
|
|
9338
|
+
border-collapse: collapse;
|
|
9339
|
+
width: 100%;
|
|
9340
|
+
}
|
|
9341
|
+
.datatable thead {
|
|
9342
|
+
background: var(--mm-card-background);
|
|
9343
|
+
}
|
|
9344
|
+
.datatable thead th {
|
|
9345
|
+
background: var(--mm-card-background);
|
|
9346
|
+
color: var(--mm-text-primary);
|
|
9347
|
+
border-bottom: 1px solid var(--mm-border-color);
|
|
9348
|
+
font-weight: 500;
|
|
9349
|
+
padding: 12px 16px;
|
|
9350
|
+
text-align: left;
|
|
9351
|
+
}
|
|
9352
|
+
.datatable tbody {
|
|
9353
|
+
background: var(--mm-card-background);
|
|
9354
|
+
}
|
|
9355
|
+
.datatable tbody td {
|
|
9356
|
+
background: var(--mm-card-background);
|
|
9357
|
+
color: var(--mm-text-primary);
|
|
9358
|
+
border-bottom: 1px solid var(--mm-border-color);
|
|
9359
|
+
padding: 12px 16px;
|
|
9360
|
+
}
|
|
9361
|
+
.datatable thead th.sortable {
|
|
9362
|
+
cursor: pointer;
|
|
9363
|
+
-webkit-user-select: none;
|
|
9364
|
+
-moz-user-select: none;
|
|
9365
|
+
user-select: none;
|
|
9366
|
+
position: relative;
|
|
9367
|
+
transition: background-color 0.2s ease;
|
|
9368
|
+
padding-right: 32px;
|
|
9369
|
+
}
|
|
9370
|
+
.datatable thead th.sortable:hover {
|
|
9371
|
+
background-color: var(--mm-dropdown-hover);
|
|
9372
|
+
}
|
|
9373
|
+
.datatable thead th.sortable .sort-indicators {
|
|
9374
|
+
position: absolute;
|
|
9375
|
+
right: 8px;
|
|
9376
|
+
top: 50%;
|
|
9377
|
+
transform: translateY(-50%);
|
|
9378
|
+
display: flex;
|
|
9379
|
+
flex-direction: column;
|
|
9380
|
+
line-height: 1;
|
|
9381
|
+
}
|
|
9382
|
+
.datatable thead th.sortable .sort-indicators .sort-icon {
|
|
9383
|
+
font-size: 16px;
|
|
9384
|
+
color: var(--mm-text-disabled);
|
|
9385
|
+
transition: color 0.2s ease;
|
|
9386
|
+
}
|
|
9387
|
+
.datatable thead th.sortable .sort-indicators .sort-icon.active {
|
|
9388
|
+
color: var(--mm-primary-color);
|
|
9389
|
+
}
|
|
9390
|
+
.datatable thead th.sortable .sort-indicators .sort-asc {
|
|
9391
|
+
margin-bottom: 0px;
|
|
9392
|
+
}
|
|
9393
|
+
.datatable thead th.sortable .sort-indicators .sort-desc {
|
|
9394
|
+
margin-top: 0px;
|
|
9395
|
+
}
|
|
9396
|
+
.datatable .align-left {
|
|
9397
|
+
text-align: left;
|
|
9398
|
+
}
|
|
9399
|
+
.datatable .align-center {
|
|
9400
|
+
text-align: center;
|
|
9401
|
+
}
|
|
9402
|
+
.datatable .align-right {
|
|
9403
|
+
text-align: right;
|
|
9404
|
+
}
|
|
9405
|
+
.datatable tbody tr {
|
|
9406
|
+
transition: background-color 0.2s ease;
|
|
9407
|
+
cursor: pointer;
|
|
9408
|
+
}
|
|
9409
|
+
.datatable tbody tr:hover {
|
|
9410
|
+
background-color: var(--mm-dropdown-hover);
|
|
9411
|
+
}
|
|
9412
|
+
.datatable tbody tr:hover td {
|
|
9413
|
+
background-color: var(--mm-dropdown-hover);
|
|
9414
|
+
}
|
|
9415
|
+
.datatable.striped tbody tr:nth-child(odd) {
|
|
9416
|
+
background-color: var(--mm-dropdown-focus);
|
|
9417
|
+
}
|
|
9418
|
+
.datatable.striped tbody tr:nth-child(odd) td {
|
|
9419
|
+
background-color: var(--mm-dropdown-focus);
|
|
9420
|
+
}
|
|
9421
|
+
.datatable.striped tbody tr:nth-child(odd):hover {
|
|
9422
|
+
background-color: var(--mm-dropdown-hover);
|
|
9423
|
+
}
|
|
9424
|
+
.datatable.striped tbody tr:nth-child(odd):hover td {
|
|
9425
|
+
background-color: var(--mm-dropdown-hover);
|
|
9426
|
+
}
|
|
9427
|
+
.datatable .selection-checkbox {
|
|
9428
|
+
width: 40px;
|
|
9429
|
+
text-align: center;
|
|
9430
|
+
padding: 0 8px !important;
|
|
9431
|
+
}
|
|
9432
|
+
.datatable .selection-checkbox label {
|
|
9433
|
+
margin: 0;
|
|
9434
|
+
height: 100%;
|
|
9435
|
+
display: flex;
|
|
9436
|
+
align-items: center;
|
|
9437
|
+
justify-content: center;
|
|
9438
|
+
}
|
|
9439
|
+
.datatable .selection-checkbox input[type=checkbox] {
|
|
9440
|
+
opacity: 1;
|
|
9441
|
+
position: relative;
|
|
9442
|
+
left: auto;
|
|
9443
|
+
top: auto;
|
|
9444
|
+
transform: none;
|
|
9445
|
+
margin-right: 0;
|
|
9446
|
+
}
|
|
9447
|
+
.datatable tbody tr.selected {
|
|
9448
|
+
background-color: var(--mm-dropdown-selected) !important;
|
|
9449
|
+
}
|
|
9450
|
+
.datatable tbody tr.selected td {
|
|
9451
|
+
background-color: var(--mm-dropdown-selected) !important;
|
|
9452
|
+
}
|
|
9453
|
+
.datatable tbody tr.selected:hover {
|
|
9454
|
+
background-color: var(--mm-dropdown-selected) !important;
|
|
9455
|
+
opacity: 0.9;
|
|
9456
|
+
}
|
|
9457
|
+
.datatable tbody tr.selected:hover td {
|
|
9458
|
+
background-color: var(--mm-dropdown-selected) !important;
|
|
9459
|
+
opacity: 0.9;
|
|
9460
|
+
}
|
|
9461
|
+
.datatable.fixed-header thead th {
|
|
9462
|
+
position: sticky;
|
|
9463
|
+
top: 0;
|
|
9464
|
+
background: var(--mm-card-background);
|
|
9465
|
+
z-index: 10;
|
|
9466
|
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
9467
|
+
}
|
|
9468
|
+
|
|
9469
|
+
.datatable-pagination {
|
|
9470
|
+
margin-top: 1rem;
|
|
9471
|
+
display: flex;
|
|
9472
|
+
justify-content: space-between;
|
|
9473
|
+
align-items: center;
|
|
9474
|
+
flex-wrap: wrap;
|
|
9475
|
+
gap: 1rem;
|
|
9476
|
+
background: var(--mm-card-background);
|
|
9477
|
+
color: var(--mm-text-primary);
|
|
9478
|
+
padding: 1rem;
|
|
9479
|
+
border-top: 1px solid var(--mm-border-color);
|
|
9480
|
+
}
|
|
9481
|
+
.datatable-pagination .pagination-info {
|
|
9482
|
+
color: var(--mm-text-secondary);
|
|
9483
|
+
font-size: 0.9rem;
|
|
9484
|
+
flex: 1;
|
|
9485
|
+
min-width: 200px;
|
|
9486
|
+
}
|
|
9487
|
+
.datatable-pagination .pagination-controls {
|
|
9488
|
+
display: flex;
|
|
9489
|
+
align-items: center;
|
|
9490
|
+
gap: 0.5rem;
|
|
9491
|
+
}
|
|
9492
|
+
.datatable-pagination .pagination-controls button.btn-flat {
|
|
9493
|
+
min-width: 40px;
|
|
9494
|
+
height: 40px;
|
|
9495
|
+
padding: 0;
|
|
9496
|
+
display: flex;
|
|
9497
|
+
align-items: center;
|
|
9498
|
+
justify-content: center;
|
|
9499
|
+
border-radius: 50%;
|
|
9500
|
+
transition: background-color 0.2s ease;
|
|
9501
|
+
background: transparent;
|
|
9502
|
+
color: var(--mm-text-primary);
|
|
9503
|
+
border: 1px solid var(--mm-border-color);
|
|
9504
|
+
}
|
|
9505
|
+
.datatable-pagination .pagination-controls button.btn-flat:hover:not(:disabled) {
|
|
9506
|
+
background-color: var(--mm-dropdown-hover);
|
|
9507
|
+
}
|
|
9508
|
+
.datatable-pagination .pagination-controls button.btn-flat:disabled {
|
|
9509
|
+
color: var(--mm-text-disabled);
|
|
9510
|
+
cursor: not-allowed;
|
|
9511
|
+
border-color: var(--mm-text-disabled);
|
|
9512
|
+
opacity: 0.6;
|
|
9513
|
+
}
|
|
9514
|
+
.datatable-pagination .pagination-controls button.btn-flat i {
|
|
9515
|
+
font-size: 20px;
|
|
9516
|
+
}
|
|
9517
|
+
.datatable-pagination .pagination-controls .page-info {
|
|
9518
|
+
margin: 0 0.5rem;
|
|
9519
|
+
color: var(--mm-text-secondary);
|
|
9520
|
+
font-weight: 500;
|
|
9521
|
+
white-space: nowrap;
|
|
9522
|
+
}
|
|
9523
|
+
|
|
9524
|
+
@media only screen and (max-width : 992px) {
|
|
9525
|
+
.datatable-container .datatable-search {
|
|
9526
|
+
max-width: 100%;
|
|
9527
|
+
}
|
|
9528
|
+
.datatable-container .datatable-pagination {
|
|
9529
|
+
flex-direction: column;
|
|
9530
|
+
align-items: stretch;
|
|
9531
|
+
text-align: center;
|
|
9532
|
+
}
|
|
9533
|
+
.datatable-container .datatable-pagination .pagination-info {
|
|
9534
|
+
order: 2;
|
|
9535
|
+
margin-top: 0.5rem;
|
|
9536
|
+
text-align: center;
|
|
9537
|
+
}
|
|
9538
|
+
.datatable-container .datatable-pagination .pagination-controls {
|
|
9539
|
+
order: 1;
|
|
9540
|
+
justify-content: center;
|
|
9541
|
+
}
|
|
9542
|
+
.datatable.responsive-table.mobile-hide-secondary th:nth-child(n+4),
|
|
9543
|
+
.datatable.responsive-table.mobile-hide-secondary td:nth-child(n+4) {
|
|
9544
|
+
display: none;
|
|
9545
|
+
}
|
|
9546
|
+
}
|
|
9547
|
+
@media only screen and (max-width : 992px) and (max-width : 600px) {
|
|
9548
|
+
.datatable.responsive-table.mobile-stack thead {
|
|
9549
|
+
display: none;
|
|
9550
|
+
}
|
|
9551
|
+
.datatable.responsive-table.mobile-stack tbody tr {
|
|
9552
|
+
display: block;
|
|
9553
|
+
border: 1px solid var(--mm-border-color);
|
|
9554
|
+
margin-bottom: 1rem;
|
|
9555
|
+
padding: 1rem;
|
|
9556
|
+
border-radius: 4px;
|
|
9557
|
+
background: var(--mm-card-background);
|
|
9558
|
+
}
|
|
9559
|
+
.datatable.responsive-table.mobile-stack tbody td {
|
|
9560
|
+
display: block;
|
|
9561
|
+
text-align: left !important;
|
|
9562
|
+
padding: 0.5rem 0;
|
|
9563
|
+
border: none;
|
|
9564
|
+
}
|
|
9565
|
+
.datatable.responsive-table.mobile-stack tbody td::before {
|
|
9566
|
+
content: attr(data-label) ": ";
|
|
9567
|
+
font-weight: bold;
|
|
9568
|
+
color: var(--mm-text-secondary);
|
|
9569
|
+
display: inline-block;
|
|
9570
|
+
min-width: 100px;
|
|
9571
|
+
}
|
|
9572
|
+
}
|
|
9573
|
+
@media (prefers-color-scheme: dark) {
|
|
9574
|
+
:root:not([data-theme]) .datatable-container .datatable thead th.sortable:hover,
|
|
9575
|
+
[data-theme=dark] .datatable-container .datatable thead th.sortable:hover {
|
|
9576
|
+
background-color: var(--mm-dropdown-hover);
|
|
9577
|
+
}
|
|
9578
|
+
:root:not([data-theme]) .datatable-container .datatable tbody tr:hover,
|
|
9579
|
+
[data-theme=dark] .datatable-container .datatable tbody tr:hover {
|
|
9580
|
+
background-color: var(--mm-dropdown-hover);
|
|
9581
|
+
}
|
|
9582
|
+
:root:not([data-theme]) .datatable-container .datatable.striped tbody tr:nth-child(odd),
|
|
9583
|
+
[data-theme=dark] .datatable-container .datatable.striped tbody tr:nth-child(odd) {
|
|
9584
|
+
background-color: rgba(255, 255, 255, 0.05);
|
|
9585
|
+
}
|
|
9586
|
+
:root:not([data-theme]) .datatable-container .datatable.fixed-header thead th,
|
|
9587
|
+
[data-theme=dark] .datatable-container .datatable.fixed-header thead th {
|
|
9588
|
+
border-bottom: 1px solid var(--mm-border-color);
|
|
9589
|
+
}
|
|
9590
|
+
}
|
|
9591
|
+
.datatable {
|
|
9592
|
+
contain: layout style paint;
|
|
9593
|
+
}
|
|
9594
|
+
.datatable.virtual-table {
|
|
9595
|
+
transform: translateZ(0);
|
|
9596
|
+
backface-visibility: hidden;
|
|
9597
|
+
}
|
|
9598
|
+
.datatable tbody tr {
|
|
9599
|
+
transform: translateZ(0);
|
|
9600
|
+
will-change: transform;
|
|
9601
|
+
}
|
|
9602
|
+
.datatable.fixed-layout {
|
|
9603
|
+
table-layout: fixed;
|
|
9604
|
+
}
|
|
9605
|
+
.datatable.fixed-layout th, .datatable.fixed-layout td {
|
|
9606
|
+
overflow: hidden;
|
|
9607
|
+
text-overflow: ellipsis;
|
|
9608
|
+
white-space: nowrap;
|
|
9609
|
+
}
|