Skip to content

Commit c088a5a

Browse files
fix: Input text box color does not change along with rest of the interface
1 parent 69d5cd1 commit c088a5a

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/index.css

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,13 @@ hr,
217217
}
218218

219219
#cacheInput {
220-
transition: border-color 0.2s ease;
220+
transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
221+
}
222+
223+
.dark-mode #cacheInput {
224+
background-color: #404040 !important;
225+
border-color: #505050 !important;
226+
color: #ffffff !important;
221227
}
222228

223229
#cacheInput:focus {
@@ -694,6 +700,7 @@ hr,
694700
background-color: #404040 !important;
695701
border-color: #505050 !important;
696702
color: #ffffff !important;
703+
transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
697704
}
698705

699706
.dark-mode #platformDropdownBtn:focus {

0 commit comments

Comments
 (0)