After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 683872 - missing states on git.gnome.org
missing states on git.gnome.org
Status: RESOLVED FIXED
Product: website
Classification: Infrastructure
Component: www.gnome.org
current
Other Linux
: Normal normal
: ---
Assigned To: GNOME Web maintainers
GNOME Web maintainers
Depends on:
Blocks:
 
 
Reported: 2012-09-12 13:15 UTC by Andreas Nilsson
Modified: 2013-10-10 13:37 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Patch fixing the highlighting hover effects on the links in the navigation bar at git.gnome.org (1.37 KB, patch)
2013-09-26 21:16 UTC, arpita
none Details | Review

Description Andreas Nilsson 2012-09-12 13:15:45 UTC
Copied off https://mail.gnome.org/archives/gnome-web-list/2012-September/msg00000.html

When you hover over a link on the navigation bar at gnome.org its gets highlighted and when you visit
a page a button like effect are present. Both features are missing from the git.gnome.org navigtion bar.

The code below implement the missing effects (and are copied from gnome.org).

#top_bar a:hover {
    background: none repeat scroll 0 0 rgba(255, 255, 255, 0.2);
}

#top_bar a:focus {
    background: none repeat scroll 0 0 rgba(255, 255, 255, 0.15);
}

#top_bar a:active, #top_bar li.current-menu-item a, #top_bar li.current-page-ancestor a {
    background: url("images/top_bar-item-bg.png") repeat-x scroll center top #1C2021;
    box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.4) inset, 0 1px 3px rgba(0, 0, 0, 0.4) inset;
}
Comment 1 arpita 2013-09-26 21:16:51 UTC
Created attachment 255886 [details] [review]
Patch fixing the highlighting hover effects on the links in the navigation bar at git.gnome.org
Comment 2 Andreas Nilsson 2013-10-10 13:13:51 UTC
Finally managed to get access to the testing site and was able to test this. Looks good!
Thanks for the patch!
Comment 3 Andreas Nilsson 2013-10-10 13:37:10 UTC
Fixed in master:
https://git.gnome.org/browse/git-web/commit/?id=711b226

Thanks for your bug fix!