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

Commit 4fd1978

Browse files
authored
Fix options page appearance on Firefox when dark mode is on (#18992)
1 parent ccb8920 commit 4fd1978

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

chromium/pages/options/style.css

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,25 @@
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, div#update-channels-warning {
14+
color: #000;
15+
}
16+
17+
textarea, input[type=text] {
18+
background-color: #202023;
19+
color: #f9f9fa;
20+
}
21+
}
22+
623
a.settings{
724
background-color: #1c87c9;
825
border: none;

0 commit comments

Comments
 (0)