Skip to content
Snippets Groups Projects
Commit 70496fe5 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Improve UI for issues filters

parent c1c93f4f
No related branches found
No related tags found
1 merge request!8686add "Uplaod" and "Replace" functionality
.filter-item {
margin-right: 15px;
}
.issues-state-filters {
li.active a,
li.active a:hover {
background: #f5f5f5;
border-bottom: 1px solid #f5f5f5 !important;
}
}
.issues-details-filters {
font-size: 13px;
background: #f5f5f5;
margin: -10px 0;
padding: 10px 15px;
margin-top: -15px;
border-left: 1px solid #DDD;
border-right: 1px solid #DDD;
.btn {
font-size: 13px;
}
}
Loading
Loading
@@ -45,11 +45,3 @@
 
.btn { font-size: 13px; }
}
.filter-item {
margin-right: 15px;
> span {
margin-right: 4px;
}
}
Loading
Loading
@@ -41,12 +41,9 @@
}
 
.check-all-holder {
height: 36px;
line-height: 36px;
float: left;
margin-right: 12px;
padding: 6px 15px;
border: 1px solid #ccc;
@include border-radius(4px);
margin-right: 15px;
}
 
.issues_content {
Loading
Loading
@@ -73,7 +70,7 @@
.issues-filters,
.issues_bulk_update {
select, .select2-container {
width: 140px !important;
width: 150px !important;
display: inline-block;
}
}
Loading
Loading
Loading
Loading
@@ -49,7 +49,6 @@ module LabelsHelper
end
 
def project_labels_options(project)
options_for_select([['Any', nil]]) +
options_from_collection_for_select(project.labels, 'name', 'name', params[:label_name])
options_from_collection_for_select(project.labels, 'name', 'name', params[:label_name])
end
end
Loading
Loading
@@ -28,7 +28,6 @@ module MilestonesHelper
Milestone.where(project_id: @projects)
end.active
 
options_for_select([['Any', nil]]) +
options_from_collection_for_select(milestones, 'id', 'title', params[:milestone_id])
options_from_collection_for_select(milestones, 'id', 'title', params[:milestone_id])
end
end
Loading
Loading
@@ -14,7 +14,7 @@
%i.fa.fa-compass
All
 
%div
.issues-details-filters
= form_tag page_filter_path(without: [:assignee_id, :author_id, :milestone_id, :label_name]), method: :get, class: 'filter-form' do
- if controller.controller_name == 'issues'
.check-all-holder
Loading
Loading
@@ -23,35 +23,19 @@
disabled: !can?(current_user, :modify_issue, @project)
.issues-other-filters
.filter-item.inline
%span.light
%i.fa.fa-user
Assignee
%strong
= users_select_tag(:assignee_id, selected: params[:assignee_id],
placeholder: 'Any', class: 'trigger-submit', any_user: true, null_user: true)
= users_select_tag(:assignee_id, selected: params[:assignee_id],
placeholder: 'Assignee', class: 'trigger-submit', any_user: true, null_user: true)
 
.filter-item.inline
%span.light
%i.fa.fa-user
Author
%strong
= users_select_tag(:author_id, selected: params[:author_id],
placeholder: 'Any', class: 'trigger-submit', any_user: true)
= users_select_tag(:author_id, selected: params[:author_id],
placeholder: 'Author', class: 'trigger-submit', any_user: true)
 
.filter-item.inline
%span.light
%i.fa.fa-clock-o
Milestone
%strong
= select_tag('milestone_id', projects_milestones_options, class: "select2 trigger-submit")
.filter-item.inline.milestone-filter
= select_tag('milestone_id', projects_milestones_options, class: "select2 trigger-submit", prompt: 'Milestone')
 
- if @project
.filter-item.inline
%span.light
%i.fa.fa-tag
Label
%strong
= select_tag('label_name', project_labels_options(@project), class: "select2 trigger-submit")
.filter-item.inline.labels-filter
= select_tag('label_name', project_labels_options(@project), class: "select2 trigger-submit", prompt: 'Label')
 
.pull-right
= render 'shared/sort_dropdown'
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment