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.org | Assignee: | Chris Cormack <chris> |
Status: | NEW --- | QA Contact: | Testopia <testopia> |
Severity: | enhancement | ||
Priority: | P5 - low | ||
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: | ||
Circulation function: |
Description
Liz Rea
2015-11-06 03:10:24 UTC
Might be misunderstanding, but appears to be fixed. 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. Hi Owen, that makes sense, thanks! Should we reopen? (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. 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; } Hi Chris, could you add the change Owen suggested? |