Skip to content

Commit

Permalink
Fix issue #515
Browse files Browse the repository at this point in the history
  • Loading branch information
proginosko committed Jan 3, 2025
1 parent 27a0281 commit eed9853
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 3 deletions.
17 changes: 16 additions & 1 deletion options.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,23 @@ html {
overflow-y: scroll;
}

@media (prefers-color-scheme: light) {

body {
background: #fff;
}

}

@media (prefers-color-scheme: dark) {

body {
background: #222;
}

}

body {
background: #fff;
color: #000;
font-size: 14px;
}
Expand Down
17 changes: 16 additions & 1 deletion popup.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,22 @@
/* LeechBlock popup style */

@media (prefers-color-scheme: light) {

body {
background-color: #fff;
}

}

@media (prefers-color-scheme: dark) {

body {
background-color: #222;
}

}

body {
background-color: #fff;
color: #000;
font-size: 14px;
text-align: center;
Expand Down
17 changes: 16 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,22 @@
/* LeechBlock blocking/delaying page style */

@media (prefers-color-scheme: light) {

body {
background: #fff;
}

}

@media (prefers-color-scheme: dark) {

body {
background: #222;
}

}

body {
background: #fff;
color: #2e3436;
font: normal 16px "Open Sans", Arial, sans-serif;
text-align: center;
Expand Down
4 changes: 4 additions & 0 deletions themes/light.css
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
/* LeechBlock Light theme style */

body {
background: #fff;
}

0 comments on commit eed9853

Please sign in to comment.