From: Jason Stephenson Date: Sun, 1 Jul 2012 17:15:32 +0000 (-0400) Subject: Add A Note on CSS Styles to release notes. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=refs%2Fheads%2Fuser%2Fdyrcona%2Fadd-to-permanent-bookbag;p=working%2FEvergreen.git Add A Note on CSS Styles to release notes. Added a section to the add to permanent bookbag release notes explaining how one might want to add an overflow property to the .popmenu li:hover li a selector. Signed-off-by: Jason Stephenson --- diff --git a/docs/RELEASE_NOTES_NEXT/add-to-permanent-bookbag.txt b/docs/RELEASE_NOTES_NEXT/add-to-permanent-bookbag.txt index f3e795ae32..c586c62fbc 100644 --- a/docs/RELEASE_NOTES_NEXT/add-to-permanent-bookbag.txt +++ b/docs/RELEASE_NOTES_NEXT/add-to-permanent-bookbag.txt @@ -53,3 +53,15 @@ be used to add records from searches based on a current topic of interest. Changing the default list is so easy that users may want to do so when changing search topics in order to keep their results better organized. + +A Note on CSS Styles +~~~~~~~~~~~~~~~~~~~~ + +If a user has a bookbag with an overly long name, the end of it will +jut out past the right margin of the menu in FireFox and several other +browsers. To change this behavior, you may want to edit the `.popmenu +li:hover li a` css entry in `web/css/skin/default/opac/style.css` by +adding an `overflow` property. If you desire to have the longer names +clipped to the size ofthe menu then add `overlow: hidden`. If you +prefer to have a scroll bar for oversized entries, then add `overflow: +auto`.