diff options
author | Rodney Ewing <ewing.rj@gmail.com> | 2013-08-09 11:38:55 -0700 |
---|---|---|
committer | Rodney Ewing <ewing.rj@gmail.com> | 2013-08-09 11:38:55 -0700 |
commit | 135dd5296b16a8612a787e8beca28ea805e32583 (patch) | |
tree | b7fbaeefc6b2633536d3c91b72581538f9bebed2 | |
parent | d7ecae5a4e8030915295b5c520d78971aad0f828 (diff) | |
download | mediagoblin-135dd5296b16a8612a787e8beca28ea805e32583.tar.lz mediagoblin-135dd5296b16a8612a787e8beca28ea805e32583.tar.xz mediagoblin-135dd5296b16a8612a787e8beca28ea805e32583.zip |
change dropdown button to <a> from <div> so that it is tabbable
-rw-r--r-- | mediagoblin/templates/mediagoblin/base.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mediagoblin/templates/mediagoblin/base.html b/mediagoblin/templates/mediagoblin/base.html index 1fc4467c..bbc77351 100644 --- a/mediagoblin/templates/mediagoblin/base.html +++ b/mediagoblin/templates/mediagoblin/base.html @@ -65,8 +65,8 @@ <a href="#notifications" class="notification-gem button_action" title="Notifications"> {{ notification_count }}</a> {% endif %} - <div class="button_action header_dropdown_down">▼</div> - <div class="button_action header_dropdown_up">▲</div> + <a href="#header" class="button_action header_dropdown_down">▼</a> + <a href="#no_header" class="button_action header_dropdown_up">▲</a> {% elif request.user and request.user.status == "needs_email_verification" %} {# the following link should only appear when verification is needed #} <a href="{{ request.urlgen('mediagoblin.user_pages.user_home', |