summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnabel Gray <annabel.m.gray@gmail.com>2018-06-11 19:47:07 +0000
committerAnnabel Gray <annabel.m.gray@gmail.com>2018-06-11 19:47:07 +0000
commit1ef7f14a72f92f5a25b882b0f92cbadde82f5ffd (patch)
tree09e8c405b7a42d1ae94b608b5342ee229864eac7
parent493adfad16f3b9d09c60458bd13ae6de21651ca4 (diff)
parent2580e19812188415f6fee81cc789a0e814efaaad (diff)
downloadgitlab-ce-1ef7f14a72f92f5a25b882b0f92cbadde82f5ffd.tar.gz
Merge branch 'jivl-fix-padding-commit-info' into 'master'
fix padding in commit info Closes #47278 See merge request gitlab-org/gitlab-ce!19435
-rw-r--r--app/assets/stylesheets/bootstrap_migration.scss4
-rw-r--r--app/views/projects/commit/branches.html.haml2
2 files changed, 5 insertions, 1 deletions
diff --git a/app/assets/stylesheets/bootstrap_migration.scss b/app/assets/stylesheets/bootstrap_migration.scss
index e3c63ae5e1a..5e0770184af 100644
--- a/app/assets/stylesheets/bootstrap_migration.scss
+++ b/app/assets/stylesheets/bootstrap_migration.scss
@@ -209,6 +209,10 @@ table {
border-bottom: 1px solid $well-inner-border;
}
}
+
+ .badge.badge-gray {
+ background-color: $well-expand-item;
+ }
}
.card {
diff --git a/app/views/projects/commit/branches.html.haml b/app/views/projects/commit/branches.html.haml
index a91e31afc2b..0b8e5105bc0 100644
--- a/app/views/projects/commit/branches.html.haml
+++ b/app/views/projects/commit/branches.html.haml
@@ -6,7 +6,7 @@
- if @branches.any? || @tags.any? || @tags_limit_exceeded
%span
- = link_to "#", class: "js-details-expand label label-gray ref-name" do
+ = link_to "#", class: "js-details-expand badge badge-gray ref-name" do
= sprite_icon('ellipsis_h', size: 12, css_class: 'vertical-align-middle')
%span.js-details-content.hide
= commit_branches_links(@project, @branches)