Bug 20925

Summary: Changing font color for pipes between list items in #moresearch
Product: Koha Reporter: Kyle M Hall <kyle>
Component: Architecture, internals, and plumbingAssignee: Kyle M Hall <kyle>
Status: CLOSED WORKSFORME QA Contact: Testopia <testopia>
Severity: enhancement    
Priority: P5 - low CC: katrin.fischer
Version: Main   
Hardware: All   
OS: All   
Change sponsored?: --- Patch complexity: ---
Documentation contact: Documentation submission:
Text to go in the release notes:
Version(s) released in:

Description Kyle M Hall 2018-06-13 04:00:12 UTC
Work to be done:
1 - Add a new system preference "MoreSearches"
2 - Append the contents of this syspref to the auto generated links in Koha
Comment 1 Katrin Fischer 2018-06-18 21:45:34 UTC
*** Bug 20926 has been marked as a duplicate of this bug. ***
Comment 2 Katrin Fischer 2018-06-18 21:46:19 UTC
Hi Kyle, I don't understand this one, can you please explain?
Why not use CSS if this is just about changing color on something?
Comment 3 Katrin Fischer 2018-06-18 21:50:27 UTC
Actually, you can already change the color with CSS. Here are the relevant statements:

#moresearches li::after {
    content: " | ";
    color: red;
}