summaryrefslogtreecommitdiff
path: root/app/views/import/fogbugz
diff options
context:
space:
mode:
authorPaul Slaughter <pslaughter@gitlab.com>2018-05-31 15:45:13 -0500
committerPaul Slaughter <pslaughter@gitlab.com>2018-05-31 15:45:13 -0500
commitd89db911210e981face87d782a8476a12ad46c9e (patch)
treedb3f5ab285e4564c8d537735f3a9e08e86571a68 /app/views/import/fogbugz
parentdf164bb9f10d3e89a9cc0121ee29252a5f12115d (diff)
downloadgitlab-ce-d89db911210e981face87d782a8476a12ad46c9e.tar.gz
Fix FogBugz import form col sizing
Diffstat (limited to 'app/views/import/fogbugz')
-rw-r--r--app/views/import/fogbugz/new.html.haml12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/views/import/fogbugz/new.html.haml b/app/views/import/fogbugz/new.html.haml
index d5a37095365..74d686b6703 100644
--- a/app/views/import/fogbugz/new.html.haml
+++ b/app/views/import/fogbugz/new.html.haml
@@ -11,16 +11,16 @@
In the next steps, you'll be able to map users and select the projects
you want to import.
.form-group.row
- = label_tag :uri, 'FogBugz URL', class: 'col-form-label col-sm-8'
- .col-sm-4
+ = label_tag :uri, 'FogBugz URL', class: 'col-form-label col-md-2'
+ .col-md-4
= text_field_tag :uri, nil, placeholder: 'https://mycompany.fogbugz.com', class: 'form-control'
.form-group.row
- = label_tag :email, 'FogBugz Email', class: 'col-form-label col-sm-8'
- .col-sm-4
+ = label_tag :email, 'FogBugz Email', class: 'col-form-label col-md-2'
+ .col-md-4
= text_field_tag :email, nil, class: 'form-control'
.form-group.row
- = label_tag :password, 'FogBugz Password', class: 'col-form-label col-sm-8'
- .col-sm-4
+ = label_tag :password, 'FogBugz Password', class: 'col-form-label col-md-2'
+ .col-md-4
= password_field_tag :password, nil, class: 'form-control'
.form-actions
= submit_tag 'Continue to the next step', class: 'btn btn-create'