| Summary: | News needs a Read More option | ||
|---|---|---|---|
| Product: | Koha | Reporter: | Christopher Brannon <cbrannon> |
| Component: | Tools | Assignee: | Galen Charlton <gmcharlt> |
| Status: | NEW --- | QA Contact: | Testopia <testopia> |
| Severity: | enhancement | ||
| Priority: | P5 - low | CC: | veron |
| Version: | unspecified | ||
| Hardware: | All | ||
| OS: | All | ||
| GIT URL: | Initiative type: | --- | |
| Sponsorship status: | --- | Comma delimited list of Sponsors: | |
| Crowdfunding goal: | 0 | Patch complexity: | --- |
| Documentation contact: | Documentation submission: | ||
| Text to go in the release notes: | Version(s) released in: | ||
| Circulation function: | |||
|
Description
Christopher Brannon
2014-10-17 21:01:22 UTC
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;
}
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
(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 |