From 590db3c8bcbb87abe7cdd24fe9a7ef3e390e758a Mon Sep 17 00:00:00 2001 From: Yogesh Ojha Date: Sun, 28 Jul 2024 08:13:48 +0530 Subject: [PATCH] fix input box color when disabled --- web/static/custom/custom.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/web/static/custom/custom.css b/web/static/custom/custom.css index dcca7751..9b47d515 100644 --- a/web/static/custom/custom.css +++ b/web/static/custom/custom.css @@ -71,11 +71,15 @@ input[type="color"]:focus, } input[type="text"][disabled] { - background-color: #dddddd; + background-color: #2a2d35; + color: #5a6071; + border-color: #3a3f4a; } form-control:disabled, .form-control[readonly]{ - background-color: #dddddd; + background-color: #2a2d35; + color: #5a6071; + border-color: #3a3f4a; } .accordion-item{