Commit 29b719f3 by Christine Lytwynec

Merge pull request #10527 from edx/clytwynec/ac-230

Navigation dropdown link should be button 
parents 6a92d4cb c6f4afc9
...@@ -461,7 +461,7 @@ class AccountSettingsA11yTest(AccountSettingsTestMixin, WebAppTest): ...@@ -461,7 +461,7 @@ class AccountSettingsA11yTest(AccountSettingsTestMixin, WebAppTest):
self.visit_account_settings_page() self.visit_account_settings_page()
self.account_settings_page.a11y_audit.config.set_rules({ self.account_settings_page.a11y_audit.config.set_rules({
'ignore': [ 'ignore': [
'link-href', # TODO: AC-233, AC-230 'link-href', # TODO: AC-233, AC-238
'skip-link', # TODO: AC-179 'skip-link', # TODO: AC-179
], ],
}) })
......
...@@ -236,7 +236,7 @@ class LmsDashboardA11yTest(BaseLmsDashboardTest): ...@@ -236,7 +236,7 @@ class LmsDashboardA11yTest(BaseLmsDashboardTest):
self.dashboard_page.a11y_audit.config.set_rules({ self.dashboard_page.a11y_audit.config.set_rules({
"ignore": [ "ignore": [
'skip-link', # TODO: AC-179 'skip-link', # TODO: AC-179
'link-href', # TODO: AC-230 'link-href', # TODO: AC-238, AC-179
], ],
}) })
......
$(document).ready(function () { $(document).ready(function () {
'use strict';
// define variables for code legibility // define variables for code legibility
var dropdownMenuToggle = $('a.dropdown'); var dropdownMenuToggle = $('.dropdown');
var dropdownMenu = $('ul.dropdown-menu'); var dropdownMenu = $('.dropdown-menu');
var menuItems = dropdownMenu.find('a'); var menuItems = dropdownMenu.find('a');
// bind menu toggle click for later use // bind menu toggle click for later use
dropdownMenuToggle.toggle(function() { dropdownMenuToggle.toggle(function() {
dropdownMenu.addClass("expanded").find('a').first().focus(); dropdownMenu.addClass("expanded").find('a').first().focus();
...@@ -12,7 +14,7 @@ $(document).ready(function () { ...@@ -12,7 +14,7 @@ $(document).ready(function () {
dropdownMenu.removeClass("expanded"); dropdownMenu.removeClass("expanded");
dropdownMenuToggle.removeClass("active").attr("aria-expanded", "false").focus(); dropdownMenuToggle.removeClass("active").attr("aria-expanded", "false").focus();
}); });
//catch keypresses when focused on dropdownMenuToggle (we only care about spacebar keypresses here) //catch keypresses when focused on dropdownMenuToggle (we only care about spacebar keypresses here)
dropdownMenuToggle.on('keydown', function(event){ dropdownMenuToggle.on('keydown', function(event){
// if space key pressed // if space key pressed
...@@ -21,12 +23,12 @@ $(document).ready(function () { ...@@ -21,12 +23,12 @@ $(document).ready(function () {
event.preventDefault(); event.preventDefault();
} }
}); });
//catch keypresses when inside dropdownMenu (we want to catch spacebar; escape; up arrow or shift+tab; and down arrow or tab) //catch keypresses when inside dropdownMenu (we want to catch spacebar; escape; up arrow or shift+tab; and down arrow or tab)
dropdownMenu.on('keydown', function(event){ dropdownMenu.on('keydown', function(event){
catchKeyPress($(this), event); catchKeyPress($(this), event);
}); });
function catchKeyPress(object, event) { function catchKeyPress(object, event) {
// get currently focused item // get currently focused item
var focusedItem = jQuery(':focus'); var focusedItem = jQuery(':focus');
...@@ -36,22 +38,22 @@ $(document).ready(function () { ...@@ -36,22 +38,22 @@ $(document).ready(function () {
// get the index of the currently focused item // get the index of the currently focused item
var focusedItemIndex = menuItems.index(focusedItem); var focusedItemIndex = menuItems.index(focusedItem);
// var to store next focused item index // var to store next focused item index
var itemToFocusIndex; var itemToFocusIndex;
// if space key pressed // if space key pressed
if ( event.which == 32) { if ( event.which == 32) {
dropdownMenuToggle.click(); dropdownMenuToggle.click();
event.preventDefault(); event.preventDefault();
} }
// if escape key pressed // if escape key pressed
if (event.which == 27) { if (event.which == 27) {
dropdownMenuToggle.click(); dropdownMenuToggle.click();
event.preventDefault(); event.preventDefault();
} }
// if up arrow key pressed or shift+tab // if up arrow key pressed or shift+tab
if (event.which == 38 || (event.which == 9 && event.shiftKey)) { if (event.which == 38 || (event.which == 9 && event.shiftKey)) {
// if first item go to last // if first item go to last
...@@ -63,7 +65,7 @@ $(document).ready(function () { ...@@ -63,7 +65,7 @@ $(document).ready(function () {
} }
event.preventDefault(); event.preventDefault();
} }
// if down arrow key pressed or tab key // if down arrow key pressed or tab key
if (event.which == 40 || event.which == 9) { if (event.which == 40 || event.which == 9) {
// if last item go to first // if last item go to first
...@@ -76,4 +78,4 @@ $(document).ready(function () { ...@@ -76,4 +78,4 @@ $(document).ready(function () {
event.preventDefault(); event.preventDefault();
} }
} }
}); });
\ No newline at end of file
...@@ -191,6 +191,16 @@ header.global { ...@@ -191,6 +191,16 @@ header.global {
} }
} }
.dropdown {
font-size: $body-font-size;
padding: 0 ($baseline/2);
color: $base-font-color;
border: none;
background: $white;
box-shadow: none;
text-shadow: none;
}
.dropdown-menu { .dropdown-menu {
background: $white; background: $white;
border-radius: 4px; border-radius: 4px;
...@@ -486,7 +496,7 @@ header.global-new { ...@@ -486,7 +496,7 @@ header.global-new {
} }
} }
} }
a.user-link { a.user-link {
@include padding(5px, 2px, 10px, 10px); @include padding(5px, 2px, 10px, 10px);
position: relative; position: relative;
text-transform: none; text-transform: none;
...@@ -534,6 +544,16 @@ header.global-new { ...@@ -534,6 +544,16 @@ header.global-new {
} }
} }
.dropdown {
font-size: $body-font-size;
padding: 0 ($baseline/2);
color: $base-font-color;
border: none;
background: $white;
box-shadow: none;
text-shadow: none;
}
.dropdown-menu { .dropdown-menu {
background: $border-color-4; background: $border-color-4;
border-radius: 4px; border-radius: 4px;
......
...@@ -83,7 +83,7 @@ site_status_msg = get_site_status_msg(course_id) ...@@ -83,7 +83,7 @@ site_status_msg = get_site_status_msg(course_id)
</a> </a>
</li> </li>
<li class="primary"> <li class="primary">
<a href="#" class="dropdown" aria-haspopup="true" aria-expanded="false"><span class="sr">${_("More options dropdown")}</span> &#9662;</a> <button class="dropdown" aria-haspopup="true" aria-expanded="false"><span class="sr">${_("More options dropdown")}</span> &#9662;</button>
<ul class="dropdown-menu" aria-label="More Options" role="menu"> <ul class="dropdown-menu" aria-label="More Options" role="menu">
<%block name="navigation_dropdown_menu_links" > <%block name="navigation_dropdown_menu_links" >
<li><a href="${reverse('dashboard')}">${_("Dashboard")}</a></li> <li><a href="${reverse('dashboard')}">${_("Dashboard")}</a></li>
......
...@@ -86,7 +86,7 @@ site_status_msg = get_site_status_msg(course_id) ...@@ -86,7 +86,7 @@ site_status_msg = get_site_status_msg(course_id)
</a> </a>
</li> </li>
<li class="primary"> <li class="primary">
<a href="#" class="dropdown" aria-haspopup="true" aria-expanded="false"><span class="sr">${_("More options dropdown")}</span><i class="fa fa-sort-desc" aria-hidden="true"></i></a> <button class="dropdown" aria-haspopup="true" aria-expanded="false"><span class="sr">${_("More options dropdown")}</span><span class="fa fa-sort-desc" aria-hidden="true"></span></button>
<ul class="dropdown-menu" aria-label="More Options" role="menu"> <ul class="dropdown-menu" aria-label="More Options" role="menu">
<%block name="navigation_dropdown_menu_links" > <%block name="navigation_dropdown_menu_links" >
<li><a href="${reverse('dashboard')}">${_("Dashboard")}</a></li> <li><a href="${reverse('dashboard')}">${_("Dashboard")}</a></li>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment