new-front-common-library 16.1.3 → 16.1.4-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.
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
@use '@angular/material' as mat;
|
|
2
|
+
|
|
3
|
+
@include mat.core();
|
|
4
|
+
|
|
5
|
+
//Fonts
|
|
6
|
+
@import url('https://fonts.googleapis.com/css?family=Poppins');
|
|
7
|
+
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro');
|
|
8
|
+
@import url('https://fonts.googleapis.com/css?family=Roboto');
|
|
9
|
+
|
|
10
|
+
//Imports
|
|
11
|
+
@import "mat-palettes";
|
|
12
|
+
|
|
13
|
+
// Define a light theme
|
|
14
|
+
$mat-theme-ignore-duplication-warnings: true;
|
|
15
|
+
$light-primary: mat.m2-define-palette($light-unity-palette);
|
|
16
|
+
$light-accent: mat.m2-define-palette($light-unity-palette);
|
|
17
|
+
$light-typography: mat.m2-define-typography-config(
|
|
18
|
+
$font-family: '"Roboto","Source Sans Pro",Poppins',
|
|
19
|
+
$button: mat.m2-define-typography-level(14px, 14px, 500, $letter-spacing: 0.25px)
|
|
20
|
+
);
|
|
21
|
+
$light-theme: mat.m2-define-light-theme((
|
|
22
|
+
color: (
|
|
23
|
+
primary: $light-primary,
|
|
24
|
+
accent: $light-accent,
|
|
25
|
+
),
|
|
26
|
+
typography: $light-typography
|
|
27
|
+
));
|
|
28
|
+
|
|
29
|
+
// Define a dark theme
|
|
30
|
+
$dark-primary: mat.m2-define-palette($dark-unity-palette);
|
|
31
|
+
$dark-accent: mat.m2-define-palette($dark-unity-palette);
|
|
32
|
+
$dark-theme: mat.m2-define-dark-theme((
|
|
33
|
+
color: (
|
|
34
|
+
primary: $dark-primary,
|
|
35
|
+
accent: $dark-accent
|
|
36
|
+
),
|
|
37
|
+
));
|
|
38
|
+
|
|
39
|
+
.dark-theme {
|
|
40
|
+
@include mat.all-component-themes($dark-theme);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.light-theme {
|
|
44
|
+
@include mat.all-component-themes($light-theme);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
@include mat.all-component-themes($light-theme);
|
|
48
|
+
|
|
49
|
+
.the-dense-zone {
|
|
50
|
+
@include mat.form-field-density(-2);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
@import "material/mdc";
|
|
54
|
+
@import "global";
|
|
55
|
+
|
|
@@ -4,7 +4,7 @@
|
|
|
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;
|