diff options
author | Unknwon <u@gogs.io> | 2016-07-24 14:32:46 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-07-24 14:32:46 +0800 |
commit | e74630ae3b635a43a1bdafcf8b80d2f87b3536b6 (patch) | |
tree | 63c5fb32b6ca4417c3dfd9c05f532d5598aa4117 /public | |
parent | 1f2e173a745da8e4b57f96b5561a3c10054d3b76 (diff) | |
download | gitea-e74630ae3b635a43a1bdafcf8b80d2f87b3536b6.tar.gz gitea-e74630ae3b635a43a1bdafcf8b80d2f87b3536b6.zip |
#1384 add pagination for repositories
Diffstat (limited to 'public')
-rw-r--r-- | public/css/gogs.css | 7 | ||||
-rw-r--r-- | public/less/_dashboard.less | 7 |
2 files changed, 9 insertions, 5 deletions
diff --git a/public/css/gogs.css b/public/css/gogs.css index 0be12be470..6c3cb6e891 100644 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -2563,9 +2563,10 @@ footer .ui.language .menu { border-radius: 3px; word-break: break-all; } -.feeds .list .header { - padding-top: 10px; - padding-bottom: 5px; +.feeds .list .header .ui.label { + margin-top: -4px; + padding: 4px 5px; + font-weight: normal; } .feeds .list .header .plus.icon { margin-top: 5px; diff --git a/public/less/_dashboard.less b/public/less/_dashboard.less index 5f1910b39a..93348afa16 100644 --- a/public/less/_dashboard.less +++ b/public/less/_dashboard.less @@ -92,8 +92,11 @@ .list { .header { - padding-top: 10px; - padding-bottom: 5px; + .ui.label { + margin-top: -4px; + padding: 4px 5px; + font-weight: normal; + } .plus.icon { margin-top: 5px; |