From 58e91b4ba49c3babdbc780f2e695afadb0cbdca0 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 18 Apr 2022 17:55:58 +0530 Subject: [PATCH] =?UTF-8?q?Fix=20#1617=20(The=20calibre=20editor=20"Check"?= =?UTF-8?q?=20complains=20when=20rules=20are=20empty,=20saying=20=E2=80=A6?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/jacket/stylesheet.css | 29 +++++++++++------------------ 1 file changed, 11 insertions(+), 18 deletions(-) diff --git a/resources/jacket/stylesheet.css b/resources/jacket/stylesheet.css index 0d7a71d8ce..5305d5a054 100644 --- a/resources/jacket/stylesheet.css +++ b/resources/jacket/stylesheet.css @@ -105,27 +105,20 @@ hr.metadata_divider { /* ** To skip a banner item (Series|Published|Rating|Tags), -** edit the appropriate CSS rule below. +** uncomment the appropriate CSS rule below. */ -table.cbj_header tr.cbj_series { - /* Uncomment the next line to remove 'Series' from banner section */ - /* display:none; */ - } -table.cbj_header tr.cbj_pubdata { - /* Uncomment the next line to remove 'Published (year of publication)' from banner section */ - /* display:none; */ - } +/* Uncomment the next line to remove 'Series' from banner section */ +/* table.cbj_header tr.cbj_series { display: none } */ -table.cbj_header tr.cbj_rating { - /* Uncomment the next line to remove 'Rating' from banner section */ - /* display:none; */ - } +/* Uncomment the next line to remove 'Published (year of publication)' from banner section */ +/* table.cbj_header tr.cbj_pubdata { display:none } */ -table.cbj_header tr.cbj_tags { - /* Uncomment the next line to remove 'Tags' from banner section */ - /* display:none; */ - } +/* Uncomment the next line to remove 'Rating' from banner section */ +/* table.cbj_header tr.cbj_rating { display:none } */ + +/* Uncomment the next line to remove 'Tags' from banner section */ +/* table.cbj_header tr.cbj_tags { display:none } */ hr { /* This rule controls formatting for any hr elements contained in the jacket */ @@ -145,5 +138,5 @@ hr { } .cbj_comments { - font-family: sans-serif; + font-family: sans-serif; }