Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
d167a8f1aed4
Commit
f3fa4472
authored
Aug 10, 2013
by
Dmitriy Zaporozhets
Browse files
Fix issues update title selectboxes with zero width
parent
8aa9fde83779
Changes
3
Hide whitespace changes
Inline
Side-by-side
app/assets/stylesheets/sections/issues.scss
View file @
d167a8f1
...
...
@@ -94,13 +94,6 @@ input.check_all_issues {
.update_selected_issues
{
margin-left
:
4px
;
}
.update_issues_text
{
padding
:
5px
;
line-height
:
28px
;
float
:
left
;
color
:
#479
;
}
}
}
...
...
app/assets/stylesheets/selects.scss
View file @
d167a8f1
...
...
@@ -60,6 +60,8 @@
/** Fix for Search Dropdown Border **/
.chosen-container
{
min-width
:
100px
;
.chosen-search
{
input
:focus
{
@include
box-shadow
(
none
);
...
...
app/views/projects/issues/_issues.html.haml
View file @
d167a8f1
...
...
@@ -4,13 +4,12 @@
.clearfix
.issues_bulk_update.hide
=
form_tag
bulk_update_project_issues_path
(
@project
),
method: :post
do
%span
.update_issues_text
Update selected issues with
.left
=
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[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
:status
,
params
[
:status
]
%span
Update selected issues with
=
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[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
:status
,
params
[
:status
]
=
button_tag
"Save"
,
class:
"btn update_selected_issues btn-small btn-save"
.issues-filters
%span
Filter by
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment