frontend: update disabled text field background color in SCSS files

This commit is contained in:
Carlos Santos 2025-10-06 13:42:02 +02:00
parent c43af5c469
commit 5fd737ef0b
3 changed files with 10 additions and 3 deletions

View File

@ -35,7 +35,9 @@
margin-bottom: var(--ov-meet-spacing-lg); margin-bottom: var(--ov-meet-spacing-lg);
::ng-deep .mat-mdc-text-field-wrapper { ::ng-deep .mat-mdc-text-field-wrapper {
background-color: var(--ov-meet-surface-variant); &.mdc-text-field--disabled {
background-color: var(--ov-meet-surface-variant);
}
border-radius: var(--ov-meet-border-radius-sm); border-radius: var(--ov-meet-border-radius-sm);
} }

View File

@ -88,7 +88,10 @@
margin-bottom: var(--ov-meet-spacing-lg); margin-bottom: var(--ov-meet-spacing-lg);
::ng-deep .mat-mdc-text-field-wrapper { ::ng-deep .mat-mdc-text-field-wrapper {
background-color: var(--ov-meet-surface-variant); &.mdc-text-field--disabled {
background-color: var(--ov-meet-surface-variant);
}
border-radius: var(--ov-meet-border-radius-sm); border-radius: var(--ov-meet-border-radius-sm);
} }

View File

@ -83,7 +83,9 @@
} }
::ng-deep .mat-mdc-text-field-wrapper { ::ng-deep .mat-mdc-text-field-wrapper {
background-color: var(--ov-meet-surface-variant); &.mdc-text-field--disabled {
background-color: var(--ov-meet-surface-variant);
}
border-radius: var(--ov-meet-border-radius-sm); border-radius: var(--ov-meet-border-radius-sm);
} }