@sumaris-net/ngx-components 4.0.0-rc10 → 4.0.0-rc11
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/esm2022/src/app/core/menu/menu.component.mjs +3 -3
- package/fesm2022/sumaris-net.ngx-components.mjs +2 -2
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/theme/_ngx-components.globals.scss +2 -2
- package/src/theme/_ngx-components.table.scss +15 -14
package/package.json
CHANGED
|
@@ -16,7 +16,7 @@ $app-form-buttons-bar-height: 56px !default;
|
|
|
16
16
|
$app-select-option-border-color: rgba(0, 0, 0, 0.12) !default;
|
|
17
17
|
$app-table-border-color: rgba(0, 0, 0, 0.08) !default;
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
$app-form-field-background-color: rgba(0,0,0,0) !default;
|
|
20
|
+
//$app-form-field-background-color: whitesmoke !default;
|
|
21
21
|
$app-form-field-focus-background-color: rgba(0, 0, 0, 0) !default;
|
|
22
22
|
//$app-form-field-focus-background-color: rgba(0, 0, 0, 0.87) !default;
|
|
@@ -351,25 +351,26 @@
|
|
|
351
351
|
// Suffix
|
|
352
352
|
.mat-mdc-form-field-icon-suffix {
|
|
353
353
|
white-space: nowrap;
|
|
354
|
+
}
|
|
354
355
|
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
.mat-mdc-button-touch-target {
|
|
367
|
-
width: 24px;
|
|
368
|
-
}
|
|
356
|
+
// Specific icon button styles
|
|
357
|
+
.mat-mdc-icon-button {
|
|
358
|
+
width: 24px;
|
|
359
|
+
height: 24px;
|
|
360
|
+
padding: 2px 0 0 0;
|
|
361
|
+
|
|
362
|
+
ion-icon, .mat-icon {
|
|
363
|
+
$font-size: calculateRem(18px);
|
|
364
|
+
font-size: $font-size;
|
|
365
|
+
line-height: 1.125;
|
|
369
366
|
}
|
|
370
367
|
|
|
368
|
+
.mat-mdc-button-touch-target {
|
|
369
|
+
width: 24px;
|
|
370
|
+
}
|
|
371
371
|
}
|
|
372
372
|
|
|
373
|
+
|
|
373
374
|
// Specific behavior for chips
|
|
374
375
|
&.mat-mdc-form-field-type-mat-chip-grid {
|
|
375
376
|
--mat-cell-padding-top: 7px;
|