[ACA-2493] Fix disabled create folder button color (#5605)

This commit is contained in:
Baptiste Mahé 2020-04-14 15:18:10 +02:00 committed by GitHub
parent d089283aa4
commit 25426dd044
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,12 +24,17 @@
@mixin adf-dialog-theme($theme) { @mixin adf-dialog-theme($theme) {
$primary: map-get($theme, primary); $primary: map-get($theme, primary);
$foreground: map-get($theme, foreground);
.adf-dialog-buttons button { .adf-dialog-buttons button {
text-transform: uppercase; text-transform: uppercase;
} }
.adf-dialog-action-button:enabled { .adf-dialog-action-button:enabled {
color: mat-color($primary); color: mat-color($primary);
} }
.adf-dialog-action-button:disabled > span {
color: mat-color($foreground, text, 0.54);
}
} }