summaryrefslogtreecommitdiff
path: root/app/views/issues
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-06-10 19:44:32 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-06-10 19:44:32 +0300
commit0afad135e79c3764c882f34d9498b37fecf8d294 (patch)
tree9e8bf9b357830fdccb03d5987926f4069592a04f /app/views/issues
parent1b49ae2e310db06b79808e7064be392a147f0be2 (diff)
downloadgitlab-ce-0afad135e79c3764c882f34d9498b37fecf8d294.tar.gz
Fix assign-to-me button align at issue form
Diffstat (limited to 'app/views/issues')
-rw-r--r--app/views/issues/_form.html.haml7
1 files changed, 5 insertions, 2 deletions
diff --git a/app/views/issues/_form.html.haml b/app/views/issues/_form.html.haml
index 936f9ead3ea..57460e623ab 100644
--- a/app/views/issues/_form.html.haml
+++ b/app/views/issues/_form.html.haml
@@ -20,8 +20,11 @@
%i.icon-user
Assign to
.input
- = f.select(:assignee_id, @project.users.alphabetically.collect {|p| [ p.name, p.id ] }, { include_blank: "Select a user" }, {class: 'chosen'})
- = link_to 'Assign to me', '#', class: 'btn btn-small assign-to-me-link'
+ .pull-left
+ = f.select(:assignee_id, @project.users.alphabetically.collect {|p| [ p.name, p.id ] }, { include_blank: "Select a user" }, {class: 'chosen'})
+ .pull-right
+ &nbsp;
+ = link_to 'Assign to me', '#', class: 'btn btn-small assign-to-me-link'
.issue_milestone.pull-left
= f.label :milestone_id do
%i.icon-time