diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2021-04-28 21:10:01 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2021-04-28 21:10:01 +0000 |
commit | 66e86bca7a31391e8ecf1ef84c7915ec70110c47 (patch) | |
tree | e07d28b1de6729832f38d1bcec908cebed6b7063 /app/views/import/shared | |
parent | 52e32e255f7d868c4ec952a201bb8813b5e03703 (diff) | |
download | gitlab-ce-66e86bca7a31391e8ecf1ef84c7915ec70110c47.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/views/import/shared')
-rw-r--r-- | app/views/import/shared/_new_project_form.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/import/shared/_new_project_form.html.haml b/app/views/import/shared/_new_project_form.html.haml index 561c14dc68a..7de8b0ee10f 100644 --- a/app/views/import/shared/_new_project_form.html.haml +++ b/app/views/import/shared/_new_project_form.html.haml @@ -1,7 +1,7 @@ .row .form-group.project-name.col-sm-12 = label_tag :name, _('Project name'), class: 'label-bold' - = text_field_tag :name, @name, placeholder: "My awesome project", class: "js-project-name form-control input-lg", autofocus: true, required: true, aria: { required: true } + = text_field_tag :name, @name, placeholder: "My awesome project", class: "js-project-name form-control gl-form-input input-lg", autofocus: true, required: true, aria: { required: true } .form-group.col-12.col-sm-6 = label_tag :namespace_id, _('Project URL'), class: 'label-bold' .form-group @@ -18,4 +18,4 @@ = hidden_field_tag :namespace_id, current_user.namespace_id .form-group.col-12.col-sm-6.project-path = label_tag :path, _('Project slug'), class: 'label-bold' - = text_field_tag :path, @path, placeholder: "my-awesome-project", class: "js-path-name form-control", required: true, aria: { required: true } + = text_field_tag :path, @path, placeholder: "my-awesome-project", class: "js-path-name form-control gl-form-input", required: true, aria: { required: true } |