From 23370843490b0f26aa961c1d78fe9cc175d52d56 Mon Sep 17 00:00:00 2001 From: Johan Walles Date: Fri, 13 Apr 2012 10:23:15 +0200 Subject: [PATCH] Explicitly set background to white and scroll bars to auto. When displaying documentation pages inside of the Spotify client without this change, the pages have the wrong background color and aren't scrollable. --- templates/default/static/styles/jsdoc-default.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/templates/default/static/styles/jsdoc-default.css b/templates/default/static/styles/jsdoc-default.css index ad5f5e0b..dc5a3d61 100644 --- a/templates/default/static/styles/jsdoc-default.css +++ b/templates/default/static/styles/jsdoc-default.css @@ -1,8 +1,15 @@ +html +{ + overflow: auto; + background-color: #fff; +} + body { font: 14px "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans serif; line-height: 130%; color: #000; + background-color: #fff; } a {