Skip to content
This repository has been archived by the owner on Nov 6, 2023. It is now read-only.

Commit

Permalink
Fix options page appearance on Firefox when dark mode is on
Browse files Browse the repository at this point in the history
  • Loading branch information
pipboy96 committed Feb 27, 2020
1 parent ccb8920 commit 91830a3
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions chromium/pages/options/style.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,25 @@
body{
min-width: 500px;
min-height: 250px;
display: block;
}

@media (prefers-color-scheme: dark) {
body {
background-color: #202023;
color: #f9f9fa;
}

.section-header-span, div#update-channels-warning {
color: #000;
}

textarea, input[type=text] {
background-color: #202023;
color: #f9f9fa;
}
}

a.settings{
background-color: #1c87c9;
border: none;
Expand Down

0 comments on commit 91830a3

Please sign in to comment.