[Bug 13110] New: News needs a Read More option
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13110 Bug ID: 13110 Summary: News needs a Read More option Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Tools Assignee: gmcharlt@gmail.com Reporter: cbrannon@cdalibrary.org QA Contact: testopia@bugs.koha-community.org It would be great if News allowed the insertion of a READ MORE tag/link so that if you have a lengthy article, it doesn't have to take up a lot of room on the Koha main page or in the main page of the OPAC. Christopher -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13110 Marc Véron <veron@veron.ch> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |veron@veron.ch --- Comment #1 from Marc Véron <veron@veron.ch> --- Hi Christopher, Maybe you could collaps / expand the articles using CSS. I played around with OPACUserCSS on current master (3.17.00.029) and found the following as a first draft: #news .newsitem { max-height: 40px !important; overflow:hidden; transition: max-height 10s ease-in; } #news .newsitem:hover { max-height: 500px !important; transition: max-height 5s ease-out; } -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13110 --- Comment #2 from Christopher Brannon <cbrannon@cdalibrary.org> --- Marc, Nice work around. I had to change to: .newsitem { max-height: 40px !important; overflow:hidden; transition: max-height 10s ease-in; } .newsitem:hover { max-height: 500px !important; transition: max-height 5s ease-out; } The #news ID doesn't work because the articles are numerated like "news32" Christopher -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13110 --- Comment #3 from Marc Véron <veron@veron.ch> --- (In reply to Christopher Brannon from comment #2)
The #news ID doesn't work because the articles are numerated like "news32"
I'm glad that it works. Which Koha version are you using? - The display of news is changed by Bug 12863 (Pushed to master). Marc -- You are receiving this mail because: You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org