diff options
author | Luke Bennett <lukeeeebennettplus@gmail.com> | 2016-09-24 19:17:05 +0100 |
---|---|---|
committer | Luke Bennett <lukeeeebennettplus@gmail.com> | 2016-09-29 20:37:34 +0100 |
commit | a095a3a694091ac9a7387e89e06f12c8ba80815c (patch) | |
tree | 8504625665fa2cdbd080e3aea3e15b8b9460469e /app/assets/stylesheets | |
parent | 640ab3072ff278c052ab0e2a5eaec69d684db753 (diff) | |
download | gitlab-ce-a095a3a694091ac9a7387e89e06f12c8ba80815c.tar.gz |
Removed blocks-first declaration that was added to fix coverage padding, moved the padding to a new coverage block declaration22529-build-sidebar-weird-padding
Review changes
Diffstat (limited to 'app/assets/stylesheets')
-rw-r--r-- | app/assets/stylesheets/pages/builds.scss | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/app/assets/stylesheets/pages/builds.scss b/app/assets/stylesheets/pages/builds.scss index a5a260d4c8f..194a39a8377 100644 --- a/app/assets/stylesheets/pages/builds.scss +++ b/app/assets/stylesheets/pages/builds.scss @@ -107,10 +107,14 @@ .block { width: 100%; - } - .block-first { - padding: 5px 16px 11px; + &.coverage { + padding: 0 16px 11px; + } + + .btn-group-justified { + margin-top: 5px; + } } .js-build-variable { @@ -214,6 +218,9 @@ .build-detail-row { margin-bottom: 5px; + &:last-of-type { + margin-bottom: 0; + } } .build-light-text { |