mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
nature: Fix macOS Safari scrollbar color
macOS scrollbars overlap the contents, and the color is either black or white, depending on the color of the body. Therefore having a black body causes the scrollbar to appear white, and since the theme itself is light, the scrollbar is barely visible. Fix this by setting body to have a white background-color, matching the visible color coming from div.body.
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
font-size: 100%;
|
||||
background-color: #111;
|
||||
background-color: #fff;
|
||||
color: #555;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
||||
Reference in New Issue
Block a user