summaryrefslogtreecommitdiff
path: root/app/views
diff options
context:
space:
mode:
authorClement Ho <clemmakesapps@gmail.com>2018-06-13 21:13:56 +0000
committerFilipa Lacerda <filipa@gitlab.com>2018-06-14 12:47:30 +0100
commit83adcb74bc722dde7de215d3f39f4150f5061e96 (patch)
tree3f0eb3174cff3b650ad0d1bd21256135ca12f6b0 /app/views
parent2f3b69f34162d94f38452591d3ad7c0b0e4a7434 (diff)
downloadgitlab-ce-83adcb74bc722dde7de215d3f39f4150f5061e96.tar.gz
Merge branch 'jivl-fix-repository-instruction-wrapping-text' into 'master'
Remove card class from the git-empty containers Closes #47847 See merge request gitlab-org/gitlab-ce!19785
Diffstat (limited to 'app/views')
-rw-r--r--app/views/projects/empty.html.haml8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/projects/empty.html.haml b/app/views/projects/empty.html.haml
index bf6fc8af12d..69753427d17 100644
--- a/app/views/projects/empty.html.haml
+++ b/app/views/projects/empty.html.haml
@@ -44,14 +44,14 @@
.git-empty
%fieldset
%h5 Git global setup
- %pre.card.bg-light
+ %pre.bg-light
:preserve
git config --global user.name "#{h git_user_name}"
git config --global user.email "#{h git_user_email}"
%fieldset
%h5 Create a new repository
- %pre.card.bg-light
+ %pre.bg-light
:preserve
git clone #{ content_tag(:span, default_url_to_repo, class: 'clone')}
cd #{h @project.path}
@@ -64,7 +64,7 @@
%fieldset
%h5 Existing folder
- %pre.card.bg-light
+ %pre.bg-light
:preserve
cd existing_folder
git init
@@ -77,7 +77,7 @@
%fieldset
%h5 Existing Git repository
- %pre.card.bg-light
+ %pre.bg-light
:preserve
cd existing_repo
git remote rename origin old-origin