@flywheel-io/vision 0.5.0 → 0.7.0
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 +1 -19
- package/assets/fonts/Flywheel-Vision-Icons.svg +239 -0
- package/assets/fonts/{flywheel.eot → Flywheel-Vision-Icons.ttf} +0 -0
- package/assets/fonts/{flywheel.ttf → Flywheel-Vision-Icons.woff} +0 -0
- package/components/button/button.component.d.ts +3 -0
- package/components/button/button.module.d.ts +7 -0
- package/components/button-group/button-group.component.d.ts +3 -0
- package/components/button-group/button-group.module.d.ts +5 -0
- package/components/dialog/choice-dialog.component.d.ts +11 -5
- package/components/dialog/confirm-dialog.component.d.ts +3 -0
- package/components/dialog/dialog.module.d.ts +14 -0
- package/components/dialog/dialog.service.d.ts +3 -0
- package/components/dialog/error-dialog.component.d.ts +3 -0
- package/components/dialog/portal-dialog.component.d.ts +3 -0
- package/components/icon/icon.component.d.ts +5 -0
- package/components/icon/icon.module.d.ts +8 -0
- package/components/notification/notification/notification.component.d.ts +3 -0
- package/components/notification/notification-container/notification-container.component.d.ts +3 -0
- package/components/notification/notification.module.d.ts +11 -0
- package/components/notification/notification.service.d.ts +3 -0
- package/components/popover/popover-trigger.component.d.ts +3 -0
- package/components/popover/popover-trigger.directive.d.ts +3 -0
- package/components/popover/popover.component.d.ts +3 -0
- package/components/popover/popover.module.d.ts +8 -0
- package/components/shared/pipes/pipes.module.d.ts +6 -0
- package/components/shared/pipes/translate.pipe.d.ts +3 -0
- package/components/shared/pipes/trusthtml.pipe.d.ts +3 -0
- package/components/shared/translation.service.d.ts +3 -0
- package/components/table/table.component.d.ts +3 -0
- package/components/table/table.module.d.ts +12 -0
- package/elements/README.md +20 -0
- package/elements/flywheel-io-vision-elements.d.ts +1 -0
- package/elements/package.json +5 -6
- package/esm2020/components/button/button.component.mjs +32 -0
- package/esm2020/components/button/button.module.mjs +33 -0
- package/esm2020/components/button-group/button-group.component.mjs +25 -0
- package/esm2020/components/button-group/button-group.module.mjs +23 -0
- package/esm2020/components/dialog/choice-dialog.component.mjs +90 -0
- package/esm2020/components/dialog/confirm-dialog.component.mjs +57 -0
- package/{esm2015/components/dialog/dialog.module.js → esm2020/components/dialog/dialog.module.mjs} +58 -31
- package/esm2020/components/dialog/dialog.service.mjs +72 -0
- package/esm2020/components/dialog/error-dialog.component.mjs +45 -0
- package/esm2020/components/dialog/portal-dialog.component.mjs +112 -0
- package/esm2020/components/icon/icon.component.mjs +19 -0
- package/esm2020/components/icon/icon.module.mjs +26 -0
- package/esm2020/components/notification/notification/notification.component.mjs +69 -0
- package/{esm2015/components/notification/notification/notification.model.js → esm2020/components/notification/notification/notification.model.mjs} +0 -0
- package/esm2020/components/notification/notification-container/notification-container.component.mjs +86 -0
- package/{esm2015/components/notification/notification-timer.service.js → esm2020/components/notification/notification-timer.service.mjs} +0 -0
- package/esm2020/components/notification/notification.module.mjs +56 -0
- package/{esm2015/components/notification/notification.service.js → esm2020/components/notification/notification.service.mjs} +9 -7
- package/esm2020/components/popover/popover-trigger.component.mjs +56 -0
- package/esm2020/components/popover/popover-trigger.directive.mjs +133 -0
- package/esm2020/components/popover/popover.component.mjs +29 -0
- package/esm2020/components/popover/popover.module.mjs +46 -0
- package/esm2020/components/shared/pipes/pipes.module.mjs +36 -0
- package/esm2020/components/shared/pipes/translate.pipe.mjs +39 -0
- package/esm2020/components/shared/pipes/trusthtml.pipe.mjs +21 -0
- package/esm2020/components/shared/translation.service.mjs +25 -0
- package/esm2020/components/table/table.component.mjs +179 -0
- package/esm2020/components/table/table.module.mjs +56 -0
- package/esm2020/elements/elements.mjs +61 -0
- package/{esm2015/elements/flywheel-io-vision-elements.js → esm2020/elements/flywheel-io-vision-elements.mjs} +0 -0
- package/{esm2015/elements/polyfills.js → esm2020/elements/polyfills.mjs} +0 -0
- package/{esm2015/elements/public-api.js → esm2020/elements/public-api.mjs} +0 -0
- package/esm2020/flywheel-io-vision.mjs +5 -0
- package/esm2020/public-api.mjs +25 -0
- package/fesm2015/{flywheel-io-vision-elements.js → flywheel-io-vision-elements.mjs} +19 -14
- package/fesm2015/flywheel-io-vision-elements.mjs.map +1 -0
- package/fesm2015/flywheel-io-vision.mjs +1402 -0
- package/fesm2015/flywheel-io-vision.mjs.map +1 -0
- package/fesm2020/flywheel-io-vision-elements.mjs +85 -0
- package/fesm2020/flywheel-io-vision-elements.mjs.map +1 -0
- package/fesm2020/flywheel-io-vision.mjs +1392 -0
- package/fesm2020/flywheel-io-vision.mjs.map +1 -0
- package/flywheel-io-vision.d.ts +1 -4
- package/package.json +43 -19
- package/public-api.d.ts +2 -0
- package/scss/atoms/ghost.scss +30 -0
- package/scss/config/theme.scss +6 -6
- package/scss/icons/_icon-font-face.scss +5 -6
- package/scss/icons/_icon-glyphs.scss +96 -16
- package/scss/material/overrides.scss +6 -1
- package/styles.css +274 -202
- package/styles.scss +8 -9
- package/assets/fonts/flywheel.svg +0 -101
- package/assets/fonts/flywheel.woff +0 -0
- package/bundles/flywheel-io-vision-elements.umd.js +0 -425
- package/bundles/flywheel-io-vision-elements.umd.js.map +0 -1
- package/bundles/flywheel-io-vision-elements.umd.min.js +0 -2
- package/bundles/flywheel-io-vision-elements.umd.min.js.map +0 -1
- package/bundles/flywheel-io-vision.umd.js +0 -1578
- package/bundles/flywheel-io-vision.umd.js.map +0 -1
- package/bundles/flywheel-io-vision.umd.min.js +0 -2
- package/bundles/flywheel-io-vision.umd.min.js.map +0 -1
- package/elements/flywheel-io-vision-elements.metadata.json +0 -1
- package/esm2015/components/button/button.component.js +0 -29
- package/esm2015/components/button/button.module.js +0 -24
- package/esm2015/components/button-group/button-group.component.js +0 -27
- package/esm2015/components/button-group/button-group.module.js +0 -18
- package/esm2015/components/dialog/choice-dialog.component.js +0 -52
- package/esm2015/components/dialog/confirm-dialog.component.js +0 -40
- package/esm2015/components/dialog/dialog.service.js +0 -69
- package/esm2015/components/dialog/error-dialog.component.js +0 -32
- package/esm2015/components/dialog/portal-dialog.component.js +0 -88
- package/esm2015/components/notification/notification/notification.component.js +0 -73
- package/esm2015/components/notification/notification-container/notification-container.component.js +0 -89
- package/esm2015/components/notification/notification.module.js +0 -37
- package/esm2015/components/popover/popover-trigger.component.js +0 -49
- package/esm2015/components/popover/popover-trigger.directive.js +0 -134
- package/esm2015/components/popover/popover.component.js +0 -23
- package/esm2015/components/popover/popover.module.js +0 -33
- package/esm2015/components/shared/pipes/pipes.module.js +0 -24
- package/esm2015/components/shared/pipes/translate.pipe.js +0 -40
- package/esm2015/components/shared/pipes/trusthtml.pipe.js +0 -20
- package/esm2015/components/shared/translation.service.js +0 -22
- package/esm2015/components/table/table.component.js +0 -165
- package/esm2015/components/table/table.module.js +0 -35
- package/esm2015/elements/elements.js +0 -56
- package/esm2015/flywheel-io-vision.js +0 -9
- package/esm2015/public-api.js +0 -23
- package/fesm2015/flywheel-io-vision-elements.js.map +0 -1
- package/fesm2015/flywheel-io-vision.js +0 -1168
- package/fesm2015/flywheel-io-vision.js.map +0 -1
- package/flywheel-io-vision.metadata.json +0 -1
package/styles.css
CHANGED
|
@@ -2,11 +2,6 @@
|
|
|
2
2
|
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap");
|
|
3
3
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700");
|
|
4
4
|
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600");
|
|
5
|
-
/* Colors for the ripple elements.*/
|
|
6
|
-
/* stylelint-disable-next-line material/theme-mixin-api */
|
|
7
|
-
/* stylelint-disable-next-line material/theme-mixin-api */
|
|
8
|
-
/* stylelint-disable material/no-prefixes */
|
|
9
|
-
/* stylelint-enable */
|
|
10
5
|
.mat-badge-content {
|
|
11
6
|
font-weight: 600;
|
|
12
7
|
font-size: 12px;
|
|
@@ -21,84 +16,122 @@
|
|
|
21
16
|
font-size: 24px;
|
|
22
17
|
}
|
|
23
18
|
|
|
24
|
-
.mat-h1,
|
|
25
|
-
|
|
19
|
+
.mat-h1,
|
|
20
|
+
.mat-headline,
|
|
21
|
+
.mat-typography .mat-h1,
|
|
22
|
+
.mat-typography .mat-headline,
|
|
23
|
+
.mat-typography h1 {
|
|
24
|
+
font: 400 24px / 32px Roboto, "Helvetica Neue", sans-serif;
|
|
26
25
|
letter-spacing: normal;
|
|
27
26
|
margin: 0 0 16px;
|
|
28
27
|
}
|
|
29
28
|
|
|
30
|
-
.mat-h2,
|
|
31
|
-
|
|
29
|
+
.mat-h2,
|
|
30
|
+
.mat-title,
|
|
31
|
+
.mat-typography .mat-h2,
|
|
32
|
+
.mat-typography .mat-title,
|
|
33
|
+
.mat-typography h2 {
|
|
34
|
+
font: 500 20px / 32px Roboto, "Helvetica Neue", sans-serif;
|
|
32
35
|
letter-spacing: normal;
|
|
33
36
|
margin: 0 0 16px;
|
|
34
37
|
}
|
|
35
38
|
|
|
36
|
-
.mat-h3,
|
|
37
|
-
|
|
39
|
+
.mat-h3,
|
|
40
|
+
.mat-subheading-2,
|
|
41
|
+
.mat-typography .mat-h3,
|
|
42
|
+
.mat-typography .mat-subheading-2,
|
|
43
|
+
.mat-typography h3 {
|
|
44
|
+
font: 400 16px / 28px Roboto, "Helvetica Neue", sans-serif;
|
|
38
45
|
letter-spacing: normal;
|
|
39
46
|
margin: 0 0 16px;
|
|
40
47
|
}
|
|
41
48
|
|
|
42
|
-
.mat-h4,
|
|
43
|
-
|
|
49
|
+
.mat-h4,
|
|
50
|
+
.mat-subheading-1,
|
|
51
|
+
.mat-typography .mat-h4,
|
|
52
|
+
.mat-typography .mat-subheading-1,
|
|
53
|
+
.mat-typography h4 {
|
|
54
|
+
font: 400 15px / 24px Roboto, "Helvetica Neue", sans-serif;
|
|
44
55
|
letter-spacing: normal;
|
|
45
56
|
margin: 0 0 16px;
|
|
46
57
|
}
|
|
47
58
|
|
|
48
|
-
.mat-h5,
|
|
49
|
-
|
|
59
|
+
.mat-h5,
|
|
60
|
+
.mat-typography .mat-h5,
|
|
61
|
+
.mat-typography h5 {
|
|
62
|
+
font: 400 calc(14px * 0.83) / 20px Roboto, "Helvetica Neue", sans-serif;
|
|
50
63
|
margin: 0 0 12px;
|
|
51
64
|
}
|
|
52
65
|
|
|
53
|
-
.mat-h6,
|
|
54
|
-
|
|
66
|
+
.mat-h6,
|
|
67
|
+
.mat-typography .mat-h6,
|
|
68
|
+
.mat-typography h6 {
|
|
69
|
+
font: 400 calc(14px * 0.67) / 20px Roboto, "Helvetica Neue", sans-serif;
|
|
55
70
|
margin: 0 0 12px;
|
|
56
71
|
}
|
|
57
72
|
|
|
58
|
-
.mat-body-strong,
|
|
59
|
-
|
|
73
|
+
.mat-body-strong,
|
|
74
|
+
.mat-body-2,
|
|
75
|
+
.mat-typography .mat-body-strong,
|
|
76
|
+
.mat-typography .mat-body-2 {
|
|
77
|
+
font: 500 14px / 24px Roboto, "Helvetica Neue", sans-serif;
|
|
60
78
|
letter-spacing: normal;
|
|
61
79
|
}
|
|
62
80
|
|
|
63
|
-
.mat-body,
|
|
64
|
-
|
|
81
|
+
.mat-body,
|
|
82
|
+
.mat-body-1,
|
|
83
|
+
.mat-typography .mat-body,
|
|
84
|
+
.mat-typography .mat-body-1,
|
|
85
|
+
.mat-typography {
|
|
86
|
+
font: 400 14px / 20px Roboto, "Helvetica Neue", sans-serif;
|
|
65
87
|
letter-spacing: normal;
|
|
66
88
|
}
|
|
67
|
-
.mat-body p,
|
|
89
|
+
.mat-body p,
|
|
90
|
+
.mat-body-1 p,
|
|
91
|
+
.mat-typography .mat-body p,
|
|
92
|
+
.mat-typography .mat-body-1 p,
|
|
93
|
+
.mat-typography p {
|
|
68
94
|
margin: 0 0 12px;
|
|
69
95
|
}
|
|
70
96
|
|
|
71
|
-
.mat-small,
|
|
72
|
-
|
|
97
|
+
.mat-small,
|
|
98
|
+
.mat-caption,
|
|
99
|
+
.mat-typography .mat-small,
|
|
100
|
+
.mat-typography .mat-caption {
|
|
101
|
+
font: 400 12px / 20px Roboto, "Helvetica Neue", sans-serif;
|
|
73
102
|
letter-spacing: normal;
|
|
74
103
|
}
|
|
75
104
|
|
|
76
|
-
.mat-display-4,
|
|
77
|
-
|
|
105
|
+
.mat-display-4,
|
|
106
|
+
.mat-typography .mat-display-4 {
|
|
107
|
+
font: 300 112px / 112px Roboto, "Helvetica Neue", sans-serif;
|
|
78
108
|
letter-spacing: -0.05em;
|
|
79
109
|
margin: 0 0 56px;
|
|
80
110
|
}
|
|
81
111
|
|
|
82
|
-
.mat-display-3,
|
|
83
|
-
|
|
112
|
+
.mat-display-3,
|
|
113
|
+
.mat-typography .mat-display-3 {
|
|
114
|
+
font: 400 56px / 56px Roboto, "Helvetica Neue", sans-serif;
|
|
84
115
|
letter-spacing: -0.02em;
|
|
85
116
|
margin: 0 0 64px;
|
|
86
117
|
}
|
|
87
118
|
|
|
88
|
-
.mat-display-2,
|
|
89
|
-
|
|
119
|
+
.mat-display-2,
|
|
120
|
+
.mat-typography .mat-display-2 {
|
|
121
|
+
font: 400 45px / 48px Roboto, "Helvetica Neue", sans-serif;
|
|
90
122
|
letter-spacing: -0.005em;
|
|
91
123
|
margin: 0 0 64px;
|
|
92
124
|
}
|
|
93
125
|
|
|
94
|
-
.mat-display-1,
|
|
95
|
-
|
|
126
|
+
.mat-display-1,
|
|
127
|
+
.mat-typography .mat-display-1 {
|
|
128
|
+
font: 400 34px / 40px Roboto, "Helvetica Neue", sans-serif;
|
|
96
129
|
letter-spacing: normal;
|
|
97
130
|
margin: 0 0 64px;
|
|
98
131
|
}
|
|
99
132
|
|
|
100
133
|
.mat-bottom-sheet-container {
|
|
101
|
-
font: 400 14px/20px Roboto, "Helvetica Neue", sans-serif;
|
|
134
|
+
font: 400 14px / 20px Roboto, "Helvetica Neue", sans-serif;
|
|
102
135
|
letter-spacing: normal;
|
|
103
136
|
}
|
|
104
137
|
|
|
@@ -181,7 +214,7 @@
|
|
|
181
214
|
}
|
|
182
215
|
|
|
183
216
|
.mat-dialog-title {
|
|
184
|
-
font: 500 20px/32px Roboto, "Helvetica Neue", sans-serif;
|
|
217
|
+
font: 500 20px / 32px Roboto, "Helvetica Neue", sans-serif;
|
|
185
218
|
letter-spacing: normal;
|
|
186
219
|
}
|
|
187
220
|
|
|
@@ -192,7 +225,7 @@
|
|
|
192
225
|
}
|
|
193
226
|
|
|
194
227
|
.mat-expansion-panel-content {
|
|
195
|
-
font: 400 14px/20px Roboto, "Helvetica Neue", sans-serif;
|
|
228
|
+
font: 400 14px / 20px Roboto, "Helvetica Neue", sans-serif;
|
|
196
229
|
letter-spacing: normal;
|
|
197
230
|
}
|
|
198
231
|
|
|
@@ -267,17 +300,14 @@
|
|
|
267
300
|
.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
|
|
268
301
|
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
|
|
269
302
|
transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px);
|
|
270
|
-
-ms-transform: translateY(-1.28125em) scale(0.75);
|
|
271
303
|
width: 133.3333333333%;
|
|
272
304
|
}
|
|
273
305
|
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper .mat-form-field-label {
|
|
274
306
|
transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00101px);
|
|
275
|
-
-ms-transform: translateY(-1.28124em) scale(0.75);
|
|
276
307
|
width: 133.3333433333%;
|
|
277
308
|
}
|
|
278
309
|
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
|
|
279
310
|
transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00102px);
|
|
280
|
-
-ms-transform: translateY(-1.28123em) scale(0.75);
|
|
281
311
|
width: 133.3333533333%;
|
|
282
312
|
}
|
|
283
313
|
.mat-form-field-appearance-legacy .mat-form-field-label {
|
|
@@ -293,7 +323,7 @@
|
|
|
293
323
|
|
|
294
324
|
@media print {
|
|
295
325
|
.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
|
|
296
|
-
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
|
|
326
|
+
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
|
|
297
327
|
transform: translateY(-1.28122em) scale(0.75);
|
|
298
328
|
}
|
|
299
329
|
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper .mat-form-field-label {
|
|
@@ -431,7 +461,7 @@ input.mat-input-element {
|
|
|
431
461
|
.mat-toolbar h4,
|
|
432
462
|
.mat-toolbar h5,
|
|
433
463
|
.mat-toolbar h6 {
|
|
434
|
-
font: 500 20px/32px Roboto, "Helvetica Neue", sans-serif;
|
|
464
|
+
font: 500 20px / 32px Roboto, "Helvetica Neue", sans-serif;
|
|
435
465
|
letter-spacing: normal;
|
|
436
466
|
margin: 0;
|
|
437
467
|
}
|
|
@@ -527,7 +557,7 @@ input.mat-input-element {
|
|
|
527
557
|
}
|
|
528
558
|
|
|
529
559
|
.mat-optgroup-label {
|
|
530
|
-
font: 500 14px/24px Roboto, "Helvetica Neue", sans-serif;
|
|
560
|
+
font: 500 14px / 24px Roboto, "Helvetica Neue", sans-serif;
|
|
531
561
|
letter-spacing: normal;
|
|
532
562
|
}
|
|
533
563
|
|
|
@@ -589,6 +619,11 @@ input.mat-input-element {
|
|
|
589
619
|
outline: 0;
|
|
590
620
|
-webkit-appearance: none;
|
|
591
621
|
-moz-appearance: none;
|
|
622
|
+
left: 0;
|
|
623
|
+
}
|
|
624
|
+
[dir=rtl] .cdk-visually-hidden {
|
|
625
|
+
left: auto;
|
|
626
|
+
right: 0;
|
|
592
627
|
}
|
|
593
628
|
|
|
594
629
|
.cdk-overlay-container, .cdk-global-overlay-wrapper {
|
|
@@ -646,8 +681,14 @@ input.mat-input-element {
|
|
|
646
681
|
background: rgba(0, 0, 0, 0.32);
|
|
647
682
|
}
|
|
648
683
|
|
|
649
|
-
.cdk-overlay-transparent-backdrop
|
|
684
|
+
.cdk-overlay-transparent-backdrop {
|
|
685
|
+
transition: visibility 1ms linear, opacity 1ms linear;
|
|
686
|
+
visibility: hidden;
|
|
687
|
+
opacity: 1;
|
|
688
|
+
}
|
|
689
|
+
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
|
|
650
690
|
opacity: 0;
|
|
691
|
+
visibility: visible;
|
|
651
692
|
}
|
|
652
693
|
|
|
653
694
|
.cdk-overlay-connected-position-bounding-box {
|
|
@@ -665,16 +706,6 @@ input.mat-input-element {
|
|
|
665
706
|
overflow-y: scroll;
|
|
666
707
|
}
|
|
667
708
|
|
|
668
|
-
@keyframes cdk-text-field-autofill-start { /*!*/ }
|
|
669
|
-
@keyframes cdk-text-field-autofill-end { /*!*/ }
|
|
670
|
-
.cdk-text-field-autofill-monitored:-webkit-autofill {
|
|
671
|
-
animation: cdk-text-field-autofill-start 0s 1ms;
|
|
672
|
-
}
|
|
673
|
-
|
|
674
|
-
.cdk-text-field-autofill-monitored:not(:-webkit-autofill) {
|
|
675
|
-
animation: cdk-text-field-autofill-end 0s 1ms;
|
|
676
|
-
}
|
|
677
|
-
|
|
678
709
|
textarea.cdk-textarea-autosize {
|
|
679
710
|
resize: none;
|
|
680
711
|
}
|
|
@@ -692,6 +723,16 @@ textarea.cdk-textarea-autosize-measuring-firefox {
|
|
|
692
723
|
height: 0 !important;
|
|
693
724
|
}
|
|
694
725
|
|
|
726
|
+
@keyframes cdk-text-field-autofill-start { /*!*/ }
|
|
727
|
+
@keyframes cdk-text-field-autofill-end { /*!*/ }
|
|
728
|
+
.cdk-text-field-autofill-monitored:-webkit-autofill {
|
|
729
|
+
animation: cdk-text-field-autofill-start 0s 1ms;
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
.cdk-text-field-autofill-monitored:not(:-webkit-autofill) {
|
|
733
|
+
animation: cdk-text-field-autofill-end 0s 1ms;
|
|
734
|
+
}
|
|
735
|
+
|
|
695
736
|
.mat-focus-indicator {
|
|
696
737
|
position: relative;
|
|
697
738
|
}
|
|
@@ -897,36 +938,16 @@ textarea.cdk-textarea-autosize-measuring-firefox {
|
|
|
897
938
|
color: rgba(0, 0, 0, 0.87);
|
|
898
939
|
}
|
|
899
940
|
|
|
900
|
-
.mat-badge-content {
|
|
901
|
-
color: white;
|
|
902
|
-
background: #1b68fa;
|
|
903
|
-
}
|
|
904
|
-
.cdk-high-contrast-active .mat-badge-content {
|
|
905
|
-
outline: solid 1px;
|
|
906
|
-
border-radius: 0;
|
|
907
|
-
}
|
|
908
|
-
|
|
909
|
-
.mat-badge-accent .mat-badge-content {
|
|
910
|
-
background: #59b96b;
|
|
911
|
-
color: white;
|
|
912
|
-
}
|
|
913
|
-
|
|
914
|
-
.mat-badge-warn .mat-badge-content {
|
|
915
|
-
color: white;
|
|
916
|
-
background: #d9534b;
|
|
917
|
-
}
|
|
918
|
-
|
|
919
941
|
.mat-badge {
|
|
920
942
|
position: relative;
|
|
921
943
|
}
|
|
922
944
|
|
|
923
|
-
.mat-badge
|
|
924
|
-
|
|
945
|
+
.mat-badge.mat-badge {
|
|
946
|
+
overflow: visible;
|
|
925
947
|
}
|
|
926
948
|
|
|
927
|
-
.mat-badge-
|
|
928
|
-
|
|
929
|
-
color: rgba(0, 0, 0, 0.38);
|
|
949
|
+
.mat-badge-hidden .mat-badge-content {
|
|
950
|
+
display: none;
|
|
930
951
|
}
|
|
931
952
|
|
|
932
953
|
.mat-badge-content {
|
|
@@ -1071,6 +1092,30 @@ textarea.cdk-textarea-autosize-measuring-firefox {
|
|
|
1071
1092
|
left: -14px;
|
|
1072
1093
|
}
|
|
1073
1094
|
|
|
1095
|
+
.mat-badge-content {
|
|
1096
|
+
color: white;
|
|
1097
|
+
background: #1b68fa;
|
|
1098
|
+
}
|
|
1099
|
+
.cdk-high-contrast-active .mat-badge-content {
|
|
1100
|
+
outline: solid 1px;
|
|
1101
|
+
border-radius: 0;
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
.mat-badge-accent .mat-badge-content {
|
|
1105
|
+
background: #59b96b;
|
|
1106
|
+
color: white;
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
.mat-badge-warn .mat-badge-content {
|
|
1110
|
+
color: white;
|
|
1111
|
+
background: #d9534b;
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
.mat-badge-disabled .mat-badge-content {
|
|
1115
|
+
background: #b9b9b9;
|
|
1116
|
+
color: rgba(0, 0, 0, 0.38);
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1074
1119
|
.mat-bottom-sheet-container {
|
|
1075
1120
|
box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
|
|
1076
1121
|
background: white;
|
|
@@ -1180,13 +1225,13 @@ textarea.cdk-textarea-autosize-measuring-firefox {
|
|
|
1180
1225
|
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
|
|
1181
1226
|
}
|
|
1182
1227
|
|
|
1183
|
-
.mat-button-toggle-standalone,
|
|
1184
|
-
.mat-button-toggle-group {
|
|
1228
|
+
.mat-button-toggle-standalone:not([class*=mat-elevation-z]),
|
|
1229
|
+
.mat-button-toggle-group:not([class*=mat-elevation-z]) {
|
|
1185
1230
|
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);
|
|
1186
1231
|
}
|
|
1187
1232
|
|
|
1188
|
-
.mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
|
|
1189
|
-
.mat-button-toggle-group-appearance-standard {
|
|
1233
|
+
.mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),
|
|
1234
|
+
.mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]) {
|
|
1190
1235
|
box-shadow: none;
|
|
1191
1236
|
}
|
|
1192
1237
|
|
|
@@ -1206,18 +1251,18 @@ textarea.cdk-textarea-autosize-measuring-firefox {
|
|
|
1206
1251
|
}
|
|
1207
1252
|
|
|
1208
1253
|
.mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
|
|
1209
|
-
border-left: solid 1px
|
|
1254
|
+
border-left: solid 1px #e0e0e0;
|
|
1210
1255
|
}
|
|
1211
1256
|
|
|
1212
1257
|
[dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
|
|
1213
1258
|
border-left: none;
|
|
1214
|
-
border-right: solid 1px
|
|
1259
|
+
border-right: solid 1px #e0e0e0;
|
|
1215
1260
|
}
|
|
1216
1261
|
|
|
1217
1262
|
.mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle + .mat-button-toggle {
|
|
1218
1263
|
border-left: none;
|
|
1219
1264
|
border-right: none;
|
|
1220
|
-
border-top: solid 1px
|
|
1265
|
+
border-top: solid 1px #e0e0e0;
|
|
1221
1266
|
}
|
|
1222
1267
|
|
|
1223
1268
|
.mat-button-toggle-checked {
|
|
@@ -1241,7 +1286,7 @@ textarea.cdk-textarea-autosize-measuring-firefox {
|
|
|
1241
1286
|
|
|
1242
1287
|
.mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
|
|
1243
1288
|
.mat-button-toggle-group-appearance-standard {
|
|
1244
|
-
border: solid 1px
|
|
1289
|
+
border: solid 1px #e0e0e0;
|
|
1245
1290
|
}
|
|
1246
1291
|
|
|
1247
1292
|
.mat-button-toggle-appearance-standard .mat-button-toggle-label-content {
|
|
@@ -1296,7 +1341,7 @@ textarea.cdk-textarea-autosize-measuring-firefox {
|
|
|
1296
1341
|
border-color: #b0b0b0;
|
|
1297
1342
|
}
|
|
1298
1343
|
.mat-checkbox-disabled .mat-checkbox-label {
|
|
1299
|
-
color: rgba(0, 0, 0, 0.
|
|
1344
|
+
color: rgba(0, 0, 0, 0.38);
|
|
1300
1345
|
}
|
|
1301
1346
|
|
|
1302
1347
|
.mat-checkbox .mat-ripple-element {
|
|
@@ -1396,7 +1441,7 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
|
|
|
1396
1441
|
}
|
|
1397
1442
|
|
|
1398
1443
|
.mat-calendar-arrow {
|
|
1399
|
-
|
|
1444
|
+
fill: rgba(0, 0, 0, 0.54);
|
|
1400
1445
|
}
|
|
1401
1446
|
|
|
1402
1447
|
.mat-datepicker-toggle,
|
|
@@ -1405,14 +1450,11 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
|
|
|
1405
1450
|
color: rgba(0, 0, 0, 0.54);
|
|
1406
1451
|
}
|
|
1407
1452
|
|
|
1408
|
-
.mat-calendar-table-header {
|
|
1409
|
-
color: rgba(0, 0, 0, 0.38);
|
|
1410
|
-
}
|
|
1411
|
-
|
|
1412
1453
|
.mat-calendar-table-header-divider::after {
|
|
1413
1454
|
background: rgba(0, 0, 0, 0.12);
|
|
1414
1455
|
}
|
|
1415
1456
|
|
|
1457
|
+
.mat-calendar-table-header,
|
|
1416
1458
|
.mat-calendar-body-label {
|
|
1417
1459
|
color: rgba(0, 0, 0, 0.54);
|
|
1418
1460
|
}
|
|
@@ -1485,12 +1527,16 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
|
|
|
1485
1527
|
box-shadow: inset 0 0 0 1px white;
|
|
1486
1528
|
}
|
|
1487
1529
|
|
|
1488
|
-
.mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
|
|
1489
1530
|
.cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
|
|
1490
1531
|
.cdk-program-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
|
|
1491
1532
|
background-color: rgba(27, 104, 250, 0.3);
|
|
1492
1533
|
}
|
|
1493
1534
|
|
|
1535
|
+
@media (hover: hover) {
|
|
1536
|
+
.mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
|
|
1537
|
+
background-color: rgba(27, 104, 250, 0.3);
|
|
1538
|
+
}
|
|
1539
|
+
}
|
|
1494
1540
|
.mat-datepicker-content {
|
|
1495
1541
|
box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
1496
1542
|
background-color: white;
|
|
@@ -1529,11 +1575,15 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
|
|
|
1529
1575
|
.mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected {
|
|
1530
1576
|
box-shadow: inset 0 0 0 1px white;
|
|
1531
1577
|
}
|
|
1532
|
-
.mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
|
|
1533
1578
|
.mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
|
|
1534
1579
|
.mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
|
|
1535
1580
|
background-color: rgba(89, 185, 107, 0.3);
|
|
1536
1581
|
}
|
|
1582
|
+
@media (hover: hover) {
|
|
1583
|
+
.mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
|
|
1584
|
+
background-color: rgba(89, 185, 107, 0.3);
|
|
1585
|
+
}
|
|
1586
|
+
}
|
|
1537
1587
|
.mat-datepicker-content.mat-warn .mat-calendar-body-in-range::before {
|
|
1538
1588
|
background: rgba(217, 83, 75, 0.2);
|
|
1539
1589
|
}
|
|
@@ -1567,14 +1617,18 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
|
|
|
1567
1617
|
.mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected {
|
|
1568
1618
|
box-shadow: inset 0 0 0 1px white;
|
|
1569
1619
|
}
|
|
1570
|
-
.mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
|
|
1571
1620
|
.mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
|
|
1572
1621
|
.mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
|
|
1573
1622
|
background-color: rgba(217, 83, 75, 0.3);
|
|
1574
1623
|
}
|
|
1624
|
+
@media (hover: hover) {
|
|
1625
|
+
.mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
|
|
1626
|
+
background-color: rgba(217, 83, 75, 0.3);
|
|
1627
|
+
}
|
|
1628
|
+
}
|
|
1575
1629
|
|
|
1576
1630
|
.mat-datepicker-content-touch {
|
|
1577
|
-
box-shadow: 0px
|
|
1631
|
+
box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
|
|
1578
1632
|
}
|
|
1579
1633
|
|
|
1580
1634
|
.mat-datepicker-toggle-active {
|
|
@@ -1834,9 +1888,9 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
|
|
|
1834
1888
|
.mat-list-base .mat-subheader {
|
|
1835
1889
|
color: rgba(0, 0, 0, 0.54);
|
|
1836
1890
|
}
|
|
1837
|
-
|
|
1838
|
-
.mat-list-item-disabled {
|
|
1891
|
+
.mat-list-base .mat-list-item-disabled {
|
|
1839
1892
|
background-color: #eeeeee;
|
|
1893
|
+
color: rgba(0, 0, 0, 0.38);
|
|
1840
1894
|
}
|
|
1841
1895
|
|
|
1842
1896
|
.mat-list-option:hover, .mat-list-option:focus,
|
|
@@ -1862,13 +1916,14 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
|
|
|
1862
1916
|
background: transparent;
|
|
1863
1917
|
color: rgba(0, 0, 0, 0.87);
|
|
1864
1918
|
}
|
|
1865
|
-
.mat-menu-item[disabled],
|
|
1919
|
+
.mat-menu-item[disabled],
|
|
1920
|
+
.mat-menu-item[disabled] .mat-menu-submenu-icon,
|
|
1866
1921
|
.mat-menu-item[disabled] .mat-icon-no-color {
|
|
1867
1922
|
color: rgba(0, 0, 0, 0.38);
|
|
1868
1923
|
}
|
|
1869
1924
|
|
|
1870
1925
|
.mat-menu-item .mat-icon-no-color,
|
|
1871
|
-
.mat-menu-
|
|
1926
|
+
.mat-menu-submenu-icon {
|
|
1872
1927
|
color: rgba(0, 0, 0, 0.54);
|
|
1873
1928
|
}
|
|
1874
1929
|
|
|
@@ -1911,11 +1966,11 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
|
|
|
1911
1966
|
}
|
|
1912
1967
|
|
|
1913
1968
|
.mat-progress-bar-background {
|
|
1914
|
-
fill: #
|
|
1969
|
+
fill: #c2d6fa;
|
|
1915
1970
|
}
|
|
1916
1971
|
|
|
1917
1972
|
.mat-progress-bar-buffer {
|
|
1918
|
-
background-color: #
|
|
1973
|
+
background-color: #c2d6fa;
|
|
1919
1974
|
}
|
|
1920
1975
|
|
|
1921
1976
|
.mat-progress-bar-fill::after {
|
|
@@ -1923,20 +1978,20 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
|
|
|
1923
1978
|
}
|
|
1924
1979
|
|
|
1925
1980
|
.mat-progress-bar.mat-accent .mat-progress-bar-background {
|
|
1926
|
-
fill: #
|
|
1981
|
+
fill: #d2ead6;
|
|
1927
1982
|
}
|
|
1928
1983
|
.mat-progress-bar.mat-accent .mat-progress-bar-buffer {
|
|
1929
|
-
background-color: #
|
|
1984
|
+
background-color: #d2ead6;
|
|
1930
1985
|
}
|
|
1931
1986
|
.mat-progress-bar.mat-accent .mat-progress-bar-fill::after {
|
|
1932
1987
|
background-color: #59b96b;
|
|
1933
1988
|
}
|
|
1934
1989
|
|
|
1935
1990
|
.mat-progress-bar.mat-warn .mat-progress-bar-background {
|
|
1936
|
-
fill: #
|
|
1991
|
+
fill: #f2d0ce;
|
|
1937
1992
|
}
|
|
1938
1993
|
.mat-progress-bar.mat-warn .mat-progress-bar-buffer {
|
|
1939
|
-
background-color: #
|
|
1994
|
+
background-color: #f2d0ce;
|
|
1940
1995
|
}
|
|
1941
1996
|
.mat-progress-bar.mat-warn .mat-progress-bar-fill::after {
|
|
1942
1997
|
background-color: #d9534b;
|
|
@@ -2115,75 +2170,73 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
|
|
|
2115
2170
|
background-color: rgba(0, 0, 0, 0.26);
|
|
2116
2171
|
}
|
|
2117
2172
|
|
|
2118
|
-
.mat-primary .mat-slider-track-fill,
|
|
2119
|
-
.mat-primary .mat-slider-thumb,
|
|
2120
|
-
.mat-primary .mat-slider-thumb-label {
|
|
2173
|
+
.mat-slider.mat-primary .mat-slider-track-fill,
|
|
2174
|
+
.mat-slider.mat-primary .mat-slider-thumb,
|
|
2175
|
+
.mat-slider.mat-primary .mat-slider-thumb-label {
|
|
2121
2176
|
background-color: #1b68fa;
|
|
2122
2177
|
}
|
|
2123
|
-
.mat-primary .mat-slider-thumb-label-text {
|
|
2178
|
+
.mat-slider.mat-primary .mat-slider-thumb-label-text {
|
|
2124
2179
|
color: white;
|
|
2125
2180
|
}
|
|
2126
|
-
.mat-primary .mat-slider-focus-ring {
|
|
2181
|
+
.mat-slider.mat-primary .mat-slider-focus-ring {
|
|
2127
2182
|
background-color: rgba(27, 104, 250, 0.2);
|
|
2128
2183
|
}
|
|
2129
|
-
|
|
2130
|
-
.mat-accent .mat-slider-
|
|
2131
|
-
.mat-accent .mat-slider-thumb
|
|
2132
|
-
.mat-accent .mat-slider-thumb-label {
|
|
2184
|
+
.mat-slider.mat-accent .mat-slider-track-fill,
|
|
2185
|
+
.mat-slider.mat-accent .mat-slider-thumb,
|
|
2186
|
+
.mat-slider.mat-accent .mat-slider-thumb-label {
|
|
2133
2187
|
background-color: #59b96b;
|
|
2134
2188
|
}
|
|
2135
|
-
.mat-accent .mat-slider-thumb-label-text {
|
|
2189
|
+
.mat-slider.mat-accent .mat-slider-thumb-label-text {
|
|
2136
2190
|
color: white;
|
|
2137
2191
|
}
|
|
2138
|
-
.mat-accent .mat-slider-focus-ring {
|
|
2192
|
+
.mat-slider.mat-accent .mat-slider-focus-ring {
|
|
2139
2193
|
background-color: rgba(89, 185, 107, 0.2);
|
|
2140
2194
|
}
|
|
2141
|
-
|
|
2142
|
-
.mat-warn .mat-slider-
|
|
2143
|
-
.mat-warn .mat-slider-thumb
|
|
2144
|
-
.mat-warn .mat-slider-thumb-label {
|
|
2195
|
+
.mat-slider.mat-warn .mat-slider-track-fill,
|
|
2196
|
+
.mat-slider.mat-warn .mat-slider-thumb,
|
|
2197
|
+
.mat-slider.mat-warn .mat-slider-thumb-label {
|
|
2145
2198
|
background-color: #d9534b;
|
|
2146
2199
|
}
|
|
2147
|
-
.mat-warn .mat-slider-thumb-label-text {
|
|
2200
|
+
.mat-slider.mat-warn .mat-slider-thumb-label-text {
|
|
2148
2201
|
color: white;
|
|
2149
2202
|
}
|
|
2150
|
-
.mat-warn .mat-slider-focus-ring {
|
|
2203
|
+
.mat-slider.mat-warn .mat-slider-focus-ring {
|
|
2151
2204
|
background-color: rgba(217, 83, 75, 0.2);
|
|
2152
2205
|
}
|
|
2153
2206
|
|
|
2154
2207
|
.mat-slider:hover .mat-slider-track-background,
|
|
2155
|
-
.cdk-focused .mat-slider-track-background {
|
|
2208
|
+
.mat-slider.cdk-focused .mat-slider-track-background {
|
|
2156
2209
|
background-color: rgba(0, 0, 0, 0.38);
|
|
2157
2210
|
}
|
|
2158
2211
|
|
|
2159
|
-
.mat-slider-disabled .mat-slider-track-background,
|
|
2160
|
-
.mat-slider-disabled .mat-slider-track-fill,
|
|
2161
|
-
.mat-slider-disabled .mat-slider-thumb {
|
|
2212
|
+
.mat-slider.mat-slider-disabled .mat-slider-track-background,
|
|
2213
|
+
.mat-slider.mat-slider-disabled .mat-slider-track-fill,
|
|
2214
|
+
.mat-slider.mat-slider-disabled .mat-slider-thumb {
|
|
2162
2215
|
background-color: rgba(0, 0, 0, 0.26);
|
|
2163
2216
|
}
|
|
2164
|
-
.mat-slider-disabled:hover .mat-slider-track-background {
|
|
2217
|
+
.mat-slider.mat-slider-disabled:hover .mat-slider-track-background {
|
|
2165
2218
|
background-color: rgba(0, 0, 0, 0.26);
|
|
2166
2219
|
}
|
|
2167
2220
|
|
|
2168
|
-
.mat-slider-min-value .mat-slider-focus-ring {
|
|
2221
|
+
.mat-slider.mat-slider-min-value .mat-slider-focus-ring {
|
|
2169
2222
|
background-color: rgba(0, 0, 0, 0.12);
|
|
2170
2223
|
}
|
|
2171
|
-
.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,
|
|
2172
|
-
.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {
|
|
2224
|
+
.mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,
|
|
2225
|
+
.mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {
|
|
2173
2226
|
background-color: rgba(0, 0, 0, 0.87);
|
|
2174
2227
|
}
|
|
2175
|
-
.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,
|
|
2176
|
-
.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {
|
|
2228
|
+
.mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,
|
|
2229
|
+
.mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {
|
|
2177
2230
|
background-color: rgba(0, 0, 0, 0.26);
|
|
2178
2231
|
}
|
|
2179
|
-
.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {
|
|
2232
|
+
.mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {
|
|
2180
2233
|
border-color: rgba(0, 0, 0, 0.26);
|
|
2181
2234
|
background-color: transparent;
|
|
2182
2235
|
}
|
|
2183
|
-
.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb, .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb {
|
|
2236
|
+
.mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb, .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb {
|
|
2184
2237
|
border-color: rgba(0, 0, 0, 0.38);
|
|
2185
2238
|
}
|
|
2186
|
-
.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb, .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb {
|
|
2239
|
+
.mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb, .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb {
|
|
2187
2240
|
border-color: rgba(0, 0, 0, 0.26);
|
|
2188
2241
|
}
|
|
2189
2242
|
|
|
@@ -2200,9 +2253,12 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
|
|
|
2200
2253
|
background-image: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
|
|
2201
2254
|
}
|
|
2202
2255
|
|
|
2203
|
-
.mat-step-header.cdk-keyboard-focused, .mat-step-header.cdk-program-focused, .mat-step-header:hover {
|
|
2256
|
+
.mat-step-header.cdk-keyboard-focused, .mat-step-header.cdk-program-focused, .mat-step-header:hover:not([aria-disabled]), .mat-step-header:hover[aria-disabled=false] {
|
|
2204
2257
|
background-color: rgba(0, 0, 0, 0.04);
|
|
2205
2258
|
}
|
|
2259
|
+
.mat-step-header:hover[aria-disabled=true] {
|
|
2260
|
+
cursor: default;
|
|
2261
|
+
}
|
|
2206
2262
|
@media (hover: none) {
|
|
2207
2263
|
.mat-step-header:hover {
|
|
2208
2264
|
background: none;
|
|
@@ -2317,7 +2373,7 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
|
|
|
2317
2373
|
border-color: rgba(0, 0, 0, 0.38);
|
|
2318
2374
|
}
|
|
2319
2375
|
|
|
2320
|
-
.mat-tab-group[class*=mat-background-] .mat-tab-header,
|
|
2376
|
+
.mat-tab-group[class*=mat-background-] > .mat-tab-header,
|
|
2321
2377
|
.mat-tab-nav-bar[class*=mat-background-] {
|
|
2322
2378
|
border-bottom: none;
|
|
2323
2379
|
border-top: none;
|
|
@@ -2378,20 +2434,28 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
|
|
|
2378
2434
|
.mat-tab-group.mat-background-primary > .mat-tab-header .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-primary > .mat-tab-link-container .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-primary > .mat-tab-header .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-primary > .mat-tab-link-container .mat-tab-link.mat-tab-disabled {
|
|
2379
2435
|
color: rgba(255, 255, 255, 0.4);
|
|
2380
2436
|
}
|
|
2437
|
+
.mat-tab-group.mat-background-primary > .mat-tab-header .mat-tab-header-pagination-chevron,
|
|
2381
2438
|
.mat-tab-group.mat-background-primary > .mat-tab-header-pagination .mat-tab-header-pagination-chevron,
|
|
2382
|
-
.mat-tab-group.mat-background-primary > .mat-tab-
|
|
2383
|
-
.mat-tab-group.mat-background-primary > .mat-tab-header .mat-focus-indicator::before, .mat-tab-nav-bar.mat-background-primary > .mat-tab-header
|
|
2384
|
-
.mat-tab-nav-bar.mat-background-primary > .mat-tab-
|
|
2439
|
+
.mat-tab-group.mat-background-primary > .mat-tab-link-container .mat-focus-indicator::before,
|
|
2440
|
+
.mat-tab-group.mat-background-primary > .mat-tab-header .mat-focus-indicator::before, .mat-tab-nav-bar.mat-background-primary > .mat-tab-header .mat-tab-header-pagination-chevron,
|
|
2441
|
+
.mat-tab-nav-bar.mat-background-primary > .mat-tab-header-pagination .mat-tab-header-pagination-chevron,
|
|
2442
|
+
.mat-tab-nav-bar.mat-background-primary > .mat-tab-link-container .mat-focus-indicator::before,
|
|
2385
2443
|
.mat-tab-nav-bar.mat-background-primary > .mat-tab-header .mat-focus-indicator::before {
|
|
2386
2444
|
border-color: white;
|
|
2387
2445
|
}
|
|
2388
|
-
.mat-tab-group.mat-background-primary > .mat-tab-header
|
|
2389
|
-
|
|
2446
|
+
.mat-tab-group.mat-background-primary > .mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,
|
|
2447
|
+
.mat-tab-group.mat-background-primary > .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-primary > .mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,
|
|
2448
|
+
.mat-tab-nav-bar.mat-background-primary > .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
|
|
2449
|
+
border-color: white;
|
|
2450
|
+
opacity: 0.4;
|
|
2390
2451
|
}
|
|
2391
2452
|
.mat-tab-group.mat-background-primary > .mat-tab-header .mat-ripple-element,
|
|
2392
|
-
.mat-tab-group.mat-background-primary > .mat-tab-link-container .mat-ripple-element,
|
|
2393
|
-
.mat-tab-nav-bar.mat-background-primary > .mat-tab-
|
|
2394
|
-
|
|
2453
|
+
.mat-tab-group.mat-background-primary > .mat-tab-link-container .mat-ripple-element,
|
|
2454
|
+
.mat-tab-group.mat-background-primary > .mat-tab-header-pagination .mat-ripple-element, .mat-tab-nav-bar.mat-background-primary > .mat-tab-header .mat-ripple-element,
|
|
2455
|
+
.mat-tab-nav-bar.mat-background-primary > .mat-tab-link-container .mat-ripple-element,
|
|
2456
|
+
.mat-tab-nav-bar.mat-background-primary > .mat-tab-header-pagination .mat-ripple-element {
|
|
2457
|
+
background-color: white;
|
|
2458
|
+
opacity: 0.12;
|
|
2395
2459
|
}
|
|
2396
2460
|
.mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
|
|
2397
2461
|
.mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
|
|
@@ -2409,20 +2473,28 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
|
|
|
2409
2473
|
.mat-tab-group.mat-background-accent > .mat-tab-header .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-accent > .mat-tab-link-container .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-accent > .mat-tab-header .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-accent > .mat-tab-link-container .mat-tab-link.mat-tab-disabled {
|
|
2410
2474
|
color: rgba(255, 255, 255, 0.4);
|
|
2411
2475
|
}
|
|
2476
|
+
.mat-tab-group.mat-background-accent > .mat-tab-header .mat-tab-header-pagination-chevron,
|
|
2412
2477
|
.mat-tab-group.mat-background-accent > .mat-tab-header-pagination .mat-tab-header-pagination-chevron,
|
|
2413
|
-
.mat-tab-group.mat-background-accent > .mat-tab-
|
|
2414
|
-
.mat-tab-group.mat-background-accent > .mat-tab-header .mat-focus-indicator::before, .mat-tab-nav-bar.mat-background-accent > .mat-tab-header
|
|
2415
|
-
.mat-tab-nav-bar.mat-background-accent > .mat-tab-
|
|
2478
|
+
.mat-tab-group.mat-background-accent > .mat-tab-link-container .mat-focus-indicator::before,
|
|
2479
|
+
.mat-tab-group.mat-background-accent > .mat-tab-header .mat-focus-indicator::before, .mat-tab-nav-bar.mat-background-accent > .mat-tab-header .mat-tab-header-pagination-chevron,
|
|
2480
|
+
.mat-tab-nav-bar.mat-background-accent > .mat-tab-header-pagination .mat-tab-header-pagination-chevron,
|
|
2481
|
+
.mat-tab-nav-bar.mat-background-accent > .mat-tab-link-container .mat-focus-indicator::before,
|
|
2416
2482
|
.mat-tab-nav-bar.mat-background-accent > .mat-tab-header .mat-focus-indicator::before {
|
|
2417
2483
|
border-color: white;
|
|
2418
2484
|
}
|
|
2419
|
-
.mat-tab-group.mat-background-accent > .mat-tab-header
|
|
2420
|
-
|
|
2485
|
+
.mat-tab-group.mat-background-accent > .mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,
|
|
2486
|
+
.mat-tab-group.mat-background-accent > .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-accent > .mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,
|
|
2487
|
+
.mat-tab-nav-bar.mat-background-accent > .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
|
|
2488
|
+
border-color: white;
|
|
2489
|
+
opacity: 0.4;
|
|
2421
2490
|
}
|
|
2422
2491
|
.mat-tab-group.mat-background-accent > .mat-tab-header .mat-ripple-element,
|
|
2423
|
-
.mat-tab-group.mat-background-accent > .mat-tab-link-container .mat-ripple-element,
|
|
2424
|
-
.mat-tab-nav-bar.mat-background-accent > .mat-tab-
|
|
2425
|
-
|
|
2492
|
+
.mat-tab-group.mat-background-accent > .mat-tab-link-container .mat-ripple-element,
|
|
2493
|
+
.mat-tab-group.mat-background-accent > .mat-tab-header-pagination .mat-ripple-element, .mat-tab-nav-bar.mat-background-accent > .mat-tab-header .mat-ripple-element,
|
|
2494
|
+
.mat-tab-nav-bar.mat-background-accent > .mat-tab-link-container .mat-ripple-element,
|
|
2495
|
+
.mat-tab-nav-bar.mat-background-accent > .mat-tab-header-pagination .mat-ripple-element {
|
|
2496
|
+
background-color: white;
|
|
2497
|
+
opacity: 0.12;
|
|
2426
2498
|
}
|
|
2427
2499
|
.mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
|
|
2428
2500
|
.mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
|
|
@@ -2440,20 +2512,28 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
|
|
|
2440
2512
|
.mat-tab-group.mat-background-warn > .mat-tab-header .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-warn > .mat-tab-link-container .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-warn > .mat-tab-header .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-warn > .mat-tab-link-container .mat-tab-link.mat-tab-disabled {
|
|
2441
2513
|
color: rgba(255, 255, 255, 0.4);
|
|
2442
2514
|
}
|
|
2515
|
+
.mat-tab-group.mat-background-warn > .mat-tab-header .mat-tab-header-pagination-chevron,
|
|
2443
2516
|
.mat-tab-group.mat-background-warn > .mat-tab-header-pagination .mat-tab-header-pagination-chevron,
|
|
2444
|
-
.mat-tab-group.mat-background-warn > .mat-tab-
|
|
2445
|
-
.mat-tab-group.mat-background-warn > .mat-tab-header .mat-focus-indicator::before, .mat-tab-nav-bar.mat-background-warn > .mat-tab-header
|
|
2446
|
-
.mat-tab-nav-bar.mat-background-warn > .mat-tab-
|
|
2517
|
+
.mat-tab-group.mat-background-warn > .mat-tab-link-container .mat-focus-indicator::before,
|
|
2518
|
+
.mat-tab-group.mat-background-warn > .mat-tab-header .mat-focus-indicator::before, .mat-tab-nav-bar.mat-background-warn > .mat-tab-header .mat-tab-header-pagination-chevron,
|
|
2519
|
+
.mat-tab-nav-bar.mat-background-warn > .mat-tab-header-pagination .mat-tab-header-pagination-chevron,
|
|
2520
|
+
.mat-tab-nav-bar.mat-background-warn > .mat-tab-link-container .mat-focus-indicator::before,
|
|
2447
2521
|
.mat-tab-nav-bar.mat-background-warn > .mat-tab-header .mat-focus-indicator::before {
|
|
2448
2522
|
border-color: white;
|
|
2449
2523
|
}
|
|
2450
|
-
.mat-tab-group.mat-background-warn > .mat-tab-header
|
|
2451
|
-
|
|
2524
|
+
.mat-tab-group.mat-background-warn > .mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,
|
|
2525
|
+
.mat-tab-group.mat-background-warn > .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-warn > .mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,
|
|
2526
|
+
.mat-tab-nav-bar.mat-background-warn > .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
|
|
2527
|
+
border-color: white;
|
|
2528
|
+
opacity: 0.4;
|
|
2452
2529
|
}
|
|
2453
2530
|
.mat-tab-group.mat-background-warn > .mat-tab-header .mat-ripple-element,
|
|
2454
|
-
.mat-tab-group.mat-background-warn > .mat-tab-link-container .mat-ripple-element,
|
|
2455
|
-
.mat-tab-nav-bar.mat-background-warn > .mat-tab-
|
|
2456
|
-
|
|
2531
|
+
.mat-tab-group.mat-background-warn > .mat-tab-link-container .mat-ripple-element,
|
|
2532
|
+
.mat-tab-group.mat-background-warn > .mat-tab-header-pagination .mat-ripple-element, .mat-tab-nav-bar.mat-background-warn > .mat-tab-header .mat-ripple-element,
|
|
2533
|
+
.mat-tab-nav-bar.mat-background-warn > .mat-tab-link-container .mat-ripple-element,
|
|
2534
|
+
.mat-tab-nav-bar.mat-background-warn > .mat-tab-header-pagination .mat-ripple-element {
|
|
2535
|
+
background-color: white;
|
|
2536
|
+
opacity: 0.12;
|
|
2457
2537
|
}
|
|
2458
2538
|
|
|
2459
2539
|
.mat-toolbar {
|
|
@@ -2564,7 +2644,7 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
|
|
|
2564
2644
|
border-color: #b0b0b0;
|
|
2565
2645
|
}
|
|
2566
2646
|
.mat-checkbox-disabled .mat-checkbox-label {
|
|
2567
|
-
color: rgba(0, 0, 0, 0.
|
|
2647
|
+
color: rgba(0, 0, 0, 0.38);
|
|
2568
2648
|
}
|
|
2569
2649
|
|
|
2570
2650
|
.mat-checkbox .mat-ripple-element {
|
|
@@ -2701,75 +2781,73 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
|
|
|
2701
2781
|
background-color: rgba(0, 0, 0, 0.26);
|
|
2702
2782
|
}
|
|
2703
2783
|
|
|
2704
|
-
.mat-primary .mat-slider-track-fill,
|
|
2705
|
-
.mat-primary .mat-slider-thumb,
|
|
2706
|
-
.mat-primary .mat-slider-thumb-label {
|
|
2784
|
+
.mat-slider.mat-primary .mat-slider-track-fill,
|
|
2785
|
+
.mat-slider.mat-primary .mat-slider-thumb,
|
|
2786
|
+
.mat-slider.mat-primary .mat-slider-thumb-label {
|
|
2707
2787
|
background-color: #1b68fa;
|
|
2708
2788
|
}
|
|
2709
|
-
.mat-primary .mat-slider-thumb-label-text {
|
|
2789
|
+
.mat-slider.mat-primary .mat-slider-thumb-label-text {
|
|
2710
2790
|
color: white;
|
|
2711
2791
|
}
|
|
2712
|
-
.mat-primary .mat-slider-focus-ring {
|
|
2792
|
+
.mat-slider.mat-primary .mat-slider-focus-ring {
|
|
2713
2793
|
background-color: rgba(27, 104, 250, 0.2);
|
|
2714
2794
|
}
|
|
2715
|
-
|
|
2716
|
-
.mat-accent .mat-slider-
|
|
2717
|
-
.mat-accent .mat-slider-thumb
|
|
2718
|
-
.mat-accent .mat-slider-thumb-label {
|
|
2795
|
+
.mat-slider.mat-accent .mat-slider-track-fill,
|
|
2796
|
+
.mat-slider.mat-accent .mat-slider-thumb,
|
|
2797
|
+
.mat-slider.mat-accent .mat-slider-thumb-label {
|
|
2719
2798
|
background-color: #1b68fa;
|
|
2720
2799
|
}
|
|
2721
|
-
.mat-accent .mat-slider-thumb-label-text {
|
|
2800
|
+
.mat-slider.mat-accent .mat-slider-thumb-label-text {
|
|
2722
2801
|
color: white;
|
|
2723
2802
|
}
|
|
2724
|
-
.mat-accent .mat-slider-focus-ring {
|
|
2803
|
+
.mat-slider.mat-accent .mat-slider-focus-ring {
|
|
2725
2804
|
background-color: rgba(27, 104, 250, 0.2);
|
|
2726
2805
|
}
|
|
2727
|
-
|
|
2728
|
-
.mat-warn .mat-slider-
|
|
2729
|
-
.mat-warn .mat-slider-thumb
|
|
2730
|
-
.mat-warn .mat-slider-thumb-label {
|
|
2806
|
+
.mat-slider.mat-warn .mat-slider-track-fill,
|
|
2807
|
+
.mat-slider.mat-warn .mat-slider-thumb,
|
|
2808
|
+
.mat-slider.mat-warn .mat-slider-thumb-label {
|
|
2731
2809
|
background-color: #d9534b;
|
|
2732
2810
|
}
|
|
2733
|
-
.mat-warn .mat-slider-thumb-label-text {
|
|
2811
|
+
.mat-slider.mat-warn .mat-slider-thumb-label-text {
|
|
2734
2812
|
color: white;
|
|
2735
2813
|
}
|
|
2736
|
-
.mat-warn .mat-slider-focus-ring {
|
|
2814
|
+
.mat-slider.mat-warn .mat-slider-focus-ring {
|
|
2737
2815
|
background-color: rgba(217, 83, 75, 0.2);
|
|
2738
2816
|
}
|
|
2739
2817
|
|
|
2740
2818
|
.mat-slider:hover .mat-slider-track-background,
|
|
2741
|
-
.cdk-focused .mat-slider-track-background {
|
|
2819
|
+
.mat-slider.cdk-focused .mat-slider-track-background {
|
|
2742
2820
|
background-color: rgba(0, 0, 0, 0.38);
|
|
2743
2821
|
}
|
|
2744
2822
|
|
|
2745
|
-
.mat-slider-disabled .mat-slider-track-background,
|
|
2746
|
-
.mat-slider-disabled .mat-slider-track-fill,
|
|
2747
|
-
.mat-slider-disabled .mat-slider-thumb {
|
|
2823
|
+
.mat-slider.mat-slider-disabled .mat-slider-track-background,
|
|
2824
|
+
.mat-slider.mat-slider-disabled .mat-slider-track-fill,
|
|
2825
|
+
.mat-slider.mat-slider-disabled .mat-slider-thumb {
|
|
2748
2826
|
background-color: rgba(0, 0, 0, 0.26);
|
|
2749
2827
|
}
|
|
2750
|
-
.mat-slider-disabled:hover .mat-slider-track-background {
|
|
2828
|
+
.mat-slider.mat-slider-disabled:hover .mat-slider-track-background {
|
|
2751
2829
|
background-color: rgba(0, 0, 0, 0.26);
|
|
2752
2830
|
}
|
|
2753
2831
|
|
|
2754
|
-
.mat-slider-min-value .mat-slider-focus-ring {
|
|
2832
|
+
.mat-slider.mat-slider-min-value .mat-slider-focus-ring {
|
|
2755
2833
|
background-color: rgba(0, 0, 0, 0.12);
|
|
2756
2834
|
}
|
|
2757
|
-
.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,
|
|
2758
|
-
.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {
|
|
2835
|
+
.mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,
|
|
2836
|
+
.mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {
|
|
2759
2837
|
background-color: rgba(0, 0, 0, 0.87);
|
|
2760
2838
|
}
|
|
2761
|
-
.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,
|
|
2762
|
-
.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {
|
|
2839
|
+
.mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,
|
|
2840
|
+
.mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {
|
|
2763
2841
|
background-color: rgba(0, 0, 0, 0.26);
|
|
2764
2842
|
}
|
|
2765
|
-
.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {
|
|
2843
|
+
.mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {
|
|
2766
2844
|
border-color: rgba(0, 0, 0, 0.26);
|
|
2767
2845
|
background-color: transparent;
|
|
2768
2846
|
}
|
|
2769
|
-
.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb, .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb {
|
|
2847
|
+
.mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb, .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb {
|
|
2770
2848
|
border-color: rgba(0, 0, 0, 0.38);
|
|
2771
2849
|
}
|
|
2772
|
-
.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb, .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb {
|
|
2850
|
+
.mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb, .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb {
|
|
2773
2851
|
border-color: rgba(0, 0, 0, 0.26);
|
|
2774
2852
|
}
|
|
2775
2853
|
|
|
@@ -2786,11 +2864,6 @@ th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
|
|
|
2786
2864
|
background-image: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
|
|
2787
2865
|
}
|
|
2788
2866
|
|
|
2789
|
-
/* Colors for the ripple elements.*/
|
|
2790
|
-
/* stylelint-disable-next-line material/theme-mixin-api */
|
|
2791
|
-
/* stylelint-disable-next-line material/theme-mixin-api */
|
|
2792
|
-
/* stylelint-disable material/no-prefixes */
|
|
2793
|
-
/* stylelint-enable */
|
|
2794
2867
|
.white {
|
|
2795
2868
|
color: #ffffff !important;
|
|
2796
2869
|
}
|
|
@@ -3630,11 +3703,6 @@ html, body {
|
|
|
3630
3703
|
height: 100%;
|
|
3631
3704
|
}
|
|
3632
3705
|
|
|
3633
|
-
/* Colors for the ripple elements.*/
|
|
3634
|
-
/* stylelint-disable-next-line material/theme-mixin-api */
|
|
3635
|
-
/* stylelint-disable-next-line material/theme-mixin-api */
|
|
3636
|
-
/* stylelint-disable material/no-prefixes */
|
|
3637
|
-
/* stylelint-enable */
|
|
3638
3706
|
.white {
|
|
3639
3707
|
color: #ffffff !important;
|
|
3640
3708
|
}
|
|
@@ -4469,7 +4537,7 @@ html, body {
|
|
|
4469
4537
|
}
|
|
4470
4538
|
|
|
4471
4539
|
.mat-dialog-title {
|
|
4472
|
-
font-weight:
|
|
4540
|
+
font-weight: 500 !important;
|
|
4473
4541
|
}
|
|
4474
4542
|
|
|
4475
4543
|
.mat-dialog-close-button, [mat-dialog-close][mat-icon-button] {
|
|
@@ -4478,6 +4546,10 @@ html, body {
|
|
|
4478
4546
|
right: -4px;
|
|
4479
4547
|
top: -4px;
|
|
4480
4548
|
}
|
|
4549
|
+
.mat-dialog-close-button.no-title, .no-title[mat-dialog-close][mat-icon-button] {
|
|
4550
|
+
right: -10px;
|
|
4551
|
+
top: -10px;
|
|
4552
|
+
}
|
|
4481
4553
|
|
|
4482
4554
|
mat-dialog-content.fill, [mat-dialog-content].fill {
|
|
4483
4555
|
width: calc(100% + 48px) !important;
|