@ngx-stoui/core 20.0.8 → 20.0.10
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/ngx-datatable.css +3 -0
- package/ngx-stoui.css +15 -0
- package/package.json +1 -1
- package/style/datatable/ngx-datatable.scss +3 -0
package/ngx-datatable.css
CHANGED
|
@@ -259,6 +259,9 @@
|
|
|
259
259
|
margin: 0 4px;
|
|
260
260
|
min-height: 0;
|
|
261
261
|
}
|
|
262
|
+
.sto-datatable .datatable-body .datatable-body-row .datatable-body-cell .mat-mdc-form-field:has(.mat-mdc-chip-set) {
|
|
263
|
+
--mat-form-field-container-vertical-padding: 3px;
|
|
264
|
+
}
|
|
262
265
|
.sto-datatable .datatable-body .datatable-body-row .datatable-body-cell .mat-mdc-form-field-subscript-wrapper {
|
|
263
266
|
display: none;
|
|
264
267
|
}
|
package/ngx-stoui.css
CHANGED
|
@@ -4239,6 +4239,8 @@ html body.mat-app-background {
|
|
|
4239
4239
|
--mat-slide-toggle-handle-surface-color: var(--primary-resting);
|
|
4240
4240
|
--mat-slide-toggle-label-text-color: var(--text);
|
|
4241
4241
|
--mat-slide-toggle-selected-focus-track-color: var(--primary-selected-focus);
|
|
4242
|
+
--mat-slide-toggle-selected-icon-color: var(--primary-contrast-resting);
|
|
4243
|
+
--mat-slide-toggle-disabled-selected-icon-color: var(--primary-selected-hover);
|
|
4242
4244
|
--mat-slide-toggle-selected-hover-track-color: var(--primary-selected-hover);
|
|
4243
4245
|
--mat-slide-toggle-selected-track-color: var(--primary-selected-hover);
|
|
4244
4246
|
--mat-slide-toggle-unselected-focus-handle-color: var(--bg-default);
|
|
@@ -4295,6 +4297,9 @@ html body .mat-mdc-select-panel {
|
|
|
4295
4297
|
html body .mat-mdc-option {
|
|
4296
4298
|
min-height: 36px;
|
|
4297
4299
|
}
|
|
4300
|
+
html body .mdc-switch.mdc-switch--disabled {
|
|
4301
|
+
--mat-slide-toggle-handle-surface-color: var(--bg-disabled);
|
|
4302
|
+
}
|
|
4298
4303
|
html body .mat-mdc-button-base {
|
|
4299
4304
|
height: var(--mat-button-text-container-height);
|
|
4300
4305
|
}
|
|
@@ -4336,6 +4341,10 @@ html body .mat-mdc-form-field label:has(> mat-label:empty) > .mat-mdc-form-field
|
|
|
4336
4341
|
box-sizing: content-box;
|
|
4337
4342
|
}
|
|
4338
4343
|
|
|
4344
|
+
.mat-mdc-chip.mat-mdc-standard-chip {
|
|
4345
|
+
--mat-chip-container-height: 23px;
|
|
4346
|
+
}
|
|
4347
|
+
|
|
4339
4348
|
table {
|
|
4340
4349
|
border-collapse: collapse;
|
|
4341
4350
|
border-spacing: 0;
|
|
@@ -4419,6 +4428,12 @@ a.dense.breadcrumbs__button {
|
|
|
4419
4428
|
height: 100%;
|
|
4420
4429
|
}
|
|
4421
4430
|
|
|
4431
|
+
sto-nav-drawer-item .mat-mdc-button > .mat-icon {
|
|
4432
|
+
width: 24px;
|
|
4433
|
+
height: 24px;
|
|
4434
|
+
font-size: 24px;
|
|
4435
|
+
}
|
|
4436
|
+
|
|
4422
4437
|
.mat-select-panel,
|
|
4423
4438
|
.mat-autocomplete-panel {
|
|
4424
4439
|
border-radius: 4px;
|
package/package.json
CHANGED