new-front-common-library 16.1.2 → 16.1.3-REF-1
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/assets/css/{new-themes/_dark-theme-16.scss → _dark-theme.scss} +1 -1
- package/assets/css/{new-themes/_global-16.scss → _global.scss} +3 -3
- package/assets/css/{new-themes/_light-theme-16.scss → _light-theme.scss} +1 -1
- package/assets/css/{new-themes/_themes-16.scss → _themes.scss} +5 -5
- package/assets/css/{new-themes/material-16 → material}/_mdc-dark-theme.scss +7 -2
- package/assets/css/{new-themes/material-16 → material}/_mdc-light-theme.scss +6 -1
- package/package.json +1 -1
- /package/assets/css/{new-themes/material-16 → material}/_mdc.scss +0 -0
- /package/assets/css/old-themes/{_themes.scss → _themes-deprecated.scss} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@use '
|
|
1
|
+
@use '../../../../node_modules/@angular/material/index' as mat;
|
|
2
2
|
|
|
3
3
|
@include mat.core();
|
|
4
4
|
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
@import url('https://fonts.googleapis.com/css?family=Roboto');
|
|
9
9
|
|
|
10
10
|
//Imports
|
|
11
|
-
@import "
|
|
12
|
-
@import '
|
|
11
|
+
@import "mat-palettes";
|
|
12
|
+
@import '../../../../node_modules/@angular/material/theming';
|
|
13
13
|
|
|
14
14
|
// Define a light theme
|
|
15
15
|
$mat-theme-ignore-duplication-warnings: true;
|
|
@@ -51,6 +51,6 @@ $dark-theme: mat.define-dark-theme((
|
|
|
51
51
|
@include mat.private-form-field-density(-2);
|
|
52
52
|
}
|
|
53
53
|
|
|
54
|
-
@import "material
|
|
55
|
-
@import "global
|
|
54
|
+
@import "material/mdc";
|
|
55
|
+
@import "global";
|
|
56
56
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
@import "
|
|
1
|
+
@import "../mat-palettes";
|
|
2
2
|
|
|
3
3
|
.dark-theme {
|
|
4
4
|
|
|
5
5
|
// MAT SELECT
|
|
6
6
|
.mat-mdc-select {
|
|
7
|
-
color: $gray-
|
|
7
|
+
color: $gray-light;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
.mat-mdc-select-panel {
|
|
@@ -205,6 +205,11 @@
|
|
|
205
205
|
}
|
|
206
206
|
//END RADIO BUTTON
|
|
207
207
|
|
|
208
|
+
//TEXTAREA
|
|
209
|
+
--mdc-filled-text-field-input-text-color: #{$gray-light};
|
|
210
|
+
//END TEXTAREA
|
|
211
|
+
|
|
212
|
+
|
|
208
213
|
|
|
209
214
|
//.mat-mdc-card {
|
|
210
215
|
// padding: 5px !important;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@import "
|
|
1
|
+
@import "../mat-palettes";
|
|
2
2
|
|
|
3
3
|
.light-theme {
|
|
4
4
|
// MAT SELECT
|
|
@@ -208,6 +208,11 @@
|
|
|
208
208
|
//END RADIO BUTTON
|
|
209
209
|
|
|
210
210
|
|
|
211
|
+
//TEXTAREA
|
|
212
|
+
--mdc-filled-text-field-input-text-color: #{$black-bluish};
|
|
213
|
+
//END TEXTAREA
|
|
214
|
+
|
|
215
|
+
|
|
211
216
|
|
|
212
217
|
//.mat-mdc-card {
|
|
213
218
|
// padding: 5px !important;
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|