@materializecss/materialize 2.0.2-alpha → 2.0.3-beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (99) hide show
  1. package/Gruntfile.js +14 -109
  2. package/README.md +1 -1
  3. package/dist/css/materialize.css +1658 -353
  4. package/dist/css/materialize.min.css +2 -2
  5. package/dist/js/materialize.js +42 -30
  6. package/dist/js/materialize.min.js +2 -2
  7. package/dist/js/materialize.min.js.map +1 -1
  8. package/dist/src/autocomplete.d.ts +143 -0
  9. package/dist/src/autocomplete.d.ts.map +1 -0
  10. package/dist/src/bounding.d.ts +7 -0
  11. package/dist/src/bounding.d.ts.map +1 -0
  12. package/dist/src/buttons.d.ts +65 -0
  13. package/dist/src/buttons.d.ts.map +1 -0
  14. package/dist/src/cards.d.ts +4 -0
  15. package/dist/src/cards.d.ts.map +1 -0
  16. package/dist/src/carousel.d.ts +131 -0
  17. package/dist/src/carousel.d.ts.map +1 -0
  18. package/dist/src/characterCounter.d.ts +37 -0
  19. package/dist/src/characterCounter.d.ts.map +1 -0
  20. package/dist/src/chips.d.ts +131 -0
  21. package/dist/src/chips.d.ts.map +1 -0
  22. package/dist/src/collapsible.d.ts +74 -0
  23. package/dist/src/collapsible.d.ts.map +1 -0
  24. package/dist/src/component.d.ts +74 -0
  25. package/dist/src/component.d.ts.map +1 -0
  26. package/dist/src/datepicker.d.ts +248 -0
  27. package/dist/src/datepicker.d.ts.map +1 -0
  28. package/dist/src/dropdown.d.ts +148 -0
  29. package/dist/src/dropdown.d.ts.map +1 -0
  30. package/dist/src/edges.d.ts +7 -0
  31. package/dist/src/edges.d.ts.map +1 -0
  32. package/dist/src/forms.d.ts +12 -0
  33. package/dist/src/forms.d.ts.map +1 -0
  34. package/dist/src/global.d.ts +60 -0
  35. package/dist/src/global.d.ts.map +1 -0
  36. package/dist/src/index.d.ts +27 -0
  37. package/dist/src/index.d.ts.map +1 -0
  38. package/dist/src/materialbox.d.ts +92 -0
  39. package/dist/src/materialbox.d.ts.map +1 -0
  40. package/dist/src/modal.d.ts +119 -0
  41. package/dist/src/modal.d.ts.map +1 -0
  42. package/dist/src/parallax.d.ts +40 -0
  43. package/dist/src/parallax.d.ts.map +1 -0
  44. package/dist/src/pushpin.d.ts +52 -0
  45. package/dist/src/pushpin.d.ts.map +1 -0
  46. package/dist/src/range.d.ts +41 -0
  47. package/dist/src/range.d.ts.map +1 -0
  48. package/dist/src/scrollspy.d.ts +62 -0
  49. package/dist/src/scrollspy.d.ts.map +1 -0
  50. package/dist/src/select.d.ts +77 -0
  51. package/dist/src/select.d.ts.map +1 -0
  52. package/dist/src/sidenav.d.ts +122 -0
  53. package/dist/src/sidenav.d.ts.map +1 -0
  54. package/dist/src/slider.d.ts +103 -0
  55. package/dist/src/slider.d.ts.map +1 -0
  56. package/dist/src/tabs.d.ts +80 -0
  57. package/dist/src/tabs.d.ts.map +1 -0
  58. package/dist/src/tapTarget.d.ts +59 -0
  59. package/dist/src/tapTarget.d.ts.map +1 -0
  60. package/dist/src/timepicker.d.ts +208 -0
  61. package/dist/src/timepicker.d.ts.map +1 -0
  62. package/dist/src/toasts.d.ts +90 -0
  63. package/dist/src/toasts.d.ts.map +1 -0
  64. package/dist/src/tooltip.d.ts +118 -0
  65. package/dist/src/tooltip.d.ts.map +1 -0
  66. package/dist/src/utils.d.ts +97 -0
  67. package/dist/src/utils.d.ts.map +1 -0
  68. package/dist/src/waves.d.ts +16 -0
  69. package/dist/src/waves.d.ts.map +1 -0
  70. package/package.json +4 -4
  71. package/sass/components/_buttons.scss +158 -73
  72. package/sass/components/_cards.scss +1 -1
  73. package/sass/components/_chips.scss +75 -28
  74. package/sass/components/_global.scss +56 -94
  75. package/sass/components/_grid.scss +28 -47
  76. package/sass/components/_navbar.scss +26 -26
  77. package/sass/components/_preloader.scss +85 -0
  78. package/sass/components/_pulse.scss +1 -0
  79. package/sass/components/_sidenav.scss +3 -14
  80. package/sass/components/_theme_variables.scss +27 -47
  81. package/sass/components/_variables.scss +5 -2
  82. package/sass/components/colors.module.scss +180 -0
  83. package/sass/components/forms/_range.scss +1 -1
  84. package/sass/components/forms/_switches.scss +44 -14
  85. package/sass/components/theme.dark.module.scss +32 -0
  86. package/sass/components/theme.light.module.scss +32 -0
  87. package/sass/components/tokens.module.scss +272 -0
  88. package/sass/components/typography.module.scss +150 -0
  89. package/sass/materialize.scss +7 -1
  90. package/src/carousel.ts +1 -1
  91. package/src/chips.ts +1 -1
  92. package/src/datepicker.ts +5 -5
  93. package/src/dropdown.ts +0 -3
  94. package/src/forms.ts +20 -11
  95. package/src/global.ts +21 -23
  96. package/src/index.ts +26 -0
  97. package/src/select.ts +1 -1
  98. package/src/timepicker.ts +1 -1
  99. package/src/tooltip.ts +28 -8
@@ -1,9 +1,841 @@
1
1
  /*!
2
- * Materialize v2.0.2-alpha (https://materializecss.github.io/materialize)
2
+ * Materialize v2.0.3-beta (https://materializecss.github.io/materialize)
3
3
  * Copyright 2014-2023 Materialize
4
4
  * MIT License (https://raw.githubusercontent.com/materializecss/materialize/master/LICENSE)
5
5
  */
6
6
  @charset "UTF-8";
7
+ :root {
8
+ --md-source: #006495;
9
+ /* primary */
10
+ --md-ref-palette-primary0: #000000;
11
+ --md-ref-palette-primary10: #001e30;
12
+ --md-ref-palette-primary20: #003450;
13
+ --md-ref-palette-primary25: #003f60;
14
+ --md-ref-palette-primary30: #004b71;
15
+ --md-ref-palette-primary35: #005783;
16
+ --md-ref-palette-primary40: #006495;
17
+ --md-ref-palette-primary50: #0f7eb8;
18
+ --md-ref-palette-primary60: #3d98d4;
19
+ --md-ref-palette-primary70: #5db3f0;
20
+ --md-ref-palette-primary80: #8fcdff;
21
+ --md-ref-palette-primary90: #cbe6ff;
22
+ --md-ref-palette-primary95: #e6f2ff;
23
+ --md-ref-palette-primary98: #f7f9ff;
24
+ --md-ref-palette-primary99: #fcfcff;
25
+ --md-ref-palette-primary100: #ffffff;
26
+ /* secondary */
27
+ --md-ref-palette-secondary0: #000000;
28
+ --md-ref-palette-secondary10: #0d1d29;
29
+ --md-ref-palette-secondary20: #22323f;
30
+ --md-ref-palette-secondary25: #2d3d4b;
31
+ --md-ref-palette-secondary30: #394856;
32
+ --md-ref-palette-secondary35: #445462;
33
+ --md-ref-palette-secondary40: #50606f;
34
+ --md-ref-palette-secondary50: #697988;
35
+ --md-ref-palette-secondary60: #8293a2;
36
+ --md-ref-palette-secondary70: #9dadbd;
37
+ --md-ref-palette-secondary80: #b8c8d9;
38
+ --md-ref-palette-secondary90: #d4e4f6;
39
+ --md-ref-palette-secondary95: #e6f2ff;
40
+ --md-ref-palette-secondary98: #f7f9ff;
41
+ --md-ref-palette-secondary99: #fcfcff;
42
+ --md-ref-palette-secondary100: #ffffff;
43
+ /* tertiary */
44
+ --md-ref-palette-tertiary0: #000000;
45
+ --md-ref-palette-tertiary10: #211634;
46
+ --md-ref-palette-tertiary20: #362b4a;
47
+ --md-ref-palette-tertiary25: #423656;
48
+ --md-ref-palette-tertiary30: #4d4162;
49
+ --md-ref-palette-tertiary35: #594c6e;
50
+ --md-ref-palette-tertiary40: #66587b;
51
+ --md-ref-palette-tertiary50: #7f7195;
52
+ --md-ref-palette-tertiary60: #998ab0;
53
+ --md-ref-palette-tertiary70: #b4a4cb;
54
+ --md-ref-palette-tertiary80: #d0bfe7;
55
+ --md-ref-palette-tertiary90: #ecdcff;
56
+ --md-ref-palette-tertiary95: #f7edff;
57
+ --md-ref-palette-tertiary98: #fef7ff;
58
+ --md-ref-palette-tertiary99: #fffbff;
59
+ --md-ref-palette-tertiary100: #ffffff;
60
+ /* neutral */
61
+ --md-ref-palette-neutral0: #000000;
62
+ --md-ref-palette-neutral10: #1a1c1e;
63
+ --md-ref-palette-neutral20: #2e3133;
64
+ --md-ref-palette-neutral25: #3a3c3e;
65
+ --md-ref-palette-neutral30: #454749;
66
+ --md-ref-palette-neutral35: #515255;
67
+ --md-ref-palette-neutral40: #5d5e61;
68
+ --md-ref-palette-neutral50: #76777a;
69
+ --md-ref-palette-neutral60: #8f9194;
70
+ --md-ref-palette-neutral70: #aaabae;
71
+ --md-ref-palette-neutral80: #c6c6c9;
72
+ --md-ref-palette-neutral90: #e2e2e5;
73
+ --md-ref-palette-neutral95: #f0f0f3;
74
+ --md-ref-palette-neutral98: #f9f9fc;
75
+ --md-ref-palette-neutral99: #fcfcff;
76
+ --md-ref-palette-neutral100: #ffffff;
77
+ /* neutral-variant */
78
+ --md-ref-palette-neutral-variant0: #000000;
79
+ --md-ref-palette-neutral-variant10: #161c22;
80
+ --md-ref-palette-neutral-variant20: #2b3137;
81
+ --md-ref-palette-neutral-variant25: #363c42;
82
+ --md-ref-palette-neutral-variant30: #41474d;
83
+ --md-ref-palette-neutral-variant35: #4d5359;
84
+ --md-ref-palette-neutral-variant40: #595f65;
85
+ --md-ref-palette-neutral-variant50: #72787e;
86
+ --md-ref-palette-neutral-variant60: #8b9198;
87
+ --md-ref-palette-neutral-variant70: #a6acb3;
88
+ --md-ref-palette-neutral-variant80: #c1c7ce;
89
+ --md-ref-palette-neutral-variant90: #dee3ea;
90
+ --md-ref-palette-neutral-variant95: #ecf1f9;
91
+ --md-ref-palette-neutral-variant98: #f7f9ff;
92
+ --md-ref-palette-neutral-variant99: #fcfcff;
93
+ --md-ref-palette-neutral-variant100: #ffffff;
94
+ /* error */
95
+ --md-ref-palette-error0: #000000;
96
+ --md-ref-palette-error10: #410002;
97
+ --md-ref-palette-error20: #690005;
98
+ --md-ref-palette-error25: #7e0007;
99
+ --md-ref-palette-error30: #93000a;
100
+ --md-ref-palette-error35: #a80710;
101
+ --md-ref-palette-error40: #ba1a1a;
102
+ --md-ref-palette-error50: #de3730;
103
+ --md-ref-palette-error60: #ff5449;
104
+ --md-ref-palette-error70: #ff897d;
105
+ --md-ref-palette-error80: #ffb4ab;
106
+ --md-ref-palette-error90: #ffdad6;
107
+ --md-ref-palette-error95: #ffedea;
108
+ --md-ref-palette-error98: #fff8f7;
109
+ --md-ref-palette-error99: #fffbff;
110
+ --md-ref-palette-error100: #ffffff;
111
+ /* light */
112
+ --md-sys-color-primary-light: #006495;
113
+ --md-sys-color-on-primary-light: #ffffff;
114
+ --md-sys-color-primary-container-light: #cbe6ff;
115
+ --md-sys-color-on-primary-container-light: #001e30;
116
+ --md-sys-color-secondary-light: #50606f;
117
+ --md-sys-color-on-secondary-light: #ffffff;
118
+ --md-sys-color-secondary-container-light: #d4e4f6;
119
+ --md-sys-color-on-secondary-container-light: #0d1d29;
120
+ --md-sys-color-tertiary-light: #66587b;
121
+ --md-sys-color-on-tertiary-light: #ffffff;
122
+ --md-sys-color-tertiary-container-light: #ecdcff;
123
+ --md-sys-color-on-tertiary-container-light: #211634;
124
+ --md-sys-color-error-light: #ba1a1a;
125
+ --md-sys-color-error-container-light: #ffdad6;
126
+ --md-sys-color-on-error-light: #ffffff;
127
+ --md-sys-color-on-error-container-light: #410002;
128
+ --md-sys-color-background-light: #fcfcff;
129
+ --md-sys-color-on-background-light: #1a1c1e;
130
+ --md-sys-color-surface-light: #fcfcff;
131
+ --md-sys-color-on-surface-light: #1a1c1e;
132
+ --md-sys-color-surface-variant-light: #dee3ea;
133
+ --md-sys-color-on-surface-variant-light: #41474d;
134
+ --md-sys-color-outline-light: #72787e;
135
+ --md-sys-color-inverse-on-surface-light: #f0f0f3;
136
+ --md-sys-color-inverse-surface-light: #2e3133;
137
+ --md-sys-color-inverse-primary-light: #8fcdff;
138
+ --md-sys-color-shadow-light: #000000;
139
+ --md-sys-color-surface-tint-light: #006495;
140
+ --md-sys-color-outline-variant-light: #c1c7ce;
141
+ --md-sys-color-scrim-light: #000000;
142
+ /* dark */
143
+ --md-sys-color-primary-dark: #8fcdff;
144
+ --md-sys-color-on-primary-dark: #003450;
145
+ --md-sys-color-primary-container-dark: #004b71;
146
+ --md-sys-color-on-primary-container-dark: #cbe6ff;
147
+ --md-sys-color-secondary-dark: #b8c8d9;
148
+ --md-sys-color-on-secondary-dark: #22323f;
149
+ --md-sys-color-secondary-container-dark: #394856;
150
+ --md-sys-color-on-secondary-container-dark: #d4e4f6;
151
+ --md-sys-color-tertiary-dark: #d0bfe7;
152
+ --md-sys-color-on-tertiary-dark: #362b4a;
153
+ --md-sys-color-tertiary-container-dark: #4d4162;
154
+ --md-sys-color-on-tertiary-container-dark: #ecdcff;
155
+ --md-sys-color-error-dark: #ffb4ab;
156
+ --md-sys-color-error-container-dark: #93000a;
157
+ --md-sys-color-on-error-dark: #690005;
158
+ --md-sys-color-on-error-container-dark: #ffdad6;
159
+ --md-sys-color-background-dark: #1a1c1e;
160
+ --md-sys-color-on-background-dark: #e2e2e5;
161
+ --md-sys-color-surface-dark: #1a1c1e;
162
+ --md-sys-color-on-surface-dark: #e2e2e5;
163
+ --md-sys-color-surface-variant-dark: #41474d;
164
+ --md-sys-color-on-surface-variant-dark: #c1c7ce;
165
+ --md-sys-color-outline-dark: #8b9198;
166
+ --md-sys-color-inverse-on-surface-dark: #1a1c1e;
167
+ --md-sys-color-inverse-surface-dark: #e2e2e5;
168
+ --md-sys-color-inverse-primary-dark: #006495;
169
+ --md-sys-color-shadow-dark: #000000;
170
+ --md-sys-color-surface-tint-dark: #8fcdff;
171
+ --md-sys-color-outline-variant-dark: #41474d;
172
+ --md-sys-color-scrim-dark: #000000;
173
+ /* display - large */
174
+ --md-sys-typescale-display-large-font-family-name: Roboto;
175
+ --md-sys-typescale-display-large-font-family-style: Regular;
176
+ --md-sys-typescale-display-large-font-weight: 400px;
177
+ --md-sys-typescale-display-large-font-size: 57px;
178
+ --md-sys-typescale-display-large-line-height: 64px;
179
+ --md-sys-typescale-display-large-letter-spacing: -0.25px;
180
+ /* display - medium */
181
+ --md-sys-typescale-display-medium-font-family-name: Roboto;
182
+ --md-sys-typescale-display-medium-font-family-style: Regular;
183
+ --md-sys-typescale-display-medium-font-weight: 400px;
184
+ --md-sys-typescale-display-medium-font-size: 45px;
185
+ --md-sys-typescale-display-medium-line-height: 52px;
186
+ --md-sys-typescale-display-medium-letter-spacing: 0px;
187
+ /* display - small */
188
+ --md-sys-typescale-display-small-font-family-name: Roboto;
189
+ --md-sys-typescale-display-small-font-family-style: Regular;
190
+ --md-sys-typescale-display-small-font-weight: 400px;
191
+ --md-sys-typescale-display-small-font-size: 36px;
192
+ --md-sys-typescale-display-small-line-height: 44px;
193
+ --md-sys-typescale-display-small-letter-spacing: 0px;
194
+ /* headline - large */
195
+ --md-sys-typescale-headline-large-font-family-name: Roboto;
196
+ --md-sys-typescale-headline-large-font-family-style: Regular;
197
+ --md-sys-typescale-headline-large-font-weight: 400px;
198
+ --md-sys-typescale-headline-large-font-size: 32px;
199
+ --md-sys-typescale-headline-large-line-height: 40px;
200
+ --md-sys-typescale-headline-large-letter-spacing: 0px;
201
+ /* headline - medium */
202
+ --md-sys-typescale-headline-medium-font-family-name: Roboto;
203
+ --md-sys-typescale-headline-medium-font-family-style: Regular;
204
+ --md-sys-typescale-headline-medium-font-weight: 400px;
205
+ --md-sys-typescale-headline-medium-font-size: 28px;
206
+ --md-sys-typescale-headline-medium-line-height: 36px;
207
+ --md-sys-typescale-headline-medium-letter-spacing: 0px;
208
+ /* headline - small */
209
+ --md-sys-typescale-headline-small-font-family-name: Roboto;
210
+ --md-sys-typescale-headline-small-font-family-style: Regular;
211
+ --md-sys-typescale-headline-small-font-weight: 400px;
212
+ --md-sys-typescale-headline-small-font-size: 24px;
213
+ --md-sys-typescale-headline-small-line-height: 32px;
214
+ --md-sys-typescale-headline-small-letter-spacing: 0px;
215
+ /* body - large */
216
+ --md-sys-typescale-body-large-font-family-name: Roboto;
217
+ --md-sys-typescale-body-large-font-family-style: Regular;
218
+ --md-sys-typescale-body-large-font-weight: 400px;
219
+ --md-sys-typescale-body-large-font-size: 16px;
220
+ --md-sys-typescale-body-large-line-height: 24px;
221
+ --md-sys-typescale-body-large-letter-spacing: 0.50px;
222
+ /* body - medium */
223
+ --md-sys-typescale-body-medium-font-family-name: Roboto;
224
+ --md-sys-typescale-body-medium-font-family-style: Regular;
225
+ --md-sys-typescale-body-medium-font-weight: 400px;
226
+ --md-sys-typescale-body-medium-font-size: 14px;
227
+ --md-sys-typescale-body-medium-line-height: 20px;
228
+ --md-sys-typescale-body-medium-letter-spacing: 0.25px;
229
+ /* body - small */
230
+ --md-sys-typescale-body-small-font-family-name: Roboto;
231
+ --md-sys-typescale-body-small-font-family-style: Regular;
232
+ --md-sys-typescale-body-small-font-weight: 400px;
233
+ --md-sys-typescale-body-small-font-size: 12px;
234
+ --md-sys-typescale-body-small-line-height: 16px;
235
+ --md-sys-typescale-body-small-letter-spacing: 0.40px;
236
+ /* label - large */
237
+ --md-sys-typescale-label-large-font-family-name: Roboto;
238
+ --md-sys-typescale-label-large-font-family-style: Medium;
239
+ --md-sys-typescale-label-large-font-weight: 500px;
240
+ --md-sys-typescale-label-large-font-size: 14px;
241
+ --md-sys-typescale-label-large-line-height: 20px;
242
+ --md-sys-typescale-label-large-letter-spacing: 0.10px;
243
+ /* label - medium */
244
+ --md-sys-typescale-label-medium-font-family-name: Roboto;
245
+ --md-sys-typescale-label-medium-font-family-style: Medium;
246
+ --md-sys-typescale-label-medium-font-weight: 500px;
247
+ --md-sys-typescale-label-medium-font-size: 12px;
248
+ --md-sys-typescale-label-medium-line-height: 16px;
249
+ --md-sys-typescale-label-medium-letter-spacing: 0.50px;
250
+ /* label - small */
251
+ --md-sys-typescale-label-small-font-family-name: Roboto;
252
+ --md-sys-typescale-label-small-font-family-style: Medium;
253
+ --md-sys-typescale-label-small-font-weight: 500px;
254
+ --md-sys-typescale-label-small-font-size: 11px;
255
+ --md-sys-typescale-label-small-line-height: 16px;
256
+ --md-sys-typescale-label-small-letter-spacing: 0.50px;
257
+ /* title - large */
258
+ --md-sys-typescale-title-large-font-family-name: Roboto;
259
+ --md-sys-typescale-title-large-font-family-style: Regular;
260
+ --md-sys-typescale-title-large-font-weight: 400px;
261
+ --md-sys-typescale-title-large-font-size: 22px;
262
+ --md-sys-typescale-title-large-line-height: 28px;
263
+ --md-sys-typescale-title-large-letter-spacing: 0px;
264
+ /* title - medium */
265
+ --md-sys-typescale-title-medium-font-family-name: Roboto;
266
+ --md-sys-typescale-title-medium-font-family-style: Medium;
267
+ --md-sys-typescale-title-medium-font-weight: 500px;
268
+ --md-sys-typescale-title-medium-font-size: 16px;
269
+ --md-sys-typescale-title-medium-line-height: 24px;
270
+ --md-sys-typescale-title-medium-letter-spacing: 0.15px;
271
+ /* title - small */
272
+ --md-sys-typescale-title-small-font-family-name: Roboto;
273
+ --md-sys-typescale-title-small-font-family-style: Medium;
274
+ --md-sys-typescale-title-small-font-weight: 500px;
275
+ --md-sys-typescale-title-small-font-size: 14px;
276
+ --md-sys-typescale-title-small-line-height: 20px;
277
+ --md-sys-typescale-title-small-letter-spacing: 0.10px;
278
+ }
279
+
280
+ .primary {
281
+ background-color: var(--md-sys-color-primary);
282
+ }
283
+
284
+ .primary-text {
285
+ color: var(--md-sys-color-primary);
286
+ }
287
+
288
+ .on-primary {
289
+ background-color: var(--md-sys-color-on-primary);
290
+ }
291
+
292
+ .on-primary-text {
293
+ color: var(--md-sys-color-on-primary);
294
+ }
295
+
296
+ .primary-container {
297
+ background-color: var(--md-sys-color-primary-container);
298
+ }
299
+
300
+ .primary-container-text {
301
+ color: var(--md-sys-color-primary-container);
302
+ }
303
+
304
+ .on-primary-container {
305
+ background-color: var(--md-sys-color-on-primary-container);
306
+ }
307
+
308
+ .on-primary-container-text {
309
+ color: var(--md-sys-color-on-primary-container);
310
+ }
311
+
312
+ .secondary {
313
+ background-color: var(--md-sys-color-secondary);
314
+ }
315
+
316
+ .secondary-text {
317
+ color: var(--md-sys-color-secondary);
318
+ }
319
+
320
+ .on-secondary {
321
+ background-color: var(--md-sys-color-on-secondary);
322
+ }
323
+
324
+ .on-secondary-text {
325
+ color: var(--md-sys-color-on-secondary);
326
+ }
327
+
328
+ .secondary-container {
329
+ background-color: var(--md-sys-color-secondary-container);
330
+ }
331
+
332
+ .secondary-container-text {
333
+ color: var(--md-sys-color-secondary-container);
334
+ }
335
+
336
+ .on-secondary-container {
337
+ background-color: var(--md-sys-color-on-secondary-container);
338
+ }
339
+
340
+ .on-secondary-container-text {
341
+ color: var(--md-sys-color-on-secondary-container);
342
+ }
343
+
344
+ .tertiary {
345
+ background-color: var(--md-sys-color-tertiary);
346
+ }
347
+
348
+ .tertiary-text {
349
+ color: var(--md-sys-color-tertiary);
350
+ }
351
+
352
+ .on-tertiary {
353
+ background-color: var(--md-sys-color-on-tertiary);
354
+ }
355
+
356
+ .on-tertiary-text {
357
+ color: var(--md-sys-color-on-tertiary);
358
+ }
359
+
360
+ .tertiary-container {
361
+ background-color: var(--md-sys-color-tertiary-container);
362
+ }
363
+
364
+ .tertiary-container-text {
365
+ color: var(--md-sys-color-tertiary-container);
366
+ }
367
+
368
+ .on-tertiary-container {
369
+ background-color: var(--md-sys-color-on-tertiary-container);
370
+ }
371
+
372
+ .on-tertiary-container-text {
373
+ color: var(--md-sys-color-on-tertiary-container);
374
+ }
375
+
376
+ .error {
377
+ background-color: var(--md-sys-color-error);
378
+ }
379
+
380
+ .error-text {
381
+ color: var(--md-sys-color-error);
382
+ }
383
+
384
+ .on-error {
385
+ background-color: var(--md-sys-color-on-error);
386
+ }
387
+
388
+ .on-error-text {
389
+ color: var(--md-sys-color-on-error);
390
+ }
391
+
392
+ .error-container {
393
+ background-color: var(--md-sys-color-error-container);
394
+ }
395
+
396
+ .error-container-text {
397
+ color: var(--md-sys-color-error-container);
398
+ }
399
+
400
+ .on-error-container {
401
+ background-color: var(--md-sys-color-on-error-container);
402
+ }
403
+
404
+ .on-error-container-text {
405
+ color: var(--md-sys-color-on-error-container);
406
+ }
407
+
408
+ .background {
409
+ background-color: var(--md-sys-color-background);
410
+ }
411
+
412
+ .background-text {
413
+ color: var(--md-sys-color-background);
414
+ }
415
+
416
+ .on-background {
417
+ background-color: var(--md-sys-color-on-background);
418
+ }
419
+
420
+ .on-background-text {
421
+ color: var(--md-sys-color-on-background);
422
+ }
423
+
424
+ .surface, .switch label input[type=checkbox]:checked + .lever:after {
425
+ background-color: var(--md-sys-color-surface);
426
+ }
427
+
428
+ .surface-text {
429
+ color: var(--md-sys-color-surface);
430
+ }
431
+
432
+ .on-surface {
433
+ background-color: var(--md-sys-color-on-surface);
434
+ }
435
+
436
+ .on-surface-text {
437
+ color: var(--md-sys-color-on-surface);
438
+ }
439
+
440
+ .surface-variant, .progress, input[type=range]::-moz-range-track, input[type=range]::-webkit-slider-runnable-track, .switch label .lever {
441
+ background-color: var(--md-sys-color-surface-variant);
442
+ }
443
+
444
+ .surface-variant-text {
445
+ color: var(--md-sys-color-surface-variant);
446
+ }
447
+
448
+ .on-surface-variant {
449
+ background-color: var(--md-sys-color-on-surface-variant);
450
+ }
451
+
452
+ .on-surface-variant-text, .chip > .material-icons {
453
+ color: var(--md-sys-color-on-surface-variant);
454
+ }
455
+
456
+ .outline, .switch label .lever:after {
457
+ background-color: var(--md-sys-color-outline);
458
+ }
459
+
460
+ .outline-text {
461
+ color: var(--md-sys-color-outline);
462
+ }
463
+
464
+ .inverse-on-surface {
465
+ background-color: var(--md-sys-color-inverse-on-surface);
466
+ }
467
+
468
+ .inverse-on-surface-text {
469
+ color: var(--md-sys-color-inverse-on-surface);
470
+ }
471
+
472
+ .inverse-surface {
473
+ background-color: var(--md-sys-color-inverse-surface);
474
+ }
475
+
476
+ .inverse-surface-text {
477
+ color: var(--md-sys-color-inverse-surface);
478
+ }
479
+
480
+ .inverse-primary {
481
+ background-color: var(--md-sys-color-inverse-primary);
482
+ }
483
+
484
+ .inverse-primary-text {
485
+ color: var(--md-sys-color-inverse-primary);
486
+ }
487
+
488
+ .shadow {
489
+ background-color: var(--md-sys-color-shadow);
490
+ }
491
+
492
+ .shadow-text {
493
+ color: var(--md-sys-color-shadow);
494
+ }
495
+
496
+ .surface-tint {
497
+ background-color: var(--md-sys-color-surface-tint);
498
+ }
499
+
500
+ .surface-tint-text {
501
+ color: var(--md-sys-color-surface-tint);
502
+ }
503
+
504
+ .outline-variant {
505
+ background-color: var(--md-sys-color-outline-variant);
506
+ }
507
+
508
+ .outline-variant-text {
509
+ color: var(--md-sys-color-outline-variant);
510
+ }
511
+
512
+ .scrim {
513
+ background-color: var(--md-sys-color-scrim);
514
+ }
515
+
516
+ .scrim-text {
517
+ color: var(--md-sys-color-scrim);
518
+ }
519
+
520
+ .display-large {
521
+ font-family: var(--md-sys-typescale-display-large-font-family-name);
522
+ font-style: var(--md-sys-typescale-display-large-font-family-style);
523
+ font-weight: var(--md-sys-typescale-display-large-font-weight);
524
+ font-size: var(--md-sys-typescale-display-large-font-size);
525
+ letter-spacing: var(--md-sys-typescale-display-large-tracking);
526
+ line-height: var(--md-sys-typescale-display-large-height);
527
+ text-transform: var(--md-sys-typescale-display-large-text-transform);
528
+ -webkit-text-decoration: var(--md-sys-typescale-display-large-text-decoration);
529
+ -moz-text-decoration: var(--md-sys-typescale-display-large-text-decoration);
530
+ text-decoration: var(--md-sys-typescale-display-large-text-decoration);
531
+ }
532
+
533
+ .display-medium {
534
+ font-family: var(--md-sys-typescale-display-medium-font-family-name);
535
+ font-style: var(--md-sys-typescale-display-medium-font-family-style);
536
+ font-weight: var(--md-sys-typescale-display-medium-font-weight);
537
+ font-size: var(--md-sys-typescale-display-medium-font-size);
538
+ letter-spacing: var(--md-sys-typescale-display-medium-tracking);
539
+ line-height: var(--md-sys-typescale-display-medium-height);
540
+ text-transform: var(--md-sys-typescale-display-medium-text-transform);
541
+ -webkit-text-decoration: var(--md-sys-typescale-display-medium-text-decoration);
542
+ -moz-text-decoration: var(--md-sys-typescale-display-medium-text-decoration);
543
+ text-decoration: var(--md-sys-typescale-display-medium-text-decoration);
544
+ }
545
+
546
+ .display-small {
547
+ font-family: var(--md-sys-typescale-display-small-font-family-name);
548
+ font-style: var(--md-sys-typescale-display-small-font-family-style);
549
+ font-weight: var(--md-sys-typescale-display-small-font-weight);
550
+ font-size: var(--md-sys-typescale-display-small-font-size);
551
+ letter-spacing: var(--md-sys-typescale-display-small-tracking);
552
+ line-height: var(--md-sys-typescale-display-small-height);
553
+ text-transform: var(--md-sys-typescale-display-small-text-transform);
554
+ -webkit-text-decoration: var(--md-sys-typescale-display-small-text-decoration);
555
+ -moz-text-decoration: var(--md-sys-typescale-display-small-text-decoration);
556
+ text-decoration: var(--md-sys-typescale-display-small-text-decoration);
557
+ }
558
+
559
+ .headline-large {
560
+ font-family: var(--md-sys-typescale-headline-large-font-family-name);
561
+ font-style: var(--md-sys-typescale-headline-large-font-family-style);
562
+ font-weight: var(--md-sys-typescale-headline-large-font-weight);
563
+ font-size: var(--md-sys-typescale-headline-large-font-size);
564
+ letter-spacing: var(--md-sys-typescale-headline-large-tracking);
565
+ line-height: var(--md-sys-typescale-headline-large-height);
566
+ text-transform: var(--md-sys-typescale-headline-large-text-transform);
567
+ -webkit-text-decoration: var(--md-sys-typescale-headline-large-text-decoration);
568
+ -moz-text-decoration: var(--md-sys-typescale-headline-large-text-decoration);
569
+ text-decoration: var(--md-sys-typescale-headline-large-text-decoration);
570
+ }
571
+
572
+ .headline-medium {
573
+ font-family: var(--md-sys-typescale-headline-medium-font-family-name);
574
+ font-style: var(--md-sys-typescale-headline-medium-font-family-style);
575
+ font-weight: var(--md-sys-typescale-headline-medium-font-weight);
576
+ font-size: var(--md-sys-typescale-headline-medium-font-size);
577
+ letter-spacing: var(--md-sys-typescale-headline-medium-tracking);
578
+ line-height: var(--md-sys-typescale-headline-medium-height);
579
+ text-transform: var(--md-sys-typescale-headline-medium-text-transform);
580
+ -webkit-text-decoration: var(--md-sys-typescale-headline-medium-text-decoration);
581
+ -moz-text-decoration: var(--md-sys-typescale-headline-medium-text-decoration);
582
+ text-decoration: var(--md-sys-typescale-headline-medium-text-decoration);
583
+ }
584
+
585
+ .headline-small {
586
+ font-family: var(--md-sys-typescale-headline-small-font-family-name);
587
+ font-style: var(--md-sys-typescale-headline-small-font-family-style);
588
+ font-weight: var(--md-sys-typescale-headline-small-font-weight);
589
+ font-size: var(--md-sys-typescale-headline-small-font-size);
590
+ letter-spacing: var(--md-sys-typescale-headline-small-tracking);
591
+ line-height: var(--md-sys-typescale-headline-small-height);
592
+ text-transform: var(--md-sys-typescale-headline-small-text-transform);
593
+ -webkit-text-decoration: var(--md-sys-typescale-headline-small-text-decoration);
594
+ -moz-text-decoration: var(--md-sys-typescale-headline-small-text-decoration);
595
+ text-decoration: var(--md-sys-typescale-headline-small-text-decoration);
596
+ }
597
+
598
+ .body-large {
599
+ font-family: var(--md-sys-typescale-body-large-font-family-name);
600
+ font-style: var(--md-sys-typescale-body-large-font-family-style);
601
+ font-weight: var(--md-sys-typescale-body-large-font-weight);
602
+ font-size: var(--md-sys-typescale-body-large-font-size);
603
+ letter-spacing: var(--md-sys-typescale-body-large-tracking);
604
+ line-height: var(--md-sys-typescale-body-large-height);
605
+ text-transform: var(--md-sys-typescale-body-large-text-transform);
606
+ -webkit-text-decoration: var(--md-sys-typescale-body-large-text-decoration);
607
+ -moz-text-decoration: var(--md-sys-typescale-body-large-text-decoration);
608
+ text-decoration: var(--md-sys-typescale-body-large-text-decoration);
609
+ }
610
+
611
+ .body-medium {
612
+ font-family: var(--md-sys-typescale-body-medium-font-family-name);
613
+ font-style: var(--md-sys-typescale-body-medium-font-family-style);
614
+ font-weight: var(--md-sys-typescale-body-medium-font-weight);
615
+ font-size: var(--md-sys-typescale-body-medium-font-size);
616
+ letter-spacing: var(--md-sys-typescale-body-medium-tracking);
617
+ line-height: var(--md-sys-typescale-body-medium-height);
618
+ text-transform: var(--md-sys-typescale-body-medium-text-transform);
619
+ -webkit-text-decoration: var(--md-sys-typescale-body-medium-text-decoration);
620
+ -moz-text-decoration: var(--md-sys-typescale-body-medium-text-decoration);
621
+ text-decoration: var(--md-sys-typescale-body-medium-text-decoration);
622
+ }
623
+
624
+ .body-small {
625
+ font-family: var(--md-sys-typescale-body-small-font-family-name);
626
+ font-style: var(--md-sys-typescale-body-small-font-family-style);
627
+ font-weight: var(--md-sys-typescale-body-small-font-weight);
628
+ font-size: var(--md-sys-typescale-body-small-font-size);
629
+ letter-spacing: var(--md-sys-typescale-body-small-tracking);
630
+ line-height: var(--md-sys-typescale-body-small-height);
631
+ text-transform: var(--md-sys-typescale-body-small-text-transform);
632
+ -webkit-text-decoration: var(--md-sys-typescale-body-small-text-decoration);
633
+ -moz-text-decoration: var(--md-sys-typescale-body-small-text-decoration);
634
+ text-decoration: var(--md-sys-typescale-body-small-text-decoration);
635
+ }
636
+
637
+ .label-large {
638
+ font-family: var(--md-sys-typescale-label-large-font-family-name);
639
+ font-style: var(--md-sys-typescale-label-large-font-family-style);
640
+ font-weight: var(--md-sys-typescale-label-large-font-weight);
641
+ font-size: var(--md-sys-typescale-label-large-font-size);
642
+ letter-spacing: var(--md-sys-typescale-label-large-tracking);
643
+ line-height: var(--md-sys-typescale-label-large-height);
644
+ text-transform: var(--md-sys-typescale-label-large-text-transform);
645
+ -webkit-text-decoration: var(--md-sys-typescale-label-large-text-decoration);
646
+ -moz-text-decoration: var(--md-sys-typescale-label-large-text-decoration);
647
+ text-decoration: var(--md-sys-typescale-label-large-text-decoration);
648
+ }
649
+
650
+ .label-medium {
651
+ font-family: var(--md-sys-typescale-label-medium-font-family-name);
652
+ font-style: var(--md-sys-typescale-label-medium-font-family-style);
653
+ font-weight: var(--md-sys-typescale-label-medium-font-weight);
654
+ font-size: var(--md-sys-typescale-label-medium-font-size);
655
+ letter-spacing: var(--md-sys-typescale-label-medium-tracking);
656
+ line-height: var(--md-sys-typescale-label-medium-height);
657
+ text-transform: var(--md-sys-typescale-label-medium-text-transform);
658
+ -webkit-text-decoration: var(--md-sys-typescale-label-medium-text-decoration);
659
+ -moz-text-decoration: var(--md-sys-typescale-label-medium-text-decoration);
660
+ text-decoration: var(--md-sys-typescale-label-medium-text-decoration);
661
+ }
662
+
663
+ .label-small {
664
+ font-family: var(--md-sys-typescale-label-small-font-family-name);
665
+ font-style: var(--md-sys-typescale-label-small-font-family-style);
666
+ font-weight: var(--md-sys-typescale-label-small-font-weight);
667
+ font-size: var(--md-sys-typescale-label-small-font-size);
668
+ letter-spacing: var(--md-sys-typescale-label-small-tracking);
669
+ line-height: var(--md-sys-typescale-label-small-height);
670
+ text-transform: var(--md-sys-typescale-label-small-text-transform);
671
+ -webkit-text-decoration: var(--md-sys-typescale-label-small-text-decoration);
672
+ -moz-text-decoration: var(--md-sys-typescale-label-small-text-decoration);
673
+ text-decoration: var(--md-sys-typescale-label-small-text-decoration);
674
+ }
675
+
676
+ .title-large {
677
+ font-family: var(--md-sys-typescale-title-large-font-family-name);
678
+ font-style: var(--md-sys-typescale-title-large-font-family-style);
679
+ font-weight: var(--md-sys-typescale-title-large-font-weight);
680
+ font-size: var(--md-sys-typescale-title-large-font-size);
681
+ letter-spacing: var(--md-sys-typescale-title-large-tracking);
682
+ line-height: var(--md-sys-typescale-title-large-height);
683
+ text-transform: var(--md-sys-typescale-title-large-text-transform);
684
+ -webkit-text-decoration: var(--md-sys-typescale-title-large-text-decoration);
685
+ -moz-text-decoration: var(--md-sys-typescale-title-large-text-decoration);
686
+ text-decoration: var(--md-sys-typescale-title-large-text-decoration);
687
+ }
688
+
689
+ .title-medium {
690
+ font-family: var(--md-sys-typescale-title-medium-font-family-name);
691
+ font-style: var(--md-sys-typescale-title-medium-font-family-style);
692
+ font-weight: var(--md-sys-typescale-title-medium-font-weight);
693
+ font-size: var(--md-sys-typescale-title-medium-font-size);
694
+ letter-spacing: var(--md-sys-typescale-title-medium-tracking);
695
+ line-height: var(--md-sys-typescale-title-medium-height);
696
+ text-transform: var(--md-sys-typescale-title-medium-text-transform);
697
+ -webkit-text-decoration: var(--md-sys-typescale-title-medium-text-decoration);
698
+ -moz-text-decoration: var(--md-sys-typescale-title-medium-text-decoration);
699
+ text-decoration: var(--md-sys-typescale-title-medium-text-decoration);
700
+ }
701
+
702
+ .title-small {
703
+ font-family: var(--md-sys-typescale-title-small-font-family-name);
704
+ font-style: var(--md-sys-typescale-title-small-font-family-style);
705
+ font-weight: var(--md-sys-typescale-title-small-font-weight);
706
+ font-size: var(--md-sys-typescale-title-small-font-size);
707
+ letter-spacing: var(--md-sys-typescale-title-small-tracking);
708
+ line-height: var(--md-sys-typescale-title-small-height);
709
+ text-transform: var(--md-sys-typescale-title-small-text-transform);
710
+ -webkit-text-decoration: var(--md-sys-typescale-title-small-text-decoration);
711
+ -moz-text-decoration: var(--md-sys-typescale-title-small-text-decoration);
712
+ text-decoration: var(--md-sys-typescale-title-small-text-decoration);
713
+ }
714
+
715
+ :root {
716
+ --md-sys-color-primary: var(--md-sys-color-primary-light);
717
+ --md-sys-color-on-primary: var(--md-sys-color-on-primary-light);
718
+ --md-sys-color-primary-container: var(--md-sys-color-primary-container-light);
719
+ --md-sys-color-on-primary-container: var(--md-sys-color-on-primary-container-light);
720
+ --md-sys-color-secondary: var(--md-sys-color-secondary-light);
721
+ --md-sys-color-on-secondary: var(--md-sys-color-on-secondary-light);
722
+ --md-sys-color-secondary-container: var(--md-sys-color-secondary-container-light);
723
+ --md-sys-color-on-secondary-container: var(--md-sys-color-on-secondary-container-light);
724
+ --md-sys-color-tertiary: var(--md-sys-color-tertiary-light);
725
+ --md-sys-color-on-tertiary: var(--md-sys-color-on-tertiary-light);
726
+ --md-sys-color-tertiary-container: var(--md-sys-color-tertiary-container-light);
727
+ --md-sys-color-on-tertiary-container: var(--md-sys-color-on-tertiary-container-light);
728
+ --md-sys-color-error: var(--md-sys-color-error-light);
729
+ --md-sys-color-on-error: var(--md-sys-color-on-error-light);
730
+ --md-sys-color-error-container: var(--md-sys-color-error-container-light);
731
+ --md-sys-color-on-error-container: var(--md-sys-color-on-error-container-light);
732
+ --md-sys-color-outline: var(--md-sys-color-outline-light);
733
+ --md-sys-color-background: var(--md-sys-color-background-light);
734
+ --md-sys-color-on-background: var(--md-sys-color-on-background-light);
735
+ --md-sys-color-surface: var(--md-sys-color-surface-light);
736
+ --md-sys-color-on-surface: var(--md-sys-color-on-surface-light);
737
+ --md-sys-color-surface-variant: var(--md-sys-color-surface-variant-light);
738
+ --md-sys-color-on-surface-variant: var(--md-sys-color-on-surface-variant-light);
739
+ --md-sys-color-inverse-surface: var(--md-sys-color-inverse-surface-light);
740
+ --md-sys-color-inverse-on-surface: var(--md-sys-color-inverse-on-surface-light);
741
+ --md-sys-color-inverse-primary: var(--md-sys-color-inverse-primary-light);
742
+ --md-sys-color-shadow: var(--md-sys-color-shadow-light);
743
+ --md-sys-color-surface-tint: var(--md-sys-color-surface-tint-light);
744
+ --md-sys-color-outline-variant: var(--md-sys-color-outline-variant-light);
745
+ --md-sys-color-scrim: var(--md-sys-color-scrim-light);
746
+ }
747
+
748
+ :root[theme=dark] {
749
+ --md-sys-color-primary: var(--md-sys-color-primary-dark);
750
+ --md-sys-color-on-primary: var(--md-sys-color-on-primary-dark);
751
+ --md-sys-color-primary-container: var(--md-sys-color-primary-container-dark);
752
+ --md-sys-color-on-primary-container: var(--md-sys-color-on-primary-container-dark);
753
+ --md-sys-color-secondary: var(--md-sys-color-secondary-dark);
754
+ --md-sys-color-on-secondary: var(--md-sys-color-on-secondary-dark);
755
+ --md-sys-color-secondary-container: var(--md-sys-color-secondary-container-dark);
756
+ --md-sys-color-on-secondary-container: var(--md-sys-color-on-secondary-container-dark);
757
+ --md-sys-color-tertiary: var(--md-sys-color-tertiary-dark);
758
+ --md-sys-color-on-tertiary: var(--md-sys-color-on-tertiary-dark);
759
+ --md-sys-color-tertiary-container: var(--md-sys-color-tertiary-container-dark);
760
+ --md-sys-color-on-tertiary-container: var(--md-sys-color-on-tertiary-container-dark);
761
+ --md-sys-color-error: var(--md-sys-color-error-dark);
762
+ --md-sys-color-on-error: var(--md-sys-color-on-error-dark);
763
+ --md-sys-color-error-container: var(--md-sys-color-error-container-dark);
764
+ --md-sys-color-on-error-container: var(--md-sys-color-on-error-container-dark);
765
+ --md-sys-color-outline: var(--md-sys-color-outline-dark);
766
+ --md-sys-color-background: var(--md-sys-color-background-dark);
767
+ --md-sys-color-on-background: var(--md-sys-color-on-background-dark);
768
+ --md-sys-color-surface: var(--md-sys-color-surface-dark);
769
+ --md-sys-color-on-surface: var(--md-sys-color-on-surface-dark);
770
+ --md-sys-color-surface-variant: var(--md-sys-color-surface-variant-dark);
771
+ --md-sys-color-on-surface-variant: var(--md-sys-color-on-surface-variant-dark);
772
+ --md-sys-color-inverse-surface: var(--md-sys-color-inverse-surface-dark);
773
+ --md-sys-color-inverse-on-surface: var(--md-sys-color-inverse-on-surface-dark);
774
+ --md-sys-color-inverse-primary: var(--md-sys-color-inverse-primary-dark);
775
+ --md-sys-color-shadow: var(--md-sys-color-shadow-dark);
776
+ --md-sys-color-surface-tint: var(--md-sys-color-surface-tint-dark);
777
+ --md-sys-color-outline-variant: var(--md-sys-color-outline-variant-dark);
778
+ --md-sys-color-scrim: var(--md-sys-color-scrim-dark);
779
+ }
780
+
781
+ :root, :host {
782
+ --surface-color: var(--md-sys-color-surface);
783
+ --background-color: var(--md-sys-color-background);
784
+ --font-color-main: var(--md-sys-color-on-background);
785
+ --font-color-medium: var(--md-sys-color-on-surface-variant);
786
+ --font-color-disabled: var(--md-sys-color-on-surface);
787
+ --font-on-primary-color-main: var(--md-sys-color-on-primary);
788
+ --font-on-primary-color-dark-main: var(--md-sys-color-on-primary-dark);
789
+ --font-on-primary-color-dark-medium: var(--md-sys-color-on-surface-variant-dark);
790
+ --font-on-primary-color-medium: var(--md-sys-color-on-surface-variant);
791
+ --font-on-primary-color-disabled: rgba(255, 255, 255, 0.38);
792
+ --font-on-secondary-color-main: var(--md-sys-color-on-secondary);
793
+ --hover-color: rgba(0, 0, 0, 0.04);
794
+ --focus-color: rgba(0, 0, 0, 0.12);
795
+ --focus-color-solid: #E0E0E0;
796
+ --background-color-disabled: rgba(0, 0, 0, 0.12);
797
+ --background-color-level-4dp: rgba(0, 0, 0, 0.09);
798
+ --background-color-level-16dp-solid: var(--surface-color);
799
+ --background-color-slight-emphasis: rgba(0, 0, 0, 0.08);
800
+ --background-color-card: var(--surface-color);
801
+ --tooltip-background-color: #313033;
802
+ --tooltip-font-color: rgba(255, 255, 255, 0.77);
803
+ --separator-color: #DDDDDD; /* borders between components */
804
+ --error-color: #F44336;
805
+ --slider-track-color: var(--md-sys-color-shadow-light);
806
+ --switch-thumb-off-color: var(--md-ref-palette-primary100);
807
+ --carousel-indicator-color: rgba(255, 255, 255, 0.45);
808
+ --carousel-indicator-active-color: var(--md-ref-palette-primary100);
809
+ --primary-color: var(--md-sys-color-primary);
810
+ --primary-color-dark: var(--md-sys-color-primary-dark);
811
+ --primary-color-raised-hover-solid: var(--md-ref-palette-primary70);
812
+ --primary-color-raised-focus-solid: var(--md-ref-palette-primary80);
813
+ --primary-color-font-medium-color: rgba(var(--primary-color-numeric), 0.7);
814
+ --primary-color-font-disabled-color: rgba(var(--primary-color-numeric), 0.4);
815
+ --primary-color-hover-opaque: rgba(var(--primary-color-numeric), 0.06);
816
+ --primary-color-focus-opaque: rgba(var(--primary-color-numeric), 0.18);
817
+ --secondary-color: var(--md-sys-color-secondary);
818
+ --secondary-color-hover-solid: var(--md-ref-palette-secondary70);
819
+ --secondary-color-focus-solid: var(--md-ref-palette-secondary80);
820
+ --secondary-container-color: var(--md-sys-color-secondary-container);
821
+ --font-on-secondary-container-color: var(--md-sys-color-on-secondary-container);
822
+ --md_sys_color_on-surface: 28, 27, 31;
823
+ }
824
+
825
+ :root[theme=dark] {
826
+ --font-on-primary-color-disabled: rgba(0, 0, 0, 0.38);
827
+ --hover-color: rgba(255, 255, 255, 0.04);
828
+ --focus-color: rgba(255, 255, 255, 0.12);
829
+ --focus-color-solid: #424242;
830
+ --background-color-disabled: rgba(255, 255, 255, 0.12);
831
+ --background-color-level-4dp: rgba(255, 255, 255, 0.09);
832
+ --background-color-slight-emphasis: rgba(255, 255, 255, 0.05);
833
+ --separator-color: #424242; /* borders between components */
834
+ --error-color: #CF6679;
835
+ --switch-thumb-off-color: #bababa;
836
+ --md_sys_color_on-surface: 230, 225, 229;
837
+ }
838
+
7
839
  .materialize-red {
8
840
  background-color: #e51c23 !important;
9
841
  }
@@ -2499,7 +3331,7 @@ a {
2499
3331
  }
2500
3332
 
2501
3333
  /* 2dp elevation modified*/
2502
- .z-depth-1, .sidenav, .collapsible, .dropdown-content, .btn-floating, .btn, .btn-small, .btn-large, .toast, .card, .card-panel, nav {
3334
+ .z-depth-1, .sidenav, .collapsible, .dropdown-content, .btn-floating, .btn.elevated, .elevated.btn-small, .elevated.btn-large, .toast, .card, .card-panel, nav {
2503
3335
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
2504
3336
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
2505
3337
  }
@@ -2561,11 +3393,10 @@ i {
2561
3393
  }
2562
3394
  i.left {
2563
3395
  float: left;
2564
- margin-right: 15px;
3396
+ margin-left: -8px;
2565
3397
  }
2566
3398
  i.right {
2567
3399
  float: right;
2568
- margin-left: 15px;
2569
3400
  }
2570
3401
  i.tiny {
2571
3402
  font-size: 1rem;
@@ -2825,6 +3656,11 @@ ul.staggered-list li {
2825
3656
  background-color: var(--primary-color-dark);
2826
3657
  }
2827
3658
 
3659
+ .page-footer ul {
3660
+ padding-left: 0;
3661
+ list-style-type: none;
3662
+ }
3663
+
2828
3664
  table, th, td {
2829
3665
  border: none;
2830
3666
  }
@@ -2941,135 +3777,31 @@ table.responsive-table td {
2941
3777
  height: 100%;
2942
3778
  }
2943
3779
 
2944
- .progress {
2945
- position: relative;
2946
- height: 4px;
2947
- display: block;
2948
- width: 100%;
2949
- background-color: rgba(var(--primary-color-numeric), 40%);
2950
- border-radius: 2px;
2951
- margin: 0.5rem 0 1rem 0;
2952
- overflow: hidden;
2953
- }
2954
- .progress .determinate {
2955
- position: absolute;
2956
- top: 0;
2957
- left: 0;
2958
- bottom: 0;
2959
- background-color: var(--primary-color);
2960
- -webkit-transition: width 0.3s linear;
2961
- transition: width 0.3s linear;
3780
+ /*******************
3781
+ Utility Classes
3782
+ *******************/
3783
+ .hide {
3784
+ display: none !important;
2962
3785
  }
2963
- .progress .indeterminate {
2964
- background-color: var(--primary-color);
3786
+
3787
+ .left-align {
3788
+ text-align: left;
2965
3789
  }
2966
- .progress .indeterminate:before {
2967
- content: "";
2968
- position: absolute;
2969
- background-color: inherit;
2970
- top: 0;
2971
- left: 0;
2972
- bottom: 0;
2973
- will-change: left, right;
2974
- -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
2975
- animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
3790
+
3791
+ .right-align {
3792
+ text-align: right;
2976
3793
  }
2977
- .progress .indeterminate:after {
2978
- content: "";
2979
- position: absolute;
2980
- background-color: inherit;
2981
- top: 0;
2982
- left: 0;
2983
- bottom: 0;
2984
- will-change: left, right;
2985
- -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
2986
- animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
2987
- -webkit-animation-delay: 1.15s;
2988
- animation-delay: 1.15s;
3794
+
3795
+ .center, .center-align {
3796
+ text-align: center;
2989
3797
  }
2990
3798
 
2991
- @-webkit-keyframes indeterminate {
2992
- 0% {
2993
- left: -35%;
2994
- right: 100%;
2995
- }
2996
- 60% {
2997
- left: 100%;
2998
- right: -90%;
2999
- }
3000
- 100% {
3001
- left: 100%;
3002
- right: -90%;
3003
- }
3799
+ .left {
3800
+ float: left !important;
3004
3801
  }
3005
3802
 
3006
- @keyframes indeterminate {
3007
- 0% {
3008
- left: -35%;
3009
- right: 100%;
3010
- }
3011
- 60% {
3012
- left: 100%;
3013
- right: -90%;
3014
- }
3015
- 100% {
3016
- left: 100%;
3017
- right: -90%;
3018
- }
3019
- }
3020
- @-webkit-keyframes indeterminate-short {
3021
- 0% {
3022
- left: -200%;
3023
- right: 100%;
3024
- }
3025
- 60% {
3026
- left: 107%;
3027
- right: -8%;
3028
- }
3029
- 100% {
3030
- left: 107%;
3031
- right: -8%;
3032
- }
3033
- }
3034
- @keyframes indeterminate-short {
3035
- 0% {
3036
- left: -200%;
3037
- right: 100%;
3038
- }
3039
- 60% {
3040
- left: 107%;
3041
- right: -8%;
3042
- }
3043
- 100% {
3044
- left: 107%;
3045
- right: -8%;
3046
- }
3047
- }
3048
- /*******************
3049
- Utility Classes
3050
- *******************/
3051
- .hide {
3052
- display: none !important;
3053
- }
3054
-
3055
- .left-align {
3056
- text-align: left;
3057
- }
3058
-
3059
- .right-align {
3060
- text-align: right;
3061
- }
3062
-
3063
- .center, .center-align {
3064
- text-align: center;
3065
- }
3066
-
3067
- .left {
3068
- float: left !important;
3069
- }
3070
-
3071
- .right {
3072
- float: right !important;
3803
+ .right {
3804
+ float: right !important;
3073
3805
  }
3074
3806
 
3075
3807
  .no-select, input[type=range],
@@ -3101,6 +3833,489 @@ input[type=range] + .thumb {
3101
3833
  padding: 0 !important;
3102
3834
  }
3103
3835
 
3836
+ /**************************
3837
+ Utility Spacing Classes
3838
+ **************************/
3839
+ .m-0 {
3840
+ margin: 0 !important;
3841
+ }
3842
+
3843
+ .mt-0 {
3844
+ margin-top: 0 !important;
3845
+ }
3846
+
3847
+ .mr-0 {
3848
+ margin-right: 0 !important;
3849
+ }
3850
+
3851
+ .mb-0 {
3852
+ margin-bottom: 0 !important;
3853
+ }
3854
+
3855
+ .ml-0 {
3856
+ margin-left: 0 !important;
3857
+ }
3858
+
3859
+ .mx-0 {
3860
+ margin-left: 0 !important;
3861
+ margin-right: 0 !important;
3862
+ }
3863
+
3864
+ .my-0 {
3865
+ margin-top: 0 !important;
3866
+ margin-bottom: 0 !important;
3867
+ }
3868
+
3869
+ .m-1 {
3870
+ margin: 0.25rem !important;
3871
+ }
3872
+
3873
+ .mt-1 {
3874
+ margin-top: 0.25rem !important;
3875
+ }
3876
+
3877
+ .mr-1 {
3878
+ margin-right: 0.25rem !important;
3879
+ }
3880
+
3881
+ .mb-1 {
3882
+ margin-bottom: 0.25rem !important;
3883
+ }
3884
+
3885
+ .ml-1 {
3886
+ margin-left: 0.25rem !important;
3887
+ }
3888
+
3889
+ .mx-1 {
3890
+ margin-left: 0.25rem !important;
3891
+ margin-right: 0.25rem !important;
3892
+ }
3893
+
3894
+ .my-1 {
3895
+ margin-top: 0.25rem !important;
3896
+ margin-bottom: 0.25rem !important;
3897
+ }
3898
+
3899
+ .m-2 {
3900
+ margin: 0.5rem !important;
3901
+ }
3902
+
3903
+ .mt-2 {
3904
+ margin-top: 0.5rem !important;
3905
+ }
3906
+
3907
+ .mr-2 {
3908
+ margin-right: 0.5rem !important;
3909
+ }
3910
+
3911
+ .mb-2 {
3912
+ margin-bottom: 0.5rem !important;
3913
+ }
3914
+
3915
+ .ml-2 {
3916
+ margin-left: 0.5rem !important;
3917
+ }
3918
+
3919
+ .mx-2 {
3920
+ margin-left: 0.5rem !important;
3921
+ margin-right: 0.5rem !important;
3922
+ }
3923
+
3924
+ .my-2 {
3925
+ margin-top: 0.5rem !important;
3926
+ margin-bottom: 0.5rem !important;
3927
+ }
3928
+
3929
+ .m-3 {
3930
+ margin: 0.75rem !important;
3931
+ }
3932
+
3933
+ .mt-3 {
3934
+ margin-top: 0.75rem !important;
3935
+ }
3936
+
3937
+ .mr-3 {
3938
+ margin-right: 0.75rem !important;
3939
+ }
3940
+
3941
+ .mb-3 {
3942
+ margin-bottom: 0.75rem !important;
3943
+ }
3944
+
3945
+ .ml-3 {
3946
+ margin-left: 0.75rem !important;
3947
+ }
3948
+
3949
+ .mx-3 {
3950
+ margin-left: 0.75rem !important;
3951
+ margin-right: 0.75rem !important;
3952
+ }
3953
+
3954
+ .my-3 {
3955
+ margin-top: 0.75rem !important;
3956
+ margin-bottom: 0.75rem !important;
3957
+ }
3958
+
3959
+ .m-4 {
3960
+ margin: 1rem !important;
3961
+ }
3962
+
3963
+ .mt-4 {
3964
+ margin-top: 1rem !important;
3965
+ }
3966
+
3967
+ .mr-4 {
3968
+ margin-right: 1rem !important;
3969
+ }
3970
+
3971
+ .mb-4 {
3972
+ margin-bottom: 1rem !important;
3973
+ }
3974
+
3975
+ .ml-4 {
3976
+ margin-left: 1rem !important;
3977
+ }
3978
+
3979
+ .mx-4 {
3980
+ margin-left: 1rem !important;
3981
+ margin-right: 1rem !important;
3982
+ }
3983
+
3984
+ .my-4 {
3985
+ margin-top: 1rem !important;
3986
+ margin-bottom: 1rem !important;
3987
+ }
3988
+
3989
+ .m-5 {
3990
+ margin: 1.5rem !important;
3991
+ }
3992
+
3993
+ .mt-5 {
3994
+ margin-top: 1.5rem !important;
3995
+ }
3996
+
3997
+ .mr-5 {
3998
+ margin-right: 1.5rem !important;
3999
+ }
4000
+
4001
+ .mb-5 {
4002
+ margin-bottom: 1.5rem !important;
4003
+ }
4004
+
4005
+ .ml-5 {
4006
+ margin-left: 1.5rem !important;
4007
+ }
4008
+
4009
+ .mx-5 {
4010
+ margin-left: 1.5rem !important;
4011
+ margin-right: 1.5rem !important;
4012
+ }
4013
+
4014
+ .my-5 {
4015
+ margin-top: 1.5rem !important;
4016
+ margin-bottom: 1.5rem !important;
4017
+ }
4018
+
4019
+ .m-6 {
4020
+ margin: 3rem !important;
4021
+ }
4022
+
4023
+ .mt-6 {
4024
+ margin-top: 3rem !important;
4025
+ }
4026
+
4027
+ .mr-6 {
4028
+ margin-right: 3rem !important;
4029
+ }
4030
+
4031
+ .mb-6 {
4032
+ margin-bottom: 3rem !important;
4033
+ }
4034
+
4035
+ .ml-6 {
4036
+ margin-left: 3rem !important;
4037
+ }
4038
+
4039
+ .mx-6 {
4040
+ margin-left: 3rem !important;
4041
+ margin-right: 3rem !important;
4042
+ }
4043
+
4044
+ .my-6 {
4045
+ margin-top: 3rem !important;
4046
+ margin-bottom: 3rem !important;
4047
+ }
4048
+
4049
+ .m-auto {
4050
+ margin: auto !important;
4051
+ }
4052
+
4053
+ .mt-auto {
4054
+ margin-top: auto !important;
4055
+ }
4056
+
4057
+ .mr-auto {
4058
+ margin-right: auto !important;
4059
+ }
4060
+
4061
+ .mb-auto {
4062
+ margin-bottom: auto !important;
4063
+ }
4064
+
4065
+ .ml-auto {
4066
+ margin-left: auto !important;
4067
+ }
4068
+
4069
+ .mx-auto {
4070
+ margin-left: auto !important;
4071
+ margin-right: auto !important;
4072
+ }
4073
+
4074
+ .my-auto {
4075
+ margin-top: auto !important;
4076
+ margin-bottom: auto !important;
4077
+ }
4078
+
4079
+ .p-0 {
4080
+ padding: 0 !important;
4081
+ }
4082
+
4083
+ .pt-0 {
4084
+ padding-top: 0 !important;
4085
+ }
4086
+
4087
+ .pr-0 {
4088
+ padding-right: 0 !important;
4089
+ }
4090
+
4091
+ .pb-0 {
4092
+ padding-bottom: 0 !important;
4093
+ }
4094
+
4095
+ .pl-0 {
4096
+ padding-left: 0 !important;
4097
+ }
4098
+
4099
+ .px-0 {
4100
+ padding-left: 0 !important;
4101
+ padding-right: 0 !important;
4102
+ }
4103
+
4104
+ .py-0 {
4105
+ padding-top: 0 !important;
4106
+ padding-bottom: 0 !important;
4107
+ }
4108
+
4109
+ .p-1 {
4110
+ padding: 0.25rem !important;
4111
+ }
4112
+
4113
+ .pt-1 {
4114
+ padding-top: 0.25rem !important;
4115
+ }
4116
+
4117
+ .pr-1 {
4118
+ padding-right: 0.25rem !important;
4119
+ }
4120
+
4121
+ .pb-1 {
4122
+ padding-bottom: 0.25rem !important;
4123
+ }
4124
+
4125
+ .pl-1 {
4126
+ padding-left: 0.25rem !important;
4127
+ }
4128
+
4129
+ .px-1 {
4130
+ padding-left: 0.25rem !important;
4131
+ padding-right: 0.25rem !important;
4132
+ }
4133
+
4134
+ .py-1 {
4135
+ padding-top: 0.25rem !important;
4136
+ padding-bottom: 0.25rem !important;
4137
+ }
4138
+
4139
+ .p-2 {
4140
+ padding: 0.5rem !important;
4141
+ }
4142
+
4143
+ .pt-2 {
4144
+ padding-top: 0.5rem !important;
4145
+ }
4146
+
4147
+ .pr-2 {
4148
+ padding-right: 0.5rem !important;
4149
+ }
4150
+
4151
+ .pb-2 {
4152
+ padding-bottom: 0.5rem !important;
4153
+ }
4154
+
4155
+ .pl-2 {
4156
+ padding-left: 0.5rem !important;
4157
+ }
4158
+
4159
+ .px-2 {
4160
+ padding-left: 0.5rem !important;
4161
+ padding-right: 0.5rem !important;
4162
+ }
4163
+
4164
+ .py-2 {
4165
+ padding-top: 0.5rem !important;
4166
+ padding-bottom: 0.5rem !important;
4167
+ }
4168
+
4169
+ .p-3 {
4170
+ padding: 0.75rem !important;
4171
+ }
4172
+
4173
+ .pt-3 {
4174
+ padding-top: 0.75rem !important;
4175
+ }
4176
+
4177
+ .pr-3 {
4178
+ padding-right: 0.75rem !important;
4179
+ }
4180
+
4181
+ .pb-3 {
4182
+ padding-bottom: 0.75rem !important;
4183
+ }
4184
+
4185
+ .pl-3 {
4186
+ padding-left: 0.75rem !important;
4187
+ }
4188
+
4189
+ .px-3 {
4190
+ padding-left: 0.75rem !important;
4191
+ padding-right: 0.75rem !important;
4192
+ }
4193
+
4194
+ .py-3 {
4195
+ padding-top: 0.75rem !important;
4196
+ padding-bottom: 0.75rem !important;
4197
+ }
4198
+
4199
+ .p-4 {
4200
+ padding: 1rem !important;
4201
+ }
4202
+
4203
+ .pt-4 {
4204
+ padding-top: 1rem !important;
4205
+ }
4206
+
4207
+ .pr-4 {
4208
+ padding-right: 1rem !important;
4209
+ }
4210
+
4211
+ .pb-4 {
4212
+ padding-bottom: 1rem !important;
4213
+ }
4214
+
4215
+ .pl-4 {
4216
+ padding-left: 1rem !important;
4217
+ }
4218
+
4219
+ .px-4 {
4220
+ padding-left: 1rem !important;
4221
+ padding-right: 1rem !important;
4222
+ }
4223
+
4224
+ .py-4 {
4225
+ padding-top: 1rem !important;
4226
+ padding-bottom: 1rem !important;
4227
+ }
4228
+
4229
+ .p-5 {
4230
+ padding: 1.5rem !important;
4231
+ }
4232
+
4233
+ .pt-5 {
4234
+ padding-top: 1.5rem !important;
4235
+ }
4236
+
4237
+ .pr-5 {
4238
+ padding-right: 1.5rem !important;
4239
+ }
4240
+
4241
+ .pb-5 {
4242
+ padding-bottom: 1.5rem !important;
4243
+ }
4244
+
4245
+ .pl-5 {
4246
+ padding-left: 1.5rem !important;
4247
+ }
4248
+
4249
+ .px-5 {
4250
+ padding-left: 1.5rem !important;
4251
+ padding-right: 1.5rem !important;
4252
+ }
4253
+
4254
+ .py-5 {
4255
+ padding-top: 1.5rem !important;
4256
+ padding-bottom: 1.5rem !important;
4257
+ }
4258
+
4259
+ .p-6 {
4260
+ padding: 3rem !important;
4261
+ }
4262
+
4263
+ .pt-6 {
4264
+ padding-top: 3rem !important;
4265
+ }
4266
+
4267
+ .pr-6 {
4268
+ padding-right: 3rem !important;
4269
+ }
4270
+
4271
+ .pb-6 {
4272
+ padding-bottom: 3rem !important;
4273
+ }
4274
+
4275
+ .pl-6 {
4276
+ padding-left: 3rem !important;
4277
+ }
4278
+
4279
+ .px-6 {
4280
+ padding-left: 3rem !important;
4281
+ padding-right: 3rem !important;
4282
+ }
4283
+
4284
+ .py-6 {
4285
+ padding-top: 3rem !important;
4286
+ padding-bottom: 3rem !important;
4287
+ }
4288
+
4289
+ .p-auto {
4290
+ padding: auto !important;
4291
+ }
4292
+
4293
+ .pt-auto {
4294
+ padding-top: auto !important;
4295
+ }
4296
+
4297
+ .pr-auto {
4298
+ padding-right: auto !important;
4299
+ }
4300
+
4301
+ .pb-auto {
4302
+ padding-bottom: auto !important;
4303
+ }
4304
+
4305
+ .pl-auto {
4306
+ padding-left: auto !important;
4307
+ }
4308
+
4309
+ .px-auto {
4310
+ padding-left: auto !important;
4311
+ padding-right: auto !important;
4312
+ }
4313
+
4314
+ .py-auto {
4315
+ padding-top: auto !important;
4316
+ padding-bottom: auto !important;
4317
+ }
4318
+
3104
4319
  .collection {
3105
4320
  padding-left: 0;
3106
4321
  list-style-type: none;
@@ -3278,26 +4493,8 @@ table span.badge {
3278
4493
  width: 70%;
3279
4494
  }
3280
4495
  }
3281
- /*
3282
- .col .row {
3283
- margin-left: (-1 * $gutter-width * 0.5);
3284
- margin-right: (-1 * $gutter-width * 0.5);
3285
- }
3286
- */
3287
4496
  .section {
3288
- padding-top: 1rem;
3289
- padding-bottom: 1rem;
3290
- /*
3291
- &.no-pad {
3292
- padding: 0;
3293
- }
3294
- &.no-pad-bot {
3295
- padding-bottom: 0;
3296
- }
3297
- &.no-pad-top {
3298
- padding-top: 0;
3299
- }
3300
- */
4497
+ padding: 1rem 0;
3301
4498
  }
3302
4499
 
3303
4500
  .row {
@@ -3341,10 +4538,10 @@ table span.badge {
3341
4538
  grid-column: auto/span 12;
3342
4539
  }
3343
4540
  .row .offset-s1 {
3344
- grid-column-start: 2;
4541
+ grid-column-start: 3;
3345
4542
  }
3346
4543
  .row .offset-s2 {
3347
- grid-column-start: 3;
4544
+ grid-column-start: 2;
3348
4545
  }
3349
4546
  .row .offset-s3 {
3350
4547
  grid-column-start: 4;
@@ -3589,7 +4786,7 @@ table span.badge {
3589
4786
 
3590
4787
  nav {
3591
4788
  color: var(--font-on-primary-color-main);
3592
- background-color: var(--primary-color);
4789
+ background-color: var(--secondary-container-color);
3593
4790
  width: 100%;
3594
4791
  height: 56px;
3595
4792
  line-height: 56px;
@@ -3688,13 +4885,13 @@ nav ul:not(.dropdown-content) {
3688
4885
  list-style-type: none;
3689
4886
  margin: 0;
3690
4887
  }
3691
- nav ul:not(.dropdown-content) li {
4888
+ nav ul:not(.dropdown-content) > li {
3692
4889
  -webkit-transition: background-color 0.3s;
3693
4890
  transition: background-color 0.3s;
3694
4891
  float: left;
3695
4892
  padding: 0;
3696
4893
  }
3697
- nav ul:not(.dropdown-content) a {
4894
+ nav ul:not(.dropdown-content) > li > a {
3698
4895
  -webkit-transition: background-color 0.3s;
3699
4896
  transition: background-color 0.3s;
3700
4897
  font-size: 1rem;
@@ -3703,19 +4900,19 @@ nav ul:not(.dropdown-content) a {
3703
4900
  padding: 0 15px;
3704
4901
  cursor: pointer;
3705
4902
  }
3706
- nav ul:not(.dropdown-content) a.active {
4903
+ nav ul:not(.dropdown-content) > li > a.active {
3707
4904
  background-color: var(--primary-color-raised-focus-solid);
3708
4905
  }
3709
- nav ul:not(.dropdown-content) a:hover:not(.active) {
4906
+ nav ul:not(.dropdown-content) > li > a:hover:not(.active) {
3710
4907
  background-color: var(--primary-color-raised-hover-solid);
3711
4908
  }
3712
- nav ul:not(.dropdown-content) a.btn, nav ul:not(.dropdown-content) a.btn-small, nav ul:not(.dropdown-content) a.btn-large, nav ul:not(.dropdown-content) a.btn-flat, nav ul:not(.dropdown-content) a.btn-floating {
4909
+ nav ul:not(.dropdown-content) > li > a.btn, nav ul:not(.dropdown-content) > li > a.btn-small, nav ul:not(.dropdown-content) > li > a.btn-large, nav ul:not(.dropdown-content) > li > a.btn-flat, nav ul:not(.dropdown-content) > li > a.btn-floating {
3713
4910
  margin-top: -2px;
3714
4911
  margin-left: 15px;
3715
4912
  margin-right: 15px;
3716
4913
  display: inline-block;
3717
4914
  }
3718
- nav ul:not(.dropdown-content) a.btn > .material-icons, nav ul:not(.dropdown-content) a.btn-small > .material-icons, nav ul:not(.dropdown-content) a.btn > .material-symbols-outlined, nav ul:not(.dropdown-content) a.btn-small > .material-symbols-outlined, nav ul:not(.dropdown-content) a.btn > .material-symbols-rounded, nav ul:not(.dropdown-content) a.btn-small > .material-symbols-rounded, nav ul:not(.dropdown-content) a.btn > .material-symbols-sharp, nav ul:not(.dropdown-content) a.btn-small > .material-symbols-sharp, nav ul:not(.dropdown-content) a.btn-large > .material-icons, nav ul:not(.dropdown-content) a.btn-large > .material-symbols-outlined, nav ul:not(.dropdown-content) a.btn-large > .material-symbols-rounded, nav ul:not(.dropdown-content) a.btn-large > .material-symbols-sharp, nav ul:not(.dropdown-content) a.btn-flat > .material-icons, nav ul:not(.dropdown-content) a.btn-flat > .material-symbols-outlined, nav ul:not(.dropdown-content) a.btn-flat > .material-symbols-rounded, nav ul:not(.dropdown-content) a.btn-flat > .material-symbols-sharp, nav ul:not(.dropdown-content) a.btn-floating > .material-icons, nav ul:not(.dropdown-content) a.btn-floating > .material-symbols-outlined, nav ul:not(.dropdown-content) a.btn-floating > .material-symbols-rounded, nav ul:not(.dropdown-content) a.btn-floating > .material-symbols-sharp {
4915
+ nav ul:not(.dropdown-content) > li > a.btn > .material-icons, nav ul:not(.dropdown-content) > li > a.btn-small > .material-icons, nav ul:not(.dropdown-content) > li > a.btn > .material-symbols-outlined, nav ul:not(.dropdown-content) > li > a.btn-small > .material-symbols-outlined, nav ul:not(.dropdown-content) > li > a.btn > .material-symbols-rounded, nav ul:not(.dropdown-content) > li > a.btn-small > .material-symbols-rounded, nav ul:not(.dropdown-content) > li > a.btn > .material-symbols-sharp, nav ul:not(.dropdown-content) > li > a.btn-small > .material-symbols-sharp, nav ul:not(.dropdown-content) > li > a.btn-large > .material-icons, nav ul:not(.dropdown-content) > li > a.btn-large > .material-symbols-outlined, nav ul:not(.dropdown-content) > li > a.btn-large > .material-symbols-rounded, nav ul:not(.dropdown-content) > li > a.btn-large > .material-symbols-sharp, nav ul:not(.dropdown-content) > li > a.btn-flat > .material-icons, nav ul:not(.dropdown-content) > li > a.btn-flat > .material-symbols-outlined, nav ul:not(.dropdown-content) > li > a.btn-flat > .material-symbols-rounded, nav ul:not(.dropdown-content) > li > a.btn-flat > .material-symbols-sharp, nav ul:not(.dropdown-content) > li > a.btn-floating > .material-icons, nav ul:not(.dropdown-content) > li > a.btn-floating > .material-symbols-outlined, nav ul:not(.dropdown-content) > li > a.btn-floating > .material-symbols-rounded, nav ul:not(.dropdown-content) > li > a.btn-floating > .material-symbols-sharp {
3719
4916
  height: inherit;
3720
4917
  line-height: inherit;
3721
4918
  }
@@ -4008,6 +5205,7 @@ small {
4008
5205
  }
4009
5206
 
4010
5207
  .card {
5208
+ overflow: hidden;
4011
5209
  position: relative;
4012
5210
  background-color: var(--background-color-card);
4013
5211
  -webkit-transition: -webkit-box-shadow 0.25s;
@@ -4398,21 +5596,63 @@ small {
4398
5596
  visibility: hidden;
4399
5597
  }
4400
5598
 
4401
- .btn, .btn-small, .btn-large,
4402
- .btn-flat {
4403
- font-weight: 500;
5599
+ .btn, .btn-small, .btn-large, .btn-floating, .btn-flat {
5600
+ --font-size-icon: 16px;
5601
+ --padding: 24px;
5602
+ --padding-icon: 16px;
5603
+ --gap-icon: 8px;
5604
+ height: 40px;
4404
5605
  border: none;
4405
5606
  border-radius: 4px;
4406
- display: inline-block;
4407
- height: 40px;
4408
- line-height: 40px;
4409
- padding: 0 16px;
4410
- vertical-align: middle;
5607
+ padding-left: var(--padding);
5608
+ padding-right: var(--padding);
5609
+ color: var(--font-on-primary-color-main);
5610
+ font-size: 14px;
5611
+ font-weight: 500;
5612
+ text-decoration: none;
5613
+ display: -webkit-inline-box;
5614
+ display: -webkit-inline-flex;
5615
+ display: -ms-inline-flexbox;
5616
+ display: inline-flex;
5617
+ -webkit-box-align: center;
5618
+ -webkit-align-items: center;
5619
+ -ms-flex-align: center;
5620
+ align-items: center;
5621
+ cursor: pointer;
5622
+ -webkit-tap-highlight-color: transparent;
5623
+ white-space: nowrap;
5624
+ outline: 0;
4411
5625
  -webkit-user-select: none;
4412
5626
  -moz-user-select: none;
4413
5627
  -ms-user-select: none;
4414
5628
  user-select: none;
4415
- -webkit-tap-highlight-color: transparent;
5629
+ -webkit-transition: background-color 0.2s ease-out;
5630
+ transition: background-color 0.2s ease-out;
5631
+ }
5632
+
5633
+ .btn.icon-left, .icon-left.btn-small, .icon-left.btn-large, .btn.icon-right, .icon-right.btn-small, .icon-right.btn-large {
5634
+ position: relative;
5635
+ }
5636
+
5637
+ .btn.icon-left, .icon-left.btn-small, .icon-left.btn-large {
5638
+ padding-left: calc(var(--padding-icon) + var(--font-size-icon) + var(--gap-icon));
5639
+ }
5640
+
5641
+ .btn.icon-right, .icon-right.btn-small, .icon-right.btn-large {
5642
+ padding-right: calc(var(--padding-icon) + var(--font-size-icon) + var(--gap-icon));
5643
+ }
5644
+
5645
+ .btn.icon-left i, .icon-left.btn-small i, .icon-left.btn-large i, .btn.icon-right i, .icon-right.btn-small i, .icon-right.btn-large i {
5646
+ position: absolute;
5647
+ font-size: var(--font-size-icon);
5648
+ }
5649
+
5650
+ .btn.icon-left i, .icon-left.btn-small i, .icon-left.btn-large i {
5651
+ left: var(--padding-icon);
5652
+ }
5653
+
5654
+ .btn.icon-right i, .icon-right.btn-small i, .icon-right.btn-large i {
5655
+ right: var(--padding-icon);
4416
5656
  }
4417
5657
 
4418
5658
  .btn.disabled,
@@ -4456,33 +5696,44 @@ small {
4456
5696
  color: var(--font-color-disabled) !important;
4457
5697
  }
4458
5698
 
4459
- .btn,
4460
- .btn-small,
4461
- .btn-large,
4462
- .btn-floating,
4463
- .btn-flat {
4464
- font-size: 14px;
4465
- outline: 0;
5699
+ .btn.filled, .btn, .btn-small, .btn-large {
5700
+ background-color: var(--md-sys-color-primary);
4466
5701
  }
4467
- .btn i,
4468
- .btn-floating i,
4469
- .btn-large i,
4470
- .btn-small i,
4471
- .btn-flat i {
4472
- font-size: 1.3rem;
4473
- line-height: inherit;
5702
+
5703
+ .btn.tonal, .tonal.btn-small, .tonal.btn-large, .btn.elevated, .elevated.btn-small, .elevated.btn-large {
5704
+ background-color: var(--md-sys-color-secondary-container);
5705
+ color: var(--md-sys-color-on-secondary-container);
4474
5706
  }
4475
5707
 
4476
- .btn, .btn-small, .btn-large {
4477
- text-decoration: none;
4478
- color: var(--font-on-primary-color-main);
4479
- background-color: var(--primary-color);
4480
- text-align: center;
4481
- letter-spacing: 0.5px;
4482
- -webkit-transition: background-color 0.2s ease-out;
4483
- transition: background-color 0.2s ease-out;
5708
+ .btn.text, .text.btn-small, .text.btn-large, .btn-flat {
5709
+ -webkit-box-shadow: none;
5710
+ box-shadow: none;
5711
+ background-color: transparent;
5712
+ color: var(--md-sys-color-primary);
4484
5713
  cursor: pointer;
5714
+ -webkit-transition: background-color 0.2s;
5715
+ transition: background-color 0.2s;
5716
+ }
5717
+ .btn.text:focus, .text.btn-small:focus, .text.btn-large:focus, .btn.text:hover, .text.btn-small:hover, .text.btn-large:hover, .btn-flat:focus, .btn-flat:hover {
5718
+ -webkit-box-shadow: none;
5719
+ box-shadow: none;
5720
+ background-color: var(--hover-color);
5721
+ }
5722
+ .btn.text:focus, .text.btn-small:focus, .text.btn-large:focus, .btn-flat:focus {
5723
+ background-color: var(--focus-color);
5724
+ }
5725
+ .btn.text.disabled, .text.disabled.btn-small, .text.disabled.btn-large, .btn.text.btn.text[disabled], .text.text[disabled].btn-small, .text.text[disabled].btn-large, .btn.text.btn-flat[disabled], .btn-flat.disabled, .btn-flat.btn.text[disabled], .btn-flat.btn-flat[disabled] {
5726
+ background-color: transparent !important;
5727
+ color: var(--font-color-disabled) !important;
5728
+ cursor: default;
4485
5729
  }
5730
+
5731
+ .btn.outlined, .outlined.btn-small, .outlined.btn-large {
5732
+ background-color: transparent;
5733
+ color: var(--primary-color);
5734
+ border: 1px solid var(--primary-color);
5735
+ }
5736
+
4486
5737
  .btn:hover, .btn-small:hover, .btn-large:hover {
4487
5738
  background-color: var(--primary-color-raised-hover-solid);
4488
5739
  }
@@ -4491,17 +5742,21 @@ small {
4491
5742
  }
4492
5743
 
4493
5744
  .btn-floating {
4494
- display: inline-block;
4495
5745
  color: var(--font-on-secondary-color-main);
5746
+ width: 40px;
5747
+ height: 40px;
5748
+ background-color: var(--secondary-color);
5749
+ border-radius: 16px;
5750
+ padding: 0;
5751
+ display: grid;
5752
+ grid-auto-flow: column;
5753
+ -webkit-box-align: center;
5754
+ -webkit-align-items: center;
5755
+ -ms-flex-align: center;
5756
+ align-items: center;
4496
5757
  position: relative;
4497
5758
  overflow: hidden;
4498
5759
  z-index: 1;
4499
- width: 40px;
4500
- height: 40px;
4501
- line-height: 40px;
4502
- padding: 0;
4503
- background-color: var(--secondary-color);
4504
- border-radius: 50%;
4505
5760
  -webkit-transition: background-color 0.3s;
4506
5761
  transition: background-color 0.3s;
4507
5762
  cursor: pointer;
@@ -4524,9 +5779,6 @@ small {
4524
5779
  .btn-floating.btn-large.halfway-fab {
4525
5780
  bottom: -28px;
4526
5781
  }
4527
- .btn-floating.btn-large i {
4528
- line-height: 56px;
4529
- }
4530
5782
  .btn-floating.btn-small {
4531
5783
  width: 30px;
4532
5784
  height: 30px;
@@ -4534,9 +5786,6 @@ small {
4534
5786
  .btn-floating.btn-small.halfway-fab {
4535
5787
  bottom: -15px;
4536
5788
  }
4537
- .btn-floating.btn-small i {
4538
- line-height: 30px;
4539
- }
4540
5789
  .btn-floating.halfway-fab {
4541
5790
  position: absolute;
4542
5791
  right: 24px;
@@ -4547,12 +5796,11 @@ small {
4547
5796
  left: 24px;
4548
5797
  }
4549
5798
  .btn-floating i {
5799
+ color: var(--font-on-secondary-color-main);
5800
+ font-size: 1.6rem;
4550
5801
  width: inherit;
4551
5802
  display: inline-block;
4552
5803
  text-align: center;
4553
- color: var(--font-on-secondary-color-main);
4554
- font-size: 1.6rem;
4555
- line-height: 40px;
4556
5804
  }
4557
5805
 
4558
5806
  button.btn-floating {
@@ -4687,37 +5935,13 @@ button.btn-floating {
4687
5935
  width: 40px;
4688
5936
  height: 40px;
4689
5937
  background-color: var(--secondary-color);
4690
- border-radius: 50%;
5938
+ border-radius: 16px;
4691
5939
  -webkit-transform: scale(0);
4692
5940
  transform: scale(0);
4693
5941
  }
4694
5942
 
4695
- .btn-flat {
4696
- -webkit-box-shadow: none;
4697
- box-shadow: none;
4698
- background-color: transparent;
4699
- color: var(--font-color-medium);
4700
- cursor: pointer;
4701
- -webkit-transition: background-color 0.2s;
4702
- transition: background-color 0.2s;
4703
- }
4704
- .btn-flat:focus, .btn-flat:hover {
4705
- -webkit-box-shadow: none;
4706
- box-shadow: none;
4707
- background-color: var(--hover-color);
4708
- }
4709
- .btn-flat:focus {
4710
- background-color: var(--focus-color);
4711
- }
4712
- .btn-flat.disabled, .btn-flat.btn-flat[disabled] {
4713
- background-color: transparent !important;
4714
- color: var(--font-color-disabled) !important;
4715
- cursor: default;
4716
- }
4717
-
4718
5943
  .btn-large {
4719
5944
  height: 60px;
4720
- line-height: 60px;
4721
5945
  font-size: 18px;
4722
5946
  padding: 0 28px;
4723
5947
  }
@@ -4738,6 +5962,10 @@ button.btn-floating {
4738
5962
  display: block;
4739
5963
  }
4740
5964
 
5965
+ .btn.rounded, .rounded.btn-large, .rounded.btn-small {
5966
+ border-radius: 99999px;
5967
+ }
5968
+
4741
5969
  .dropdown-content {
4742
5970
  padding-left: 0;
4743
5971
  list-style-type: none;
@@ -4961,45 +6189,95 @@ body.keyboard-focused .dropdown-content li:focus {
4961
6189
  }
4962
6190
 
4963
6191
  .chip {
4964
- display: inline-block;
6192
+ --font-size: 14px;
6193
+ --font-size-icon: 18px;
6194
+ --padding: 8px;
6195
+ background-color: var(--background-color-level-4dp);
6196
+ display: -webkit-inline-box;
6197
+ display: -webkit-inline-flex;
6198
+ display: -ms-inline-flexbox;
6199
+ display: inline-flex;
6200
+ white-space: nowrap;
6201
+ gap: 8px;
6202
+ margin: 0;
4965
6203
  height: 32px;
4966
- font-size: 13px;
6204
+ padding-left: var(--padding);
6205
+ padding-right: var(--padding);
6206
+ font-size: var(--font-size);
4967
6207
  font-weight: 500;
4968
6208
  color: var(--font-color-medium);
4969
- line-height: 32px;
4970
- padding: 0 12px;
4971
- border-radius: 16px;
4972
- background-color: var(--background-color-level-4dp);
4973
- margin-bottom: 5px;
4974
- margin-right: 5px;
6209
+ border-radius: 8px;
6210
+ -webkit-box-align: center;
6211
+ -webkit-align-items: center;
6212
+ -ms-flex-align: center;
6213
+ align-items: center;
6214
+ -webkit-user-select: none;
6215
+ -moz-user-select: none;
6216
+ -ms-user-select: none;
6217
+ user-select: none;
6218
+ vertical-align: top;
4975
6219
  }
4976
6220
  .chip:focus {
4977
6221
  outline: none;
4978
6222
  background-color: var(--primary-color);
4979
6223
  color: var(--font-on-primary-color-main);
4980
6224
  }
6225
+
6226
+ .chip.outlined {
6227
+ background-color: transparent;
6228
+ border-color: var(--md-sys-color-outline);
6229
+ border-width: 1px;
6230
+ border-style: solid;
6231
+ }
6232
+
4981
6233
  .chip > img {
4982
- float: left;
4983
- margin: 0 8px 0 -12px;
4984
- height: 32px;
4985
- width: 32px;
4986
- border-radius: 50%;
6234
+ margin: 0;
6235
+ width: 24px;
6236
+ height: 24px;
6237
+ -o-object-fit: cover;
6238
+ object-fit: cover;
6239
+ border-radius: 12px;
6240
+ }
6241
+
6242
+ .chip > .material-icons {
6243
+ font-size: var(--font-size-icon);
4987
6244
  }
6245
+
4988
6246
  .chip .close {
6247
+ border-radius: 50%;
6248
+ height: 24px;
6249
+ width: 24px;
6250
+ padding: 0;
6251
+ display: grid;
6252
+ -webkit-box-pack: center;
6253
+ -webkit-justify-content: center;
6254
+ -ms-flex-pack: center;
6255
+ justify-content: center;
6256
+ -webkit-align-content: center;
6257
+ -ms-flex-line-pack: center;
6258
+ align-content: center;
4989
6259
  cursor: pointer;
4990
- float: right;
4991
- font-size: 16px;
4992
- line-height: 32px;
4993
- padding-left: 8px;
6260
+ }
6261
+
6262
+ .chip .close:hover {
6263
+ background-color: rgba(136, 136, 136, 0.5333333333);
4994
6264
  }
4995
6265
 
4996
6266
  .chips {
6267
+ display: -webkit-box;
6268
+ display: -webkit-flex;
6269
+ display: -ms-flexbox;
6270
+ display: flex;
6271
+ gap: 4px;
6272
+ -webkit-flex-wrap: wrap;
6273
+ -ms-flex-wrap: wrap;
6274
+ flex-wrap: wrap;
4997
6275
  border: none;
4998
6276
  border-bottom: 1px solid var(--font-color-medium);
4999
6277
  -webkit-box-shadow: none;
5000
6278
  box-shadow: none;
5001
6279
  margin: 0 0 8px 0;
5002
- min-height: 45px;
6280
+ padding: 4px;
5003
6281
  outline: none;
5004
6282
  -webkit-transition: all 0.3s;
5005
6283
  transition: all 0.3s;
@@ -5018,8 +6296,7 @@ body.keyboard-focused .dropdown-content li:focus {
5018
6296
  color: var(--font-color-main);
5019
6297
  display: inline-block;
5020
6298
  font-size: 16px;
5021
- height: 3rem;
5022
- line-height: 32px;
6299
+ height: 32px;
5023
6300
  outline: 0;
5024
6301
  margin: 0;
5025
6302
  padding: 0;
@@ -5721,6 +6998,17 @@ textarea.materialize-textarea {
5721
6998
 
5722
6999
  /* Switch
5723
7000
  ========================================================================== */
7001
+ .switch {
7002
+ --track-height: 32px;
7003
+ --track-width: 52px;
7004
+ --border-width: 2px;
7005
+ --size-off: 16px;
7006
+ --size-on: 24px;
7007
+ --icon-size: 16px;
7008
+ --gap-on: calc(((var(--track-height) - var(--size-on)) / 2) - var(--border-width));
7009
+ --gap-off: calc(((var(--track-height) - var(--size-off)) / 2) - var(--border-width));
7010
+ }
7011
+
5724
7012
  .switch,
5725
7013
  .switch * {
5726
7014
  -webkit-tap-highlight-color: transparent;
@@ -5740,22 +7028,24 @@ textarea.materialize-textarea {
5740
7028
  height: 0;
5741
7029
  }
5742
7030
  .switch label input[type=checkbox]:checked + .lever {
5743
- background-color: rgba(var(--primary-color-numeric), 0.32);
7031
+ background-color: var(--primary-color);
7032
+ border-color: var(--primary-color);
5744
7033
  }
5745
7034
  .switch label input[type=checkbox]:checked + .lever:before, .switch label input[type=checkbox]:checked + .lever:after {
5746
- left: 18px;
5747
- }
5748
- .switch label input[type=checkbox]:checked + .lever:after {
5749
- background-color: var(--primary-color);
7035
+ top: var(--gap-on);
7036
+ left: calc(var(--track-width) - var(--size-on) - var(--gap-on) - 2 * var(--border-width));
7037
+ width: var(--size-on);
7038
+ height: var(--size-on);
5750
7039
  }
5751
-
5752
7040
  .switch label .lever {
5753
7041
  content: "";
5754
7042
  display: inline-block;
5755
7043
  position: relative;
5756
- width: 36px;
5757
- height: 14px;
5758
- background-color: var(--slider-track-color);
7044
+ width: var(--track-width);
7045
+ height: var(--track-height);
7046
+ border-style: solid;
7047
+ border-width: 2px;
7048
+ border-color: var(--md-sys-color-outline);
5759
7049
  border-radius: 15px;
5760
7050
  margin-right: 10px;
5761
7051
  -webkit-transition: background 0.3s ease;
@@ -5767,20 +7057,19 @@ textarea.materialize-textarea {
5767
7057
  content: "";
5768
7058
  position: absolute;
5769
7059
  display: inline-block;
5770
- width: 20px;
5771
- height: 20px;
7060
+ width: var(--size-off);
7061
+ height: var(--size-off);
5772
7062
  border-radius: 50%;
5773
- left: 0;
5774
- top: -3px;
7063
+ left: var(--gap-off);
7064
+ top: var(--gap-off);
5775
7065
  -webkit-transition: left 0.3s ease, background 0.3s ease, -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease;
5776
7066
  transition: left 0.3s ease, background 0.3s ease, -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease;
5777
7067
  transition: left 0.3s ease, background 0.3s ease, box-shadow 0.1s ease, transform 0.1s ease;
5778
7068
  transition: left 0.3s ease, background 0.3s ease, box-shadow 0.1s ease, transform 0.1s ease, -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease;
5779
7069
  }
5780
7070
  .switch label .lever:after {
5781
- background-color: var(--switch-thumb-off-color);
5782
- -webkit-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);
5783
- 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);
7071
+ height: var(--size-off);
7072
+ width: var(--size-off);
5784
7073
  }
5785
7074
 
5786
7075
  input[type=checkbox]:not(:disabled) ~ .lever:active:before,
@@ -6096,7 +7385,6 @@ input[type=range] {
6096
7385
 
6097
7386
  input[type=range]::-webkit-slider-runnable-track {
6098
7387
  height: 3px;
6099
- background: var(--slider-track-color);
6100
7388
  border: none;
6101
7389
  }
6102
7390
 
@@ -6128,7 +7416,6 @@ input[type=range] {
6128
7416
 
6129
7417
  input[type=range]::-moz-range-track {
6130
7418
  height: 3px;
6131
- background: var(--slider-track-color);
6132
7419
  border: none;
6133
7420
  }
6134
7421
 
@@ -6264,9 +7551,9 @@ input[type=range]::-ms-thumb {
6264
7551
  .sidenav a:focus {
6265
7552
  background-color: var(--focus-color);
6266
7553
  }
6267
- .sidenav li.active > a:not(.collapsible-header) {
6268
- color: var(--font-on-primary-color-main);
6269
- background-color: var(--primary-color);
7554
+ .sidenav li.active > a:not(.collapsible-header):not(.btn):not(.btn-large):not(.btn-small):not(.btn-large):not(.btn-small):not(.btn-flat):not(.btn-large):not(.btn-floating) {
7555
+ color: var(--font-on-secondary-container-color);
7556
+ background-color: var(--secondary-container-color);
6270
7557
  }
6271
7558
  .sidenav .collapsible-body > ul {
6272
7559
  padding-left: 10px;
@@ -6409,15 +7696,6 @@ input[type=range]::-ms-thumb {
6409
7696
  padding: 16px 16px 0;
6410
7697
  }
6411
7698
  }
6412
- /*
6413
- .sidenav .collapsible-body > ul:not(.collapsible) > li.active,
6414
- .sidenav.sidenav-fixed .collapsible-body > ul:not(.collapsible) > li.active {
6415
- background-color: $primary-color;
6416
- a:not(.btn) {
6417
- color: $font-on-primary-color-main;
6418
- }
6419
- }
6420
- */
6421
7699
  .sidenav .collapsible-body {
6422
7700
  padding: 0;
6423
7701
  }
@@ -6447,9 +7725,111 @@ input[type=range]::-ms-thumb {
6447
7725
  .sidenav .collapsible-body,
6448
7726
  .sidenav.sidenav-fixed .collapsible-body {
6449
7727
  border: none;
6450
- background-color: var(--surface-color);
6451
7728
  }
6452
7729
 
7730
+ .progress {
7731
+ position: relative;
7732
+ height: 4px;
7733
+ display: block;
7734
+ width: 100%;
7735
+ border-radius: 2px;
7736
+ margin: 0.5rem 0 1rem 0;
7737
+ overflow: hidden;
7738
+ }
7739
+ .progress .determinate {
7740
+ position: absolute;
7741
+ top: 0;
7742
+ left: 0;
7743
+ bottom: 0;
7744
+ background-color: var(--primary-color);
7745
+ -webkit-transition: width 0.3s linear;
7746
+ transition: width 0.3s linear;
7747
+ }
7748
+ .progress .indeterminate {
7749
+ background-color: var(--primary-color);
7750
+ }
7751
+ .progress .indeterminate:before {
7752
+ content: "";
7753
+ position: absolute;
7754
+ background-color: inherit;
7755
+ top: 0;
7756
+ left: 0;
7757
+ bottom: 0;
7758
+ will-change: left, right;
7759
+ -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
7760
+ animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
7761
+ }
7762
+ .progress .indeterminate:after {
7763
+ content: "";
7764
+ position: absolute;
7765
+ background-color: inherit;
7766
+ top: 0;
7767
+ left: 0;
7768
+ bottom: 0;
7769
+ will-change: left, right;
7770
+ -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
7771
+ animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
7772
+ -webkit-animation-delay: 1.15s;
7773
+ animation-delay: 1.15s;
7774
+ }
7775
+
7776
+ @-webkit-keyframes indeterminate {
7777
+ 0% {
7778
+ left: -35%;
7779
+ right: 100%;
7780
+ }
7781
+ 60% {
7782
+ left: 100%;
7783
+ right: -90%;
7784
+ }
7785
+ 100% {
7786
+ left: 100%;
7787
+ right: -90%;
7788
+ }
7789
+ }
7790
+
7791
+ @keyframes indeterminate {
7792
+ 0% {
7793
+ left: -35%;
7794
+ right: 100%;
7795
+ }
7796
+ 60% {
7797
+ left: 100%;
7798
+ right: -90%;
7799
+ }
7800
+ 100% {
7801
+ left: 100%;
7802
+ right: -90%;
7803
+ }
7804
+ }
7805
+ @-webkit-keyframes indeterminate-short {
7806
+ 0% {
7807
+ left: -200%;
7808
+ right: 100%;
7809
+ }
7810
+ 60% {
7811
+ left: 107%;
7812
+ right: -8%;
7813
+ }
7814
+ 100% {
7815
+ left: 107%;
7816
+ right: -8%;
7817
+ }
7818
+ }
7819
+ @keyframes indeterminate-short {
7820
+ 0% {
7821
+ left: -200%;
7822
+ right: 100%;
7823
+ }
7824
+ 60% {
7825
+ left: 107%;
7826
+ right: -8%;
7827
+ }
7828
+ 100% {
7829
+ left: 107%;
7830
+ right: -8%;
7831
+ }
7832
+ }
6453
7833
  /*
6454
7834
  @license
6455
7835
  Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
@@ -7229,6 +8609,7 @@ input[type=range]::-ms-thumb {
7229
8609
  content: "";
7230
8610
  display: block;
7231
8611
  position: absolute;
8612
+ pointer-events: none;
7232
8613
  width: 100%;
7233
8614
  height: 100%;
7234
8615
  top: 0;
@@ -7729,80 +9110,4 @@ input[type=text].text-primary {
7729
9110
  text-align: center;
7730
9111
  margin-top: 1.2rem;
7731
9112
  }
7732
- }
7733
- :root, :host {
7734
- --surface-color: #f3f6fc;
7735
- --background-color: #ffffff;
7736
- --font-color-main: rgba(0, 0, 0, 0.87);
7737
- --font-color-medium: rgba(0, 0, 0, 0.56);
7738
- --font-color-disabled: rgba(0, 0, 0, 0.38);
7739
- --font-on-primary-color-main: rgba(255, 255, 255, 0.87);
7740
- --font-on-primary-color-dark-main: rgba(255, 255, 255, 0.87);
7741
- --font-on-primary-color-dark-medium: rgba(255, 255, 255, 0.60);
7742
- --font-on-primary-color-medium: rgba(255, 255, 255, 0.60);
7743
- --font-on-primary-color-disabled: rgba(255, 255, 255, 0.38);
7744
- --font-on-secondary-color-main: rgba(0, 0, 0, 0.87);
7745
- --hover-color: rgba(0, 0, 0, 0.04);
7746
- --focus-color: rgba(0, 0, 0, 0.12);
7747
- --focus-color-solid: #E0E0E0;
7748
- --background-color-disabled: rgba(0, 0, 0, 0.12);
7749
- --background-color-level-4dp: rgba(0, 0, 0, 0.09);
7750
- --background-color-level-16dp-solid: var(--surface-color);
7751
- --background-color-slight-emphasis: rgba(0, 0, 0, 0.025); /* stripes in table */
7752
- --background-color-card: var(--surface-color);
7753
- --tooltip-background-color: #313033;
7754
- --tooltip-font-color: rgba(255, 255, 255, 0.77);
7755
- --separator-color: #DDDDDD; /* borders between components */
7756
- --error-color: #F44336;
7757
- --slider-track-color: rgba(0, 0, 0, 0.26);
7758
- --switch-thumb-off-color: #ffffff;
7759
- --carousel-indicator-color: rgba(255, 255, 255, 0.45);
7760
- --carousel-indicator-active-color: #FFF;
7761
- --primary-color: #26a69a;
7762
- --primary-color-dark: #009688;
7763
- --primary-color-numeric: 38, 166, 154;
7764
- --primary-color-raised-hover-solid: #30B0A4;
7765
- --primary-color-raised-focus-solid: #44C4B8;
7766
- --primary-color-font-medium-color: rgba(var(--primary-color-numeric), 0.7);
7767
- --primary-color-font-disabled-color: rgba(var(--primary-color-numeric), 0.4);
7768
- --primary-color-hover-opaque: rgba(var(--primary-color-numeric), 0.06);
7769
- --primary-color-focus-opaque: rgba(var(--primary-color-numeric), 0.18);
7770
- --secondary-color: #EF5350;
7771
- --secondary-color-hover-solid: #FE625F;
7772
- --secondary-color-focus-solid: #FF7B78;
7773
- --md_sys_color_on-surface: 28, 27, 31;
7774
- }
7775
-
7776
- :root[theme=dark], :host[theme=dark] {
7777
- --background-color: #121212;
7778
- --surface-color: #242424;
7779
- --font-color-main: rgba(255, 255, 255, 0.87);
7780
- --font-color-medium: rgba(255, 255, 255, 0.60);
7781
- --font-color-disabled: rgba(255, 255, 255, 0.38);
7782
- --font-on-primary-color-main: rgba(0, 0, 0, 0.87);
7783
- --font-on-primary-color-dark-main: rgba(255, 255, 255, 0.87);
7784
- --font-on-primary-color-dark-medium: rgba(255, 255, 255, 0.60);
7785
- --font-on-primary-color-medium: rgba(0, 0, 0, 0.56);
7786
- --font-on-primary-color-disabled: rgba(0, 0, 0, 0.38);
7787
- --hover-color: rgba(255, 255, 255, 0.04);
7788
- --focus-color: rgba(255, 255, 255, 0.12);
7789
- --focus-color-solid: #424242;
7790
- --background-color-disabled: rgba(255, 255, 255, 0.12);
7791
- --background-color-level-4dp: rgba(255, 255, 255, 0.09);
7792
- --background-color-level-16dp-solid: #262626;
7793
- --background-color-card: var(--surface-color);
7794
- --background-color-slight-emphasis: rgba(255, 255, 255, 0.05);
7795
- --separator-color: #424242; /* borders between components */
7796
- --error-color: #CF6679;
7797
- --slider-track-color: rgba(255, 255, 255, 0.26);
7798
- --switch-thumb-off-color: #bababa;
7799
- --primary-color: #B39DDB;
7800
- --primary-color-dark: #9575CD;
7801
- --primary-color-numeric: 179, 157, 219;
7802
- --primary-color-raised-hover-solid: #C2ACEA;
7803
- --primary-color-raised-focus-solid: #DBC5FF;
7804
- --secondary-color: #CDDC39;
7805
- --secondary-color-hover-solid: #DCEB48;
7806
- --secondary-color-focus-solid: #F5FF61;
7807
- --md_sys_color_on-surface: 230, 225, 229;
7808
9113
  }