Fix disabled placeholder color (#1365)

pull/1377/head
Yash Solanki 2 years ago committed by GitHub
parent 32fe3e195f
commit 3a35d72ec2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -102,6 +102,15 @@ body {
.mat-select-placeholder { .mat-select-placeholder {
color: rgba(var(--light-primary-text)); color: rgba(var(--light-primary-text));
} }
&.mat-select-disabled {
.mat-select-placeholder {
color: rgba(
var(--palette-foreground-disabled-text-dark),
var(--palette-foreground-disabled-text-dark-alpha)
);
}
}
} }
} }
} }
@ -239,4 +248,13 @@ ngx-skeleton-loader {
.mat-select-placeholder { .mat-select-placeholder {
color: rgba(var(--dark-primary-text)); color: rgba(var(--dark-primary-text));
} }
&.mat-select-disabled {
.mat-select-placeholder {
color: rgba(
var(--palette-foreground-disabled-text),
var(--palette-foreground-disabled-text-alpha)
);
}
}
} }

Loading…
Cancel
Save