@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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ngx-stoui/core",
3
- "version": "20.0.10",
3
+ "version": "20.0.11",
4
4
  "author": {
5
5
  "name": "Ronnie Laugen",
6
6
  "email": "rhenri@equinor.com"
@@ -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;
@@ -31,6 +31,13 @@
31
31
  &__actions {
32
32
  border-bottom: 1px solid $border-color;
33
33
  }
34
+ &__header__row,
35
+ &__body__row {
36
+ gap: 0 2px;
37
+ &__cell:first-child {
38
+ padding-left: 8px;
39
+ }
40
+ }
34
41
 
35
42
  &__header__row {
36
43
  border-bottom: 1px solid $border-color;