new-front-common-library 16.1.0-REF-2 → 16.1.0-REF-4
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/_global-16.scss +8 -3
- package/assets/css/new-themes/_themes-16.scss +1 -1
- package/assets/css/new-themes/material-16/_mdc-dark-theme.scss +5 -10
- package/assets/css/new-themes/material-16/_mdc-light-theme.scss +8 -9
- package/assets/css/new-themes/material-16/_mdc.scss +7 -6
- package/esm2022/lib/util/component/header/header.component.mjs +3 -3
- package/fesm2022/new-front-common-library.mjs +2 -2
- package/fesm2022/new-front-common-library.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -114,7 +114,6 @@ body, html {
|
|
|
114
114
|
}
|
|
115
115
|
|
|
116
116
|
.action-button {
|
|
117
|
-
font-weight: bold !important;
|
|
118
117
|
font-size: 14px;
|
|
119
118
|
line-height: 32px;
|
|
120
119
|
width: auto;
|
|
@@ -125,6 +124,7 @@ body, html {
|
|
|
125
124
|
}
|
|
126
125
|
|
|
127
126
|
.action-button, .save-button, .cancel-button, .btn {
|
|
127
|
+
font-weight: 500 !important;
|
|
128
128
|
box-shadow: 0 2px 2px rgba(68, 93, 123, 0.16), inset 0 3px 6px rgba(255, 255, 255, 0.08), inset 0px -3px 6px rgba(68, 93, 123, 0.08);
|
|
129
129
|
border-radius: 6px;
|
|
130
130
|
}
|
|
@@ -147,7 +147,6 @@ body, html {
|
|
|
147
147
|
|
|
148
148
|
.btn {
|
|
149
149
|
height: 24px !important;
|
|
150
|
-
font-weight: bold !important;
|
|
151
150
|
}
|
|
152
151
|
|
|
153
152
|
// END BUTTON
|
|
@@ -180,6 +179,11 @@ body, html {
|
|
|
180
179
|
display: flex;
|
|
181
180
|
flex-direction: column;
|
|
182
181
|
}
|
|
182
|
+
|
|
183
|
+
.mat-mdc-header-cell mat-label {
|
|
184
|
+
font-weight: 700;
|
|
185
|
+
letter-spacing: 0.375px;
|
|
186
|
+
}
|
|
183
187
|
// END FORM GROUP
|
|
184
188
|
|
|
185
189
|
// NG-SELECT
|
|
@@ -188,12 +192,13 @@ body, html {
|
|
|
188
192
|
}
|
|
189
193
|
|
|
190
194
|
.ng-select {
|
|
191
|
-
|
|
195
|
+
margin-bottom: 0.9em;
|
|
192
196
|
}
|
|
193
197
|
|
|
194
198
|
.mat-mdc-cell .ng-select {
|
|
195
199
|
padding-bottom: 2px;
|
|
196
200
|
padding-top: 2px;
|
|
201
|
+
margin-bottom: 0;
|
|
197
202
|
}
|
|
198
203
|
|
|
199
204
|
.ng-select .ng-select-container {
|
|
@@ -17,7 +17,7 @@ $light-primary: mat.define-palette($light-unity-palette);
|
|
|
17
17
|
$light-accent: mat.define-palette($light-unity-palette);
|
|
18
18
|
$light-typography: mat.define-typography-config(
|
|
19
19
|
$font-family: '"Roboto","Source Sans Pro",Poppins',
|
|
20
|
-
$button: mat.define-typography-level(14px, 14px, 500, $letter-spacing:
|
|
20
|
+
$button: mat.define-typography-level(14px, 14px, 500, $letter-spacing: 0.25px)
|
|
21
21
|
);
|
|
22
22
|
$light-theme: mat.define-light-theme((
|
|
23
23
|
color: (
|
|
@@ -53,6 +53,10 @@
|
|
|
53
53
|
color: $gray-background-lightest;
|
|
54
54
|
}
|
|
55
55
|
|
|
56
|
+
.mat-mdc-paginator-icon {
|
|
57
|
+
fill: $gray-background-lightest;
|
|
58
|
+
}
|
|
59
|
+
|
|
56
60
|
//END PAGINATOR
|
|
57
61
|
|
|
58
62
|
// FORM FIELD
|
|
@@ -79,7 +83,7 @@
|
|
|
79
83
|
}
|
|
80
84
|
|
|
81
85
|
.mat-mdc-header-cell mat-label {
|
|
82
|
-
color: $gray-
|
|
86
|
+
color: $gray-strong !important;
|
|
83
87
|
}
|
|
84
88
|
|
|
85
89
|
|
|
@@ -201,15 +205,6 @@
|
|
|
201
205
|
}
|
|
202
206
|
//END RADIO BUTTON
|
|
203
207
|
|
|
204
|
-
//BADGE
|
|
205
|
-
|
|
206
|
-
.mat-badge-content {
|
|
207
|
-
color: white;
|
|
208
|
-
background: $red-primary !important;
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
//END BADGE
|
|
212
|
-
|
|
213
208
|
|
|
214
209
|
//.mat-mdc-card {
|
|
215
210
|
// padding: 5px !important;
|
|
@@ -43,6 +43,10 @@
|
|
|
43
43
|
color: $black-bluish;
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
+
.mat-mdc-paginator-icon {
|
|
47
|
+
fill: $black-bluish;
|
|
48
|
+
}
|
|
49
|
+
|
|
46
50
|
// END PAGINATOR
|
|
47
51
|
|
|
48
52
|
// FORM FIELD
|
|
@@ -78,6 +82,10 @@
|
|
|
78
82
|
background: $gray-background-lightest;
|
|
79
83
|
}
|
|
80
84
|
|
|
85
|
+
.mat-mdc-header-cell mat-label {
|
|
86
|
+
color: $black-bluish !important;
|
|
87
|
+
}
|
|
88
|
+
|
|
81
89
|
.mat-sort-header-arrow {
|
|
82
90
|
color: $black-bluish;
|
|
83
91
|
}
|
|
@@ -199,15 +207,6 @@
|
|
|
199
207
|
}
|
|
200
208
|
//END RADIO BUTTON
|
|
201
209
|
|
|
202
|
-
//BADGE
|
|
203
|
-
|
|
204
|
-
.mat-badge-content {
|
|
205
|
-
color: white;
|
|
206
|
-
background: $red-primary !important;
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
//END BADGE
|
|
210
|
-
|
|
211
210
|
|
|
212
211
|
|
|
213
212
|
//.mat-mdc-card {
|
|
@@ -3,12 +3,6 @@
|
|
|
3
3
|
min-height: unset;
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
-
.mat-mdc-menu-panel .mat-mdc-menu-item .mat-icon {
|
|
7
|
-
font-size: 14px;
|
|
8
|
-
height: 14px;
|
|
9
|
-
width: 14px;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
6
|
.mat-mdc-menu-panel .mat-mdc-menu-item .mat-mdc-menu-item-text {
|
|
13
7
|
font-size: 14px;
|
|
14
8
|
}
|
|
@@ -17,6 +11,13 @@
|
|
|
17
11
|
max-width: 100%;
|
|
18
12
|
}
|
|
19
13
|
|
|
14
|
+
|
|
15
|
+
.action-menu.mat-mdc-menu-panel .mat-mdc-menu-item .mat-icon {
|
|
16
|
+
font-size: 14px;
|
|
17
|
+
height: 14px;
|
|
18
|
+
width: 14px;
|
|
19
|
+
}
|
|
20
|
+
|
|
20
21
|
.btn-table-action .mat-icon {
|
|
21
22
|
color: $blue-primary;
|
|
22
23
|
}
|