diff options
author | Cirno the Strongest <1447794+CirnoT@users.noreply.github.com> | 2020-05-24 00:05:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-24 01:05:20 +0300 |
commit | ac3c4677707b7cec3faa42fbf8b5417be193a0ac (patch) | |
tree | 185ea7f7fabad9a346a4507272371cd87dbab790 /web_src | |
parent | 31df012968bd0acb3ed6748c7bf0f99d8ecc4031 (diff) | |
download | gitea-ac3c4677707b7cec3faa42fbf8b5417be193a0ac.tar.gz gitea-ac3c4677707b7cec3faa42fbf8b5417be193a0ac.zip |
Fix styling and padding for commit list on PR view (#11588)
* Fix styling and padding for commit list on PR view
* fix bold on author
Diffstat (limited to 'web_src')
-rw-r--r-- | web_src/less/_repository.less | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/web_src/less/_repository.less b/web_src/less/_repository.less index b7b0400975..2328690b0b 100644 --- a/web_src/less/_repository.less +++ b/web_src/less/_repository.less @@ -751,11 +751,11 @@ } } - &:first-child { + &:first-child:not(.commit) { padding-top: 0 !important; } - &:last-child { + &:last-child:not(.commit) { padding-bottom: 0 !important; } @@ -807,8 +807,9 @@ line-height: 30px; } - &.event.small-line-spacing { - padding: 2px 0 0 15px; + &.commits-list { + padding-left: 15px; + padding-top: 0; } &.event > .commit-status-link { |