[Koha-bugs] [Bug 34262] Add styling to emphasize the "clear selected patrons" button

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Tue Jul 18 15:01:01 CEST 2023


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34262

--- Comment #3 from Owen Leonard <oleonard at myacpl.org> ---
If you'd like to customize the style of the message you could add some custom
CSS. By default it has this style:

#patron_search_selected {
        background-color: #fafdfa;
        border: 1px solid #408540;
        border-color: #93cb93 #d8ecd8 #d8ecd8 #93cb93;
        border-radius: 3px;
        color: #333;
        display: inline-block;
        font-size: 11px;
        line-height: 1.5;
        padding: 5px 10px;
        text-align: center;
        vertical-align: middle;
        white-space: nowrap;
}

For a more highlighted version you could put this (for example) in the
IntranetUserCSS system preference:

#patron_search_selected {
        background-color: #fffbc2;
        border: 1px solid #ff0c00;
        border-color: #ff0c00 #ecafaf #ecafaf #ff0c00;
        font-size: 13px;
        font-weight: bold;
}

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.


More information about the Koha-bugs mailing list