diff options
author | Unknwon <u@gogs.io> | 2015-11-22 01:32:09 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-11-22 01:32:09 -0500 |
commit | 52c8f691630548fe091d30bcfe8164545a05d3d5 (patch) | |
tree | 12ad797f4c2f8ae6ea81e59e4a0e73ec76abaef3 /public/css | |
parent | b80e848d02b4e27e067910c03aadeddcbdd5f3f5 (diff) | |
download | gitea-52c8f691630548fe091d30bcfe8164545a05d3d5.tar.gz gitea-52c8f691630548fe091d30bcfe8164545a05d3d5.zip |
fix #650
Diffstat (limited to 'public/css')
-rwxr-xr-x | public/css/gogs.css | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/public/css/gogs.css b/public/css/gogs.css index 46340efa37..5d61382946 100755 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -2529,19 +2529,23 @@ footer .container .links > *:first-child { margin-left: 5px; margin-top: -3px; } +#search-repo-box .results, #search-user-box .results { padding: 0; position: absolute; } +#search-repo-box .results .item, #search-user-box .results .item { padding: 10px 15px; border-bottom: 1px solid #DDD; cursor: pointer; } +#search-repo-box .results .item:hover, #search-user-box .results .item:hover { background: rgba(0, 0, 0, 0.05) !important; color: rgba(0, 0, 0, 0.95) !important; } +#search-repo-box .results .item img, #search-user-box .results .item img { margin-right: 8px; } @@ -2752,6 +2756,91 @@ footer .container .links > *:first-child { width: 50%!important; min-width: 300px; } +.organization.profile #org-avatar { + width: 100px; + height: 100px; + margin-right: 15px; +} +.organization.profile #org-info .ui.header { + font-size: 36px; + margin-bottom: 0; +} +.organization.profile #org-info .desc { + font-size: 16px; + margin-bottom: 10px; +} +.organization.profile #org-info .meta .item { + display: inline-block; + margin-right: 10px; +} +.organization.profile #org-info .meta .item .icon { + margin-right: 5px; +} +.organization.profile .ui.top.header .ui.right { + margin-top: 0; +} +.organization.profile .teams .item { + padding: 10px 15px; +} +.organization.teams .members .ui.avatar, +.organization.profile .members .ui.avatar { + width: 48px; + height: 48px; + margin-right: 5px; +} +.organization.invite #invite-box { + margin: auto; + margin-top: 50px; + width: 500px !important; +} +.organization.invite #invite-box #search-user-box input { + margin-left: 0; + width: 300px; +} +.organization.invite #invite-box .ui.button { + margin-left: 5px; + margin-top: -3px; +} +.organization.members .list .item { + margin-left: 0; + margin-right: 0; + border-bottom: 1px solid #eee; +} +.organization.members .list .item .ui.avatar { + width: 48px; + height: 48px; +} +.organization.members .list .item .meta { + line-height: 24px; +} +.organization.teams .detail .item { + padding: 10px 15px; +} +.organization.teams .detail .item:not(:last-child) { + border-bottom: 1px solid #eee; +} +.organization.teams .repositories .item, +.organization.teams .members .item { + padding: 10px 20px; + line-height: 32px; +} +.organization.teams .repositories .item:not(:last-child), +.organization.teams .members .item:not(:last-child) { + border-bottom: 1px solid #DDD; +} +.organization.teams .repositories .item .button, +.organization.teams .members .item .button { + padding: 9px 10px; +} +.organization.teams #add-repo-form input, +.organization.teams #add-member-form input { + margin-left: 0; +} +.organization.teams #add-repo-form .ui.button, +.organization.teams #add-member-form .ui.button { + margin-left: 5px; + margin-top: -3px; +} .user { padding-top: 15px; padding-bottom: 80px; |