Browse Source

Fix avatar offset on PR/issue timeline view (#13753)

* Fix avatar offset on PR/issue timeline view

* Apply suggestions from code review

Co-authored-by: silverwind <me@silverwind.io>

Co-authored-by: silverwind <me@silverwind.io>
tags/v1.15.0-dev
Cirno the Strongest GitHub 4 years ago
parent
commit
ecb94418a8
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      web_src/less/_repository.less

+ 6
- 2
web_src/less/_repository.less View File

@@ -837,8 +837,6 @@
width: 20px; width: 20px;
height: 20px; height: 20px;
margin-right: .5rem; margin-right: .5rem;
position: relative;
top: -2px;
} }


&:first-child:not(.commit) { &:first-child:not(.commit) {
@@ -894,6 +892,12 @@
.singular-commit { .singular-commit {
line-height: 34px; /* this must be same as .badge height, to avoid overflow */ line-height: 34px; /* this must be same as .badge height, to avoid overflow */


> .avatar.image,
> .avatar.image img {
position: relative;
top: -2px;
}

.shabox { .shabox {
.sha.label { .sha.label {
margin: 0; margin: 0;


Loading…
Cancel
Save