diff options
Diffstat (limited to 'public')
-rw-r--r-- | public/css/gogs.css | 5 | ||||
-rw-r--r-- | public/less/_repository.less | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/public/css/gogs.css b/public/css/gogs.css index 23da755aa2..016ea7b96a 100644 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -1477,7 +1477,7 @@ footer .container .links > *:first-child { background-color: #fff; } .repository.view.issue .comment-list .comment .content > .bottom.segment a:before { - content: ""; + content: ' '; display: inline-block; height: 100%; vertical-align: middle; @@ -1601,6 +1601,9 @@ footer .container .links > *:first-child { .repository .label.list .item a.open-issues { margin-right: 30px; } +.repository .label.list .item .ui.label { + font-size: 1em; +} .repository .milestone.list { list-style: none; padding-top: 15px; diff --git a/public/less/_repository.less b/public/less/_repository.less index e6ad40af65..b1c2c8d7a0 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -553,6 +553,9 @@ margin-right: 30px; } } + .ui.label { + font-size: 1em; + } } } |