@appartmint/mint 4.2.22 → 4.2.24
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/dist/css/mint.css +14 -17
- package/dist/css/mint.css.map +1 -1
- package/dist/css/mint.min.css +1 -1
- package/dist/css/mint.min.css.map +1 -1
- package/package.json +1 -1
- package/src/scss/imports/components/section/_grid.scss +1 -1
- package/src/scss/imports/global/_angular.scss +17 -0
- package/src/scss/imports/overrides/_index.scss +0 -1
- package/src/scss/imports/overrides/_material.scss +0 -30
package/package.json
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
@use '../util' as *;
|
|
3
3
|
|
|
4
4
|
/// Angular styles
|
|
5
|
+
:root:root {
|
|
6
|
+
@include css-var(--mat-table-background-color, $mat-table-bg);
|
|
7
|
+
@include css-var(--mat-paginator-container-background-color, $mat-table-bg);
|
|
8
|
+
@include css-var(--mat-table-row-item-label-text-color, $mat-table-fore);
|
|
9
|
+
@include css-var(--mat-table-header-headline-color, $mat-table-fore);
|
|
10
|
+
@include css-var(--mat-table-header-subheadline-color, $mat-table-fore);
|
|
11
|
+
@include css-var(--mat-paginator-container-text-color, $mat-table-fore);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.cdk {
|
|
15
|
+
&-overlay-container {
|
|
16
|
+
.mat-mdc-select-panel {
|
|
17
|
+
background: css-var($mat-select-bg);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
5
22
|
body {
|
|
6
23
|
&#{class(ready)} {
|
|
7
24
|
app-root {
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
/// _material.scss - Material styles
|
|
2
|
-
/// @author App Art Mint LLC
|
|
3
|
-
///
|
|
4
|
-
/// @group Overrides
|
|
5
|
-
@charset 'utf-8';
|
|
6
|
-
|
|
7
|
-
/// Imports
|
|
8
|
-
@use '../util' as *;
|
|
9
|
-
|
|
10
|
-
/// Material Styles
|
|
11
|
-
:root:root {
|
|
12
|
-
@include css-var(--mat-table-background-color, $mat-table-bg);
|
|
13
|
-
@include css-var(--mat-paginator-container-background-color, $mat-table-bg);
|
|
14
|
-
@include css-var(--mat-table-row-item-label-text-color, $mat-table-fore);
|
|
15
|
-
@include css-var(--mat-table-header-headline-color, $mat-table-fore);
|
|
16
|
-
@include css-var(--mat-table-header-subheadline-color, $mat-table-fore);
|
|
17
|
-
@include css-var(--mat-paginator-container-text-color, $mat-table-fore);
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.cdk {
|
|
21
|
-
&-overlay-container {
|
|
22
|
-
.mat-mdc-select-panel {
|
|
23
|
-
background: css-var($mat-select-bg);
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
&-overlay-pane {
|
|
28
|
-
pointer-events: none !important;
|
|
29
|
-
}
|
|
30
|
-
}
|