summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Ho <clemmakesapps@gmail.com>2018-06-13 21:13:56 +0000
committerClement Ho <clemmakesapps@gmail.com>2018-06-13 21:13:56 +0000
commit810de209af8430ef3f3e9ee4d818496576b2e66e (patch)
tree717f042c909f23f6a2fb863b6925244fb535f976
parent7cf571e95550b3c14eb971ea165a8930b809e1d7 (diff)
parent8323eb5f1f61ae6378d0d3fa781bd966a1e2690e (diff)
downloadgitlab-ce-810de209af8430ef3f3e9ee4d818496576b2e66e.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
-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