@ngx-stoui/core 20.0.10 → 20.0.11
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 +10 -0
- package/package.json +1 -1
- package/style/form/sto-form.scss +4 -0
- package/style/theme/_datatable.scss +7 -0
package/ngx-stoui.css
CHANGED
|
@@ -171,6 +171,12 @@ body .sto-mdl-table .mat-icon-button:hover {
|
|
|
171
171
|
body .sto-mdl-table__actions {
|
|
172
172
|
border-bottom: 1px solid var(--divider);
|
|
173
173
|
}
|
|
174
|
+
body .sto-mdl-table__header__row, body .sto-mdl-table__body__row {
|
|
175
|
+
gap: 0 2px;
|
|
176
|
+
}
|
|
177
|
+
body .sto-mdl-table__header__row__cell:first-child, body .sto-mdl-table__body__row__cell:first-child {
|
|
178
|
+
padding-left: 8px;
|
|
179
|
+
}
|
|
174
180
|
body .sto-mdl-table__header__row {
|
|
175
181
|
border-bottom: 1px solid var(--divider);
|
|
176
182
|
background-color: var(--bg-light);
|
|
@@ -4554,8 +4560,12 @@ body .sto-form__field--disabled .mat-select.mat-select-disabled .mat-select-arro
|
|
|
4554
4560
|
}
|
|
4555
4561
|
.sto-form__field.sto-form__field--readonly, .sto-form__field.sto-form__field--disabled {
|
|
4556
4562
|
--mat-form-field-filled-container-color: var(--bg-default);
|
|
4563
|
+
--mat-form-field-filled-disabled-container-color: var(--bg-default);
|
|
4557
4564
|
cursor: default;
|
|
4558
4565
|
}
|
|
4566
|
+
.sto-form__field.sto-form__field--readonly .mat-mdc-text-field-wrapper, .sto-form__field.sto-form__field--disabled .mat-mdc-text-field-wrapper {
|
|
4567
|
+
border: 1px solid var(--bg-medium);
|
|
4568
|
+
}
|
|
4559
4569
|
.sto-form__field.sto-form__field--disabled {
|
|
4560
4570
|
cursor: default;
|
|
4561
4571
|
}
|
package/package.json
CHANGED
package/style/form/sto-form.scss
CHANGED
|
@@ -137,7 +137,11 @@ $border-radius: 4px;
|
|
|
137
137
|
&.sto-form__field--readonly,
|
|
138
138
|
&.sto-form__field--disabled {
|
|
139
139
|
--mat-form-field-filled-container-color: var(--bg-default);
|
|
140
|
+
--mat-form-field-filled-disabled-container-color: var(--bg-default);
|
|
140
141
|
cursor: default;
|
|
142
|
+
.mat-mdc-text-field-wrapper {
|
|
143
|
+
border: 1px solid var(--bg-medium);
|
|
144
|
+
}
|
|
141
145
|
}
|
|
142
146
|
&.sto-form__field--disabled {
|
|
143
147
|
cursor: default;
|