diff options
author | Arthur Schreiber <schreiber.arthur@gmail.com> | 2012-04-14 01:25:01 +0200 |
---|---|---|
committer | Arthur Schreiber <schreiber.arthur@gmail.com> | 2012-04-14 12:38:12 +0200 |
commit | d9ba277ee1f175ef67e1e9358804d0727bf455ce (patch) | |
tree | e6614013cfec61ebff223cfd051755ea1eb767f7 | |
parent | c530543c1a2db47866f3b695f46b57b043c01d97 (diff) | |
download | gitlab-ce-d9ba277ee1f175ef67e1e9358804d0727bf455ce.tar.gz |
Make parent sha links nicer for merge commits.
-rw-r--r-- | app/assets/stylesheets/sections/commits.scss | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/assets/stylesheets/sections/commits.scss b/app/assets/stylesheets/sections/commits.scss index a24fa4d9fe6..60f43297c1b 100644 --- a/app/assets/stylesheets/sections/commits.scss +++ b/app/assets/stylesheets/sections/commits.scss @@ -1,8 +1,10 @@ .commit-head { @extend .well; + @extend .clearfix; padding: 14px; padding-bottom: 8px; + line-height: 24px; .browse-button { @extend .btn; @@ -23,6 +25,10 @@ margin-left: 10px } + &.merge-commit .sha-block { + clear: right; + } + .committer { padding-left: 32px; } |