diff options
Diffstat (limited to 'public')
-rwxr-xr-x | public/css/gogs.css | 4 | ||||
-rw-r--r-- | public/less/_repository.less | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/public/css/gogs.css b/public/css/gogs.css index ac9f704d2c..b3498d4b68 100755 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -1450,6 +1450,10 @@ footer .container .links > *:first-child { .repository.view.issue .ui.segment.metas { margin-top: -3px; } +.repository.view.issue .ui.participants img { + margin-top: 5px; + margin-right: 5px; +} .repository .comment.form .ui.comments { margin-top: -12px; max-width: 100%; diff --git a/public/less/_repository.less b/public/less/_repository.less index 7b479ba70e..4360f3d39f 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -460,6 +460,13 @@ .ui.segment.metas { margin-top: -3px; } + + .ui.participants { + img { + margin-top: 5px; + margin-right: 5px; + } + } } .comment.form { .ui.comments { |