From 8dfa3f249cf9d9c47cba574fd942e19cf80f9987 Mon Sep 17 00:00:00 2001 From: David Cook Date: Thu, 1 Nov 2012 09:26:41 +1100 Subject: [PATCH] Bug 9003 - Add css fix for opac items with strong and em Currently, if you have nested strong and em tags in the opac, you will only get the properties of the inner tag. This seems to be due to reset-fonts-grids.css resetting the font weight and style (for both strong and em) to normal. So if you have strong as your outer tag and em as your inner tag, you'll have italics but no bold. To test: Before applying the patch... 1) Put and tags around some text in the opacnav, opac news, opacheader, or any other area of the opac where you can enter html text. 2) Look at the opac and notice that only the inner tag styles are being applied to the text Apply the patch 3) Refresh the opac (you may need to bypass or clear your browser cache for the new style to pick up) 4) Note that both the inner and outer and tags are being applied to the text (i.e. your text should be bold and italicized) --- koha-tmpl/opac-tmpl/prog/en/css/opac.css | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/koha-tmpl/opac-tmpl/prog/en/css/opac.css b/koha-tmpl/opac-tmpl/prog/en/css/opac.css index cdf7a4d..427755e 100644 --- a/koha-tmpl/opac-tmpl/prog/en/css/opac.css +++ b/koha-tmpl/opac-tmpl/prog/en/css/opac.css @@ -1573,6 +1573,11 @@ div.message { padding : 3px 5px; } +strong em, em strong { + font-weight: bold; + font-style: italic; +} + #opac-main-search #listsmenu a, #opac-main-search #listsmenu h4 { color : #000; font-weight : normal; -- 1.7.7.4