From 828235dd9bc3a6f518ba49bf38f3627a1d485ae1 Mon Sep 17 00:00:00 2001 From: Akshay Joshi Date: Wed, 20 Apr 2022 17:20:40 +0530 Subject: [PATCH] Move the 'btn-ignore-dropdown' css to the scss file to ensure that it works with dark and high contrast themes. refs #7282 --- web/pgadmin/tools/schema_diff/static/css/schema_diff.css | 6 ------ web/pgadmin/tools/schema_diff/static/scss/_schema_diff.scss | 6 ++++++ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/web/pgadmin/tools/schema_diff/static/css/schema_diff.css b/web/pgadmin/tools/schema_diff/static/css/schema_diff.css index 04efc327a..4236dae9d 100644 --- a/web/pgadmin/tools/schema_diff/static/css/schema_diff.css +++ b/web/pgadmin/tools/schema_diff/static/css/schema_diff.css @@ -153,9 +153,3 @@ .slick-cell .ml-3 { margin-left: 3rem !important; } - -#btn-ignore-dropdown { - color: #fff !important; - background-color: #326690 !important; - border-color: #326690 !important; -} diff --git a/web/pgadmin/tools/schema_diff/static/scss/_schema_diff.scss b/web/pgadmin/tools/schema_diff/static/scss/_schema_diff.scss index 82cd9556a..de12c3315 100644 --- a/web/pgadmin/tools/schema_diff/static/scss/_schema_diff.scss +++ b/web/pgadmin/tools/schema_diff/static/scss/_schema_diff.scss @@ -137,3 +137,9 @@ .select2-selection__placeholder { color: $select2-placeholder !important; } + +#btn-ignore-dropdown { + color: $btn-primary-color !important; + background-color: $color-primary !important; + border-color: $color-primary !important; +}