From 4e5594e3e5429fe09bf4e79f9a5084a82d27b23f Mon Sep 17 00:00:00 2001 From: Anika Henke Date: Fri, 29 Jan 2021 12:18:26 +0000 Subject: Fix page's background colour in `export_html` mode When using the `export_html` mode (page without surrounding layout) the page's background colour is grey with a gradient. That is the same background that the page with layout has but different to the background the text is on. What you would want is the same colour the text is on, which is white. --- lib/tpl/dokuwiki/css/design.less | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/tpl/dokuwiki/css/design.less b/lib/tpl/dokuwiki/css/design.less index 86315d211..b165a2f41 100644 --- a/lib/tpl/dokuwiki/css/design.less +++ b/lib/tpl/dokuwiki/css/design.less @@ -7,6 +7,10 @@ * @author Clarence Lee */ +.dokuwiki.export { + background-color: @ini_background; +} + /* header ********************************************************************/ -- cgit v1.2.3