Bug 15145

Summary: Fix hover state on bugzilla theme header so it doesn't jump on hover
Product: Koha Reporter: Liz Rea <liz>
Component: bugs.koha-community.orgAssignee: Chris Cormack <chris>
Status: NEW --- QA Contact: Testopia <testopia>
Severity: enhancement    
Priority: P5 - low CC: katrin.fischer
Version: unspecified   
Hardware: All   
OS: All   
Change sponsored?: --- Patch complexity: ---
Documentation contact: Documentation submission:
Text to go in the release notes:
Version(s) released in:

Description Liz Rea 2015-11-06 03:10:24 UTC
The new theme is very cheerful, it would be nice if the header didn't jump when you hovered over the header text.

Also possibly consider setting the fonts from serif to Arial, Helvetica, sans-serif in the bugzilla theme.
Comment 1 Katrin Fischer 2020-01-08 19:55:47 UTC
Might be misunderstanding, but appears to be fixed.
Comment 2 Owen Leonard 2020-01-09 13:11:23 UTC
I think this isn't fixed, but I'll try to get Liz's feedback today on IRC. If your "skin" setting is "koha" (or if you're not logged in) the links in the header are bold on hover. When the text goes bold the other links jump around because the width changed.

Regarding the fonts: It looks like the based font declaration is "Verdana,serif" which means that if your system doesn't have Verdana (originally a Windows-only font) you'll get generic serif which is unpleasant.
Comment 3 Katrin Fischer 2020-01-09 13:21:09 UTC
Hi Owen, that makes sense, thanks! Should we reopen?
Comment 4 Owen Leonard 2020-01-09 13:37:35 UTC
(In reply to Katrin Fischer from comment #3)
> Hi Owen, that makes sense, thanks! Should we reopen?

If it makes sense to you to I'll go ahead and reopen.
Comment 5 Owen Leonard 2020-01-09 13:58:16 UTC
Based on the compiled CSS it looks like there is a custom Koha skin at skins/contrib/koha/bug.css

If that's right, then I suggest adding this to that file:

body {
    font-family: Arial, Helvetica, sans-serif;
}

.links a:hover {
    color: #FFC;
    font-weight: normal;
}
Comment 6 Katrin Fischer 2020-05-23 12:12:23 UTC
Hi Chris, could you add the change Owen suggested?