summaryrefslogtreecommitdiff
path: root/app/assets
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-05-18 17:58:22 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-05-18 17:58:22 +0300
commitf5f0ed55bd7bf7d034282c5b3e7f02ca725a4ffa (patch)
treea71f62ba4b8af746a38f135de8383e2a9c403b06 /app/assets
parent307a6ba57f20f7a0ac02bbf9f7a50edff04cf6e5 (diff)
parentf93190429743f66d2a085891d51d004b390b4491 (diff)
downloadgitlab-ce-f5f0ed55bd7bf7d034282c5b3e7f02ca725a4ffa.tar.gz
Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/javascripts/application.js.coffee4
-rw-r--r--app/assets/stylesheets/pages/projects.scss2
2 files changed, 3 insertions, 3 deletions
diff --git a/app/assets/javascripts/application.js.coffee b/app/assets/javascripts/application.js.coffee
index bb9da147018..caf18c0d860 100644
--- a/app/assets/javascripts/application.js.coffee
+++ b/app/assets/javascripts/application.js.coffee
@@ -140,8 +140,8 @@ $ ->
# Place the logo tooltip on the right when collapsed, bottom when expanded
$el.parents('header').hasClass('header-collapsed') and 'right' or 'bottom'
else
- # Otherwise use the data-placement attribute like normal
- $el.data('placement')
+ # Otherwise use the data-placement attribute, or 'bottom' if undefined
+ $el.data('placement') or 'bottom'
})
# Form submitter
diff --git a/app/assets/stylesheets/pages/projects.scss b/app/assets/stylesheets/pages/projects.scss
index 49e5aad1f67..16b9814a0fc 100644
--- a/app/assets/stylesheets/pages/projects.scss
+++ b/app/assets/stylesheets/pages/projects.scss
@@ -129,7 +129,7 @@
}
.option-descr {
- margin-left: 24px;
+ margin-left: 36px;
color: $gray;
}
}