From 9f97d7491188aeed929539fef3bacaa746064025 Mon Sep 17 00:00:00 2001 From: sercan Date: Thu, 2 Sep 2021 23:48:26 +0300 Subject: [PATCH] (@fuse/overrides/angular-material) Fixed: Normal border color of the text field overrides the invalid and focus border colors on dark themes --- src/@fuse/styles/overrides/angular-material.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/@fuse/styles/overrides/angular-material.scss b/src/@fuse/styles/overrides/angular-material.scss index 3d671f2c..e2eaffe8 100644 --- a/src/@fuse/styles/overrides/angular-material.scss +++ b/src/@fuse/styles/overrides/angular-material.scss @@ -434,7 +434,7 @@ /* Border color */ .mat-form-field-flex { - @apply border-warn #{'!important'}; + @apply border-warn dark:border-warn #{'!important'}; } } } @@ -446,7 +446,7 @@ /* Background color */ .mat-form-field-flex { - @apply bg-card #{'!important'}; + @apply bg-card dark:bg-card #{'!important'}; } } } @@ -458,7 +458,7 @@ /* Border color */ .mat-form-field-flex { - @apply border-primary #{'!important'}; + @apply border-primary dark:border-primary #{'!important'}; } } }