@sumaris-net/ngx-components 2.7.0-rc1 → 2.7.0-rc3
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
CHANGED
|
@@ -111,7 +111,7 @@ html {
|
|
|
111
111
|
// Main Menu
|
|
112
112
|
// --------------------------------------------------
|
|
113
113
|
.split-pane-md.split-pane-visible > .split-pane-side {
|
|
114
|
-
max-width: $app-menu-width !important;
|
|
114
|
+
max-width: #{$app-menu-width} !important;
|
|
115
115
|
}
|
|
116
116
|
|
|
117
117
|
ion-menu.menu-side-left {
|
|
@@ -131,12 +131,15 @@ ion-menu.menu-side-left {
|
|
|
131
131
|
// --------------------------------------------------
|
|
132
132
|
.form-container,
|
|
133
133
|
form.form-container {
|
|
134
|
-
color: $app-form-color;
|
|
134
|
+
color: #{$app-form-color};
|
|
135
|
+
--mdc-filled-text-field-container-color: #{$app-form-field-background-color};
|
|
136
|
+
--mat-form-field-state-layer-color: #{$app-form-field-focus-background-color};
|
|
137
|
+
|
|
135
138
|
@include font-size(16px);
|
|
136
139
|
|
|
137
140
|
.mat-form-field-disabled,
|
|
138
141
|
.mat-mdc-input-element:disabled {
|
|
139
|
-
color: $app-form-color-disabled !important;
|
|
142
|
+
color: #{$app-form-color-disabled} !important;
|
|
140
143
|
}
|
|
141
144
|
|
|
142
145
|
.mat-form-field-disabled {
|
|
@@ -159,13 +162,6 @@ form.form-container {
|
|
|
159
162
|
}
|
|
160
163
|
}
|
|
161
164
|
|
|
162
|
-
.mdc-text-field {
|
|
163
|
-
background-color: $app-form-field-background-color;
|
|
164
|
-
}
|
|
165
|
-
.mat-mdc-form-field-focus-overlay {
|
|
166
|
-
background-color: $app-form-field-focus-background-color;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
165
|
ion-icon[matPrefix],
|
|
170
166
|
mat-icon[matPrefix],
|
|
171
167
|
.mat-mdc-form-field-icon-prefix {
|
|
@@ -24,6 +24,9 @@
|
|
|
24
24
|
--mdc-typography-body1-letter-spacing: 0.0178571429em;
|
|
25
25
|
--mat-table-row-item-label-text-size: 14px;
|
|
26
26
|
|
|
27
|
+
--mdc-filled-text-field-container-color: #{$app-form-field-background-color};
|
|
28
|
+
--mat-form-field-state-layer-color: #{$app-form-field-focus-background-color};
|
|
29
|
+
|
|
27
30
|
.mat-mdc-header-cell {
|
|
28
31
|
color: var(--ion-color-primary);
|
|
29
32
|
|
|
@@ -293,11 +296,6 @@
|
|
|
293
296
|
|
|
294
297
|
.mdc-text-field {
|
|
295
298
|
padding-inline: 0;
|
|
296
|
-
background-color: $app-form-field-background-color;
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
.mat-mdc-form-field-focus-overlay {
|
|
300
|
-
background-color: $app-form-field-focus-background-color;
|
|
301
299
|
}
|
|
302
300
|
|
|
303
301
|
// Prefix
|