diff options
author | Simon McVittie <smcv@debian.org> | 2016-12-19 16:59:43 +0000 |
---|---|---|
committer | Simon McVittie <smcv@debian.org> | 2016-12-19 18:21:07 +0000 |
commit | cde2cc18624cb877cc9a9f43d7ae75fb1217008b (patch) | |
tree | 14ca2c33187489dfe97cbe33f576a3d9bbf06cdc /themes/monochrome | |
parent | 2a9e9f13f6583ba04bca06750373d462985c5ccb (diff) | |
download | ikiwiki-cde2cc18624cb877cc9a9f43d7ae75fb1217008b.tar ikiwiki-cde2cc18624cb877cc9a9f43d7ae75fb1217008b.tar.gz |
Restrict CSS matches on .header to not affect <tr>
Pandoc generates <tr class="header"> to hold <th> elements, and
we don't want to make those be display: block.
Signed-off-by: Simon McVittie <smcv@debian.org>
Diffstat (limited to 'themes/monochrome')
-rw-r--r-- | themes/monochrome/style.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/monochrome/style.css b/themes/monochrome/style.css index e85f8abb5..aa2ee9445 100644 --- a/themes/monochrome/style.css +++ b/themes/monochrome/style.css @@ -19,7 +19,7 @@ body { font-family: 'Lato', sans-serif; } -.header { +div.header, header.header { margin-bottom: 0.5em; } .pageheader .actions ul { |