Skip to content

Commit 4fb182b

Browse files
authored
Merge pull request #249 from Anshumancanrock/input-field-color
fix: Input text box color does not change along with rest of the interface
2 parents e6a238c + b08f203 commit 4fb182b

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

src/index.css

Lines changed: 12 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 {
@@ -690,10 +696,15 @@ hr,
690696
text-decoration: underline;
691697
}
692698

699+
#platformDropdownBtn {
700+
transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
701+
}
702+
693703
.dark-mode #platformDropdownBtn {
694704
background-color: #404040 !important;
695705
border-color: #505050 !important;
696706
color: #ffffff !important;
707+
transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
697708
}
698709

699710
.dark-mode #platformDropdownBtn:focus {

0 commit comments

Comments
 (0)