@dangl/angular-material-shared 2.4.0-beta0015 → 2.4.0-beta0021
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/package.json +1 -1
- package/styles/material-style.scss +15 -8
package/package.json
CHANGED
|
@@ -1,15 +1,22 @@
|
|
|
1
1
|
// Import theming functions
|
|
2
|
-
@import
|
|
2
|
+
@import "@angular/material/theming";
|
|
3
3
|
// Import your custom theme
|
|
4
|
-
@import
|
|
4
|
+
@import "./material-theme.scss";
|
|
5
5
|
|
|
6
|
-
@import
|
|
6
|
+
@import "./material-variables.scss";
|
|
7
7
|
|
|
8
|
-
@import
|
|
9
|
-
@import
|
|
10
|
-
@import
|
|
11
|
-
@import
|
|
12
|
-
@import
|
|
8
|
+
@import "./partials/logo.scss";
|
|
9
|
+
@import "./partials/mat-toolbar.scss";
|
|
10
|
+
@import "./partials/side-navbar.scss";
|
|
11
|
+
@import "./partials/footer.scss";
|
|
12
|
+
@import "./partials/highlights.scss";
|
|
13
|
+
|
|
14
|
+
// This is required, since there's a bug in Angular Material
|
|
15
|
+
// that prevents the foreground color from being correctly
|
|
16
|
+
// detected as white instead of black for some colors, e.g.
|
|
17
|
+
// Cyan 600
|
|
18
|
+
// See here for more information:
|
|
19
|
+
// https://github.com/angular/components/issues/26056
|
|
13
20
|
.mat-primary .mdc-button__label {
|
|
14
21
|
color: #fff;
|
|
15
22
|
}
|