diff options
author | Unknwon <u@gogs.io> | 2016-02-01 20:55:12 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-02-01 20:55:12 -0500 |
commit | 1c74612b3c025282d4731880575922c797813ca7 (patch) | |
tree | ead1abc421a4939ff19db92f1a2a7c16e08eb4b6 /public | |
parent | d3ba2466932aa40b549a563c69c60905a30536b8 (diff) | |
download | gitea-1c74612b3c025282d4731880575922c797813ca7.tar.gz gitea-1c74612b3c025282d4731880575922c797813ca7.zip |
Minor fix for #2444
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 { |