diff options
author | Unknwon <u@gogs.io> | 2016-03-11 15:33:12 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-03-11 15:33:12 -0500 |
commit | 2bf8494332592b3c57f9a12a26b9abd356fb3f15 (patch) | |
tree | e46c61ba30018ebbafcda6b97b36d3ffece3cfb0 /public/less | |
parent | df2bdf7ea36ad0729e0326ca799d8896d7f96946 (diff) | |
download | gitea-2bf8494332592b3c57f9a12a26b9abd356fb3f15.tar.gz gitea-2bf8494332592b3c57f9a12a26b9abd356fb3f15.zip |
#13 finish user and repository search
Both are possible on explore and admin panel
Diffstat (limited to 'public/less')
-rw-r--r-- | public/less/_explore.less | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/public/less/_explore.less b/public/less/_explore.less index 5141d49928..479e7e355d 100644 --- a/public/less/_explore.less +++ b/public/less/_explore.less @@ -1,6 +1,13 @@ .explore { padding-top: 15px; padding-bottom: @footer-margin * 2; + + .navbar { + .octicon { + width: 16px; + text-align: center; + } + } } .ui.repository.list { @@ -35,3 +42,34 @@ } } } + +.ui.user.list { + .item { + padding-bottom: 25px; + + &:not(:first-child) { + border-top: 1px solid #eee; + padding-top: 25px; + } + + .ui.avatar.image { + width: 40px; + height: 40px; + } + + .description { + margin-top: 5px; + + .octicon:not(:first-child) { + margin-left: 5px; + } + + a { + color: #333; + &:hover { + text-decoration: underline; + } + } + } + } +}
\ No newline at end of file |