Commit 91c215f9 authored by Mike Greiling's avatar Mike Greiling

make projects dropdown accessible

parent 1c4e8663
...@@ -160,11 +160,15 @@ header { ...@@ -160,11 +160,15 @@ header {
} }
.dropdown-toggle-caret { .dropdown-toggle-caret {
color: $gl-text-color;
border: transparent;
background: transparent;
position: relative; position: relative;
top: -2px; top: -2px;
width: 12px; width: 12px;
line-height: 12px; line-height: 12px;
margin-left: 5px; margin-left: 5px;
padding: 0;
font-size: 10px; font-size: 10px;
text-align: center; text-align: center;
cursor: pointer; cursor: pointer;
......
...@@ -61,7 +61,9 @@ module ProjectsHelper ...@@ -61,7 +61,9 @@ module ProjectsHelper
project_link = link_to simple_sanitize(project.name), project_path(project), { class: "project-item-select-holder" } project_link = link_to simple_sanitize(project.name), project_path(project), { class: "project-item-select-holder" }
if current_user if current_user
project_link << icon("chevron-down", class: "dropdown-toggle-caret js-projects-dropdown-toggle", aria: { label: "Toggle switch project dropdown" }, data: { target: ".js-dropdown-menu-projects", toggle: "dropdown" }) project_link << button_tag(type: 'button', class: "dropdown-toggle-caret js-projects-dropdown-toggle", aria: { label: "Toggle switch project dropdown" }, data: { target: ".js-dropdown-menu-projects", toggle: "dropdown" }) do
icon("chevron-down")
end
end end
full_title = "#{namespace_link} / #{project_link}".html_safe full_title = "#{namespace_link} / #{project_link}".html_safe
......
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