@ngx-stoui/core 20.0.10 → 20.0.12

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);
@@ -4230,6 +4236,7 @@ html body.mat-app-background {
4230
4236
  --mat-option-label-text-color: var(--text);
4231
4237
  --mat-option-selected-state-label-text-color: var(--text);
4232
4238
  --mat-progress-bar-active-indicator-color: var(--primary-highlight);
4239
+ --mat-progress-bar-track-color: var(--primary-hover-alt);
4233
4240
  --mat-pseudo-checkbox-full-unselected-icon-color: var(--text);
4234
4241
  --mat-radio-selected-icon-color: var(--primary-resting);
4235
4242
  --mat-select-enabled-arrow-color: var(--text);
@@ -4554,8 +4561,12 @@ body .sto-form__field--disabled .mat-select.mat-select-disabled .mat-select-arro
4554
4561
  }
4555
4562
  .sto-form__field.sto-form__field--readonly, .sto-form__field.sto-form__field--disabled {
4556
4563
  --mat-form-field-filled-container-color: var(--bg-default);
4564
+ --mat-form-field-filled-disabled-container-color: var(--bg-default);
4557
4565
  cursor: default;
4558
4566
  }
4567
+ .sto-form__field.sto-form__field--readonly .mat-mdc-text-field-wrapper, .sto-form__field.sto-form__field--disabled .mat-mdc-text-field-wrapper {
4568
+ border: 1px solid var(--bg-medium);
4569
+ }
4559
4570
  .sto-form__field.sto-form__field--disabled {
4560
4571
  cursor: default;
4561
4572
  }
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.12",
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;