From 63589b9ad87fe2aefe5925a6eac65542b54c4643 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Fri, 26 Jul 2013 14:21:52 +0100 Subject: [PATCH] p:last-of-type selector only works on DIRECT descendents of body --- tools/htdocs/mkws-doc.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/htdocs/mkws-doc.css b/tools/htdocs/mkws-doc.css index 2f222cf..6081484 100644 --- a/tools/htdocs/mkws-doc.css +++ b/tools/htdocs/mkws-doc.css @@ -39,8 +39,8 @@ pre { /* * Works with the HTML emitted by pandoc. It would better if pandoc * were to emit class names that we can use. But it doesn't. - */ -body p:last-of-type { + */ +body > p:last-of-type { font-size: small; max-width: none; text-align: right; -- 1.7.10.4