diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2012-11-04 23:16:21 -0200 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2012-11-04 23:28:53 -0200 |
commit | 3f705b651954e98456ecad1fecc6052301c39ab9 (patch) | |
tree | 74973e39705c4faeecaea35c35e1f6bf1d8b3af1 /guides | |
parent | 5e6bee112a7d590cbc51934b768f9632814726ce (diff) | |
download | rails-3f705b651954e98456ecad1fecc6052301c39ab9.tar.gz rails-3f705b651954e98456ecad1fecc6052301c39ab9.tar.bz2 rails-3f705b651954e98456ecad1fecc6052301c39ab9.zip |
Restore index link states to the way they are in current guide
Current stable guides show the "Guides Index" links without underline,
just showing it when it's hovered. This restores the same functionality
for edge guides.
Also remove annoying pointer cursor while accessing guides index,
restoring previously functionality: now the pointer cursor only appears
when hovering a link.
Closes #8107 [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/assets/stylesheets/main.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/assets/stylesheets/main.css b/guides/assets/stylesheets/main.css index 9f5e101d1c..759c6d9883 100644 --- a/guides/assets/stylesheets/main.css +++ b/guides/assets/stylesheets/main.css @@ -313,7 +313,6 @@ a, a:link, a:visited { background: #980905; position: relative; color: white; - cursor: pointer; } .guides-index .guides-index-item { @@ -408,7 +407,8 @@ a, a:link, a:visited { padding: 0; } #guides dt {padding:0; margin: 0.5em 0 0;} -#guides a {color: #FFF; background: none !important;} +#guides a {color: #FFF; background: none !important; text-decoration: none;} +#guides a:hover {text-decoration: underline;} #guides .L, #guides .R {float: left; width: 50%; margin: 0; padding: 0;} #guides .R {float: right;} #guides hr { |