Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
f3fa4472
Commit
f3fa4472
authored
Aug 10, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix issues update title selectboxes with zero width
parent
fb36355f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
14 deletions
+8
-14
app/assets/stylesheets/sections/issues.scss
app/assets/stylesheets/sections/issues.scss
+0
-7
app/assets/stylesheets/selects.scss
app/assets/stylesheets/selects.scss
+2
-0
app/views/projects/issues/_issues.html.haml
app/views/projects/issues/_issues.html.haml
+6
-7
No files found.
app/assets/stylesheets/sections/issues.scss
View file @
f3fa4472
...
@@ -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
;
}
}
}
}
}
...
...
app/assets/stylesheets/selects.scss
View file @
f3fa4472
...
@@ -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
);
...
...
app/views/projects/issues/_issues.html.haml
View file @
f3fa4472
...
@@ -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
...
...
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