@ngx-stoui/core 19.0.1 → 19.0.2
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-stoui.css +16 -2
- package/package.json +1 -1
- package/style/form/sto-form.scss +0 -1
package/ngx-stoui.css
CHANGED
|
@@ -4309,10 +4309,15 @@ html body .mat-mdc-button-base {
|
|
|
4309
4309
|
}
|
|
4310
4310
|
html body .mat-mdc-button-base.mat-unthemed {
|
|
4311
4311
|
--mdc-text-button-label-text-color: var(--text);
|
|
4312
|
+
--mdc-outlined-button-label-text-color: var(--text);
|
|
4313
|
+
--mdc-outlined-button-disabled-label-text-color: var(--text-disabled);
|
|
4312
4314
|
}
|
|
4313
4315
|
html body .mat-mdc-button-base.mat-mdc-raised-button {
|
|
4314
4316
|
--mdc-protected-button-label-text-color: var(--primary-hover-alt);
|
|
4315
4317
|
}
|
|
4318
|
+
html body .mat-mdc-button-base.mat-mdc-outlined-button {
|
|
4319
|
+
--mdc-outlined-button-disabled-label-text-color: var(--text-disabled);
|
|
4320
|
+
}
|
|
4316
4321
|
html body .mat-mdc-button-base.mat-mdc-icon-button {
|
|
4317
4322
|
--mdc-icon-button-padding: max(
|
|
4318
4323
|
0px,
|
|
@@ -4352,7 +4357,8 @@ html body .mat-mdc-tab-nav-bar {
|
|
|
4352
4357
|
--mat-tab-header-inactive-focus-label-text-color: var(--text-disabled);
|
|
4353
4358
|
--mat-tab-header-inactive-hover-label-text-color: var(--text-disabled);
|
|
4354
4359
|
}
|
|
4355
|
-
html body .mdc-menu-surface
|
|
4360
|
+
html body .mdc-menu-surface,
|
|
4361
|
+
html body .mat-mdc-menu-panel {
|
|
4356
4362
|
--mat-select-panel-background-color: var(--bg-card);
|
|
4357
4363
|
--mat-menu-item-label-text-color: var(--text);
|
|
4358
4364
|
--mat-menu-container-color: var(--bg-card);
|
|
@@ -4360,6 +4366,14 @@ html body .mdc-menu-surface {
|
|
|
4360
4366
|
--mat-option-label-text-color: var(--text);
|
|
4361
4367
|
--mat-full-pseudo-checkbox-unselected-icon-color: var(--text);
|
|
4362
4368
|
}
|
|
4369
|
+
html body .mat-mdc-select-panel {
|
|
4370
|
+
padding: 0;
|
|
4371
|
+
}
|
|
4372
|
+
html body .mat-mdc-dialog-surface {
|
|
4373
|
+
--mdc-dialog-container-color: var(--bg-card);
|
|
4374
|
+
--mdc-dialog-subhead-color: var(--text);
|
|
4375
|
+
--mdc-dialog-supporting-text-color: var(--text);
|
|
4376
|
+
}
|
|
4363
4377
|
html body .mat-mdc-card {
|
|
4364
4378
|
--mdc-elevated-card-container-color: var(--bg-card);
|
|
4365
4379
|
--mdc-outlined-card-container-color: hsla(from var(--bg-card) h s l / 50%);
|
|
@@ -4398,6 +4412,7 @@ html body .mat-mdc-checkbox.mat-primary {
|
|
|
4398
4412
|
--mdc-theme-text-primary-on-background: var(--text);
|
|
4399
4413
|
--mdc-checkbox-unselected-hover-icon-color: var(--text-disabled);
|
|
4400
4414
|
--mdc-checkbox-selected-hover-icon-color: var(--primary-hover);
|
|
4415
|
+
--mat-checkbox-label-text-color: var(--text);
|
|
4401
4416
|
}
|
|
4402
4417
|
html body .mat-mdc-radio-button {
|
|
4403
4418
|
--mdc-radio-selected-icon-color: var(--primary-resting);
|
|
@@ -4746,7 +4761,6 @@ body .sto-form__field--disabled .mat-select.mat-select-disabled .mat-select-arro
|
|
|
4746
4761
|
}
|
|
4747
4762
|
.sto-form__field.sto-form__field--without-placeholder .mat-mdc-form-field-infix {
|
|
4748
4763
|
border-top-width: 0;
|
|
4749
|
-
padding: 0;
|
|
4750
4764
|
}
|
|
4751
4765
|
.sto-form__field.sto-form__field--without-placeholder .mat-select .mat-select-arrow {
|
|
4752
4766
|
margin-top: 0px;
|
package/package.json
CHANGED