summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose <jvargas@gitlab.com>2018-06-13 15:41:53 -0500
committerJose <jvargas@gitlab.com>2018-06-13 15:41:53 -0500
commit8323eb5f1f61ae6378d0d3fa781bd966a1e2690e (patch)
treef2353dfc2dfb144a06c9366ad61b898f14659e3f
parent1175e23bcc03634acee4b3c57fcf2a2496bf038c (diff)
downloadgitlab-ce-8323eb5f1f61ae6378d0d3fa781bd966a1e2690e.tar.gz
Remove card class from the git-empty containers
-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