Skip to content
Open
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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 {
Expand Down