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 <nengard@bywatersolutions.com> Tested on several authorities (authors, subjects, etc) works as expected Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de> Test plan: 1) Switch to CCSR theme 2) Turn off XSLT views (leaving prefs empty) 3) Turn on OPACPopupAuthorsSearch > Confirm layout is ok/broken in OPAC 4) Switch back to prog theme > Confirm layout is ok/broken in OPAC 5) Switch off OPACPopupAuthorsSearch > Confirm layout is ok/broken in OPAC 6) Switch back to CCSR > Confirm layout is ok/broken in OPAC Done. Note: Feature only works with normal view (no XSLT) Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
This commit is contained in:
parent
bbbc5db799
commit
04c56e00c8
1 changed files with 29 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue