Commit f3fa4472 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Fix issues update title selectboxes with zero width

parent fb36355f
...@@ -94,13 +94,6 @@ input.check_all_issues { ...@@ -94,13 +94,6 @@ input.check_all_issues {
.update_selected_issues { .update_selected_issues {
margin-left: 4px; margin-left: 4px;
} }
.update_issues_text {
padding: 5px;
line-height: 28px;
float: left;
color: #479;
}
} }
} }
......
...@@ -60,6 +60,8 @@ ...@@ -60,6 +60,8 @@
/** Fix for Search Dropdown Border **/ /** Fix for Search Dropdown Border **/
.chosen-container { .chosen-container {
min-width: 100px;
.chosen-search { .chosen-search {
input:focus { input:focus {
@include box-shadow(none); @include box-shadow(none);
......
...@@ -4,13 +4,12 @@ ...@@ -4,13 +4,12 @@
.clearfix .clearfix
.issues_bulk_update.hide .issues_bulk_update.hide
= form_tag bulk_update_project_issues_path(@project), method: :post do = form_tag bulk_update_project_issues_path(@project), method: :post do
%span.update_issues_text Update selected issues with   %span Update selected issues with  
.left = select_tag('update[status]', options_for_select(['open', 'closed']), prompt: "Status")
= select_tag('update[status]', options_for_select(['open', 'closed']), prompt: "Status") = select_tag('update[assignee_id]', options_from_collection_for_select(@project.team.members, "id", "name", params[:assignee_id]), prompt: "Assignee")
= select_tag('update[assignee_id]', options_from_collection_for_select(@project.team.members, "id", "name", params[:assignee_id]), prompt: "Assignee") = select_tag('update[milestone_id]', options_from_collection_for_select(issues_active_milestones, "id", "title", params[:milestone_id]), prompt: "Milestone")
= select_tag('update[milestone_id]', options_from_collection_for_select(issues_active_milestones, "id", "title", params[:milestone_id]), prompt: "Milestone") = hidden_field_tag 'update[issues_ids]', []
= hidden_field_tag 'update[issues_ids]', [] = hidden_field_tag :status, params[:status]
= hidden_field_tag :status, params[:status]
= button_tag "Save", class: "btn update_selected_issues btn-small btn-save" = button_tag "Save", class: "btn update_selected_issues btn-small btn-save"
.issues-filters .issues-filters
%span Filter by %span Filter by
......
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