From 852d96eb3de00f06c802cd76205891a7badef5fa Mon Sep 17 00:00:00 2001 From: James Clarke Date: Sun, 27 Aug 2017 00:14:06 +0100 Subject: [PATCH] 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. --- sphinx/themes/nature/static/nature.css_t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/themes/nature/static/nature.css_t b/sphinx/themes/nature/static/nature.css_t index 4c86f9e7d..bb0c83bac 100644 --- a/sphinx/themes/nature/static/nature.css_t +++ b/sphinx/themes/nature/static/nature.css_t @@ -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;