From c088a5a9b7b1c105cd5e6d3516f7f1b116e464ad Mon Sep 17 00:00:00 2001 From: anshumancanrock Date: Sun, 5 Oct 2025 23:21:03 +0530 Subject: [PATCH 1/4] fix: Input text box color does not change along with rest of the interface --- src/index.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/index.css b/src/index.css index 2a22f80..bfee803 100644 --- a/src/index.css +++ b/src/index.css @@ -217,7 +217,13 @@ hr, } #cacheInput { - transition: border-color 0.2s ease; + transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out; +} + +.dark-mode #cacheInput { + background-color: #404040 !important; + border-color: #505050 !important; + color: #ffffff !important; } #cacheInput:focus { @@ -694,6 +700,7 @@ hr, background-color: #404040 !important; border-color: #505050 !important; color: #ffffff !important; + transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out; } .dark-mode #platformDropdownBtn:focus { From 3227388eb2b169ffbbed1a4eb18b7ad5b1af3478 Mon Sep 17 00:00:00 2001 From: anshumancanrock Date: Sun, 5 Oct 2025 23:29:48 +0530 Subject: [PATCH 2/4] fix: Input text box color does not change along with rest of the interface --- src/index.css | 1 - 1 file changed, 1 deletion(-) diff --git a/src/index.css b/src/index.css index bfee803..313e899 100644 --- a/src/index.css +++ b/src/index.css @@ -700,7 +700,6 @@ hr, background-color: #404040 !important; border-color: #505050 !important; color: #ffffff !important; - transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out; } .dark-mode #platformDropdownBtn:focus { From a9c3be284885b21c1eca65880cfe6d948372ab24 Mon Sep 17 00:00:00 2001 From: anshumancanrock Date: Sun, 5 Oct 2025 23:43:59 +0530 Subject: [PATCH 3/4] fix --- src/index.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.css b/src/index.css index 313e899..bfee803 100644 --- a/src/index.css +++ b/src/index.css @@ -700,6 +700,7 @@ hr, background-color: #404040 !important; border-color: #505050 !important; color: #ffffff !important; + transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out; } .dark-mode #platformDropdownBtn:focus { From b08f2030189d32677a0416d345e4fe5cd7c153a6 Mon Sep 17 00:00:00 2001 From: anshumancanrock Date: Sun, 19 Oct 2025 14:37:07 +0530 Subject: [PATCH 4/4] fix: Input text box color does not change along with rest of the interface --- src/index.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/index.css b/src/index.css index bfee803..ea5d976 100644 --- a/src/index.css +++ b/src/index.css @@ -696,6 +696,10 @@ hr, text-decoration: underline; } +#platformDropdownBtn { + transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out; +} + .dark-mode #platformDropdownBtn { background-color: #404040 !important; border-color: #505050 !important;