From d52014184dff94d6f1c0cabd1dd841e4e57a0f07 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 14 Mar 2020 09:15:22 +0200 Subject: Fix: table head styling This undoes the "display: block" style for .header class elements. I think ikiwiki is overloading .header with conflicing meanings, but I can only change how this site deals with it. --- style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/style.css b/style.css index b688ba3..60258b4 100644 --- a/style.css +++ b/style.css @@ -18,6 +18,10 @@ footer,header,hgroup,menu,nav,section { display: block; } +table thead tr.header { + display: table-row; +} + .inlineheader .author { margin: 0; font-size: 112%; -- cgit v1.2.1