Commit 7a311c23 authored by Phil Hughes's avatar Phil Hughes

Updated project list dropdown to use dropdown classes

parent 62067c5b
...@@ -81,8 +81,9 @@ ...@@ -81,8 +81,9 @@
&::before { &::before {
content: "\f00c"; content: "\f00c";
position: absolute; position: absolute;
left: 4px; left: 5px;
top: 8px; top: 50%;
margin-top: -7px;
font: normal normal normal 14px/1 FontAwesome; font: normal normal normal 14px/1 FontAwesome;
font-size: inherit; font-size: inherit;
text-rendering: auto; text-rendering: auto;
...@@ -94,28 +95,9 @@ ...@@ -94,28 +95,9 @@
} }
.dropdown-header { .dropdown-header {
padding-left: 10px; padding-left: 5px;
padding-right: 10px; padding-right: 5px;
color: $dropdown-header-color; color: $dropdown-header-color;
font-size: 13px; font-size: 13px;
line-height: 22px; line-height: 22px;
} }
.dropdown-with-checkmark {
li > .legend {
font-size: 13px;
color: $secondary-text;
margin-bottom: 5px;
}
li > a {
padding-left: 20px;
line-height: 28px;
i {
position: absolute;
left: 1px;
line-height: 28px;
}
}
}
...@@ -5,21 +5,18 @@ ...@@ -5,21 +5,18 @@
%span.light %span.light
= projects_sort_options_hash[@sort] = projects_sort_options_hash[@sort]
%b.caret %b.caret
%ul.dropdown-menu.dropdown-menu-align-right.dropdown-with-checkmark %ul.dropdown-menu.dropdown-menu-align-right.dropdown-menu-selectable
%li %li.dropdown-header
.legend Sort by Sort by
- projects_sort_options_hash.each do |value, title| - projects_sort_options_hash.each do |value, title|
%li %li
= link_to filter_projects_path(sort: value, archived: archived) do = link_to filter_projects_path(sort: value, archived: archived), class: ("is-active" if @sort == value) do
= icon('check') if @sort == value
= title = title
%li.divider %li.divider
%li %li
= link_to filter_projects_path(sort: @sort, archived: nil) do = link_to filter_projects_path(sort: @sort, archived: nil), class: ("is-active" unless params[:archived].present?) do
= icon('check') unless params[:archived].present?
Hide archived projects Hide archived projects
%li %li
= link_to filter_projects_path(sort: @sort, archived: true) do = link_to filter_projects_path(sort: @sort, archived: true), class: ("is-active" if params[:archived].present?) do
= icon('check') if params[:archived].present?
Show archived projects Show archived projects
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