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

Commit 8fcd89f

Browse files
committed
Fix options page appearance on Firefox when dark mode is on
1 parent ccb8920 commit 8fcd89f

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

chromium/pages/options/style.css

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,38 @@
11
body{
22
min-width: 500px;
3+
min-height: 250px;
34
display: block;
45
}
56

7+
@media (prefers-color-scheme: dark) {
8+
body {
9+
background-color: #202023;
10+
color: #f9f9fa;
11+
}
12+
13+
.section-header-span {
14+
color: #000;
15+
}
16+
17+
.section-header-span.active {
18+
background-color: #323639;
19+
}
20+
21+
.section-header-span.inactive {
22+
background-color: #202124;
23+
}
24+
25+
div#update-channels-warning {
26+
background-color: #3386cc;
27+
color: #000;
28+
}
29+
30+
textarea, input[type=text] {
31+
background-color: #202023;
32+
color: #f9f9fa;
33+
}
34+
}
35+
636
a.settings{
737
background-color: #1c87c9;
838
border: none;

0 commit comments

Comments
 (0)