From 138746e982c088a3ea43312b2a452fea524957ac Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 26 Feb 2013 10:51:20 +0100 Subject: [PATCH] [SIGNED-OFF] Bug 9711: Add css style for OPACPopupAuthorsSearch Bug 5888 introduces a new syspref OPACPopupAuthorsSearch. If enabled, a popup is displayed on the OPAC detail page. This development does not add the css for the ccsr theme. Test plan: Enable the OPACPopupAuthorsSearch. Check that the appearance is the same of prog and ccsr themes. Signed-off-by: Nicole C. Engard Tested on several authorities (authors, subjects, etc) works as expected --- koha-tmpl/opac-tmpl/ccsr/en/css/opac.css | 29 +++++++++++++++++++++++++++++ 1 files changed, 29 insertions(+), 0 deletions(-) diff --git a/koha-tmpl/opac-tmpl/ccsr/en/css/opac.css b/koha-tmpl/opac-tmpl/ccsr/en/css/opac.css index 90a838f..1560acb 100644 --- a/koha-tmpl/opac-tmpl/ccsr/en/css/opac.css +++ b/koha-tmpl/opac-tmpl/ccsr/en/css/opac.css @@ -2731,3 +2731,32 @@ a.reviewlink,a.reviewlink:visited { .idbresult img { padding-right: 6px; } + +.authorSearch { + position: absolute; + display: none; + z-index: 2; + background-color: white; + border: 1px solid black; + padding: 4px; +} +.authorSearch li { + list-style-type: none; +} +.authorSearch ul { + padding-left: 0px; +} +.subjectSearch { + position: absolute; + display: none; + z-index: 2; + background-color: white; + border: 1px solid black; + padding: 4px; +} +.subjectSearch li { + list-style-type: none; +} +.subjectSearch ul { + padding-left: 0px; +} -- 1.7.2.3