diff options
author | Unknwon <u@gogs.io> | 2016-03-05 18:08:42 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-03-05 18:08:42 -0500 |
commit | 045f14fbd0e3553521f5092cf839be363c74a090 (patch) | |
tree | 9c82f5111c5c5262c97bd7936462fa4170e76b4f /public/css/gogs.css | |
parent | 05d8664f15013b0159b3689bda84e89dd7be22fd (diff) | |
download | gitea-045f14fbd0e3553521f5092cf839be363c74a090.tar.gz gitea-045f14fbd0e3553521f5092cf839be363c74a090.zip |
#1146 finsih UI work for access mode of collaborators
Collaborators have write access as default, and can be changed via repository
collaboration settings page to change between read, write and admin.
Diffstat (limited to 'public/css/gogs.css')
-rw-r--r-- | public/css/gogs.css | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/public/css/gogs.css b/public/css/gogs.css index 016ea7b96a..00b1637d90 100644 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -5,7 +5,7 @@ background-size: contain; } body { - font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif, '微软雅黑'; + font-family: "Helvetica Neue", "Microsoft YaHei", Arial, Helvetica, sans-serif !important; background-color: #fff; overflow-y: scroll; } @@ -104,6 +104,9 @@ code.wrap { .ui.container.fluid.padded { padding: 0 10px 0 10px; } +.ui.form .ui.button { + font-weight: normal; +} .ui .text.red { color: #d95c5c !important; } @@ -234,6 +237,10 @@ code.wrap { .ui.status.buttons .octicon { margin-right: 4px; } +.ui.inline.delete-button { + padding: 8px 15px; + font-weight: normal; +} .overflow.menu .items { max-height: 300px; overflow-y: auto; @@ -1984,10 +1991,11 @@ footer .container .links > *:first-child { .repository.settings.collaboration .collaborator.list { padding: 0; } -.repository.settings.collaboration .collaborator.list .item { - padding: 10px 20px; +.repository.settings.collaboration .collaborator.list > .item { + margin: 0; + line-height: 2em; } -.repository.settings.collaboration .collaborator.list .item:not(:last-child) { +.repository.settings.collaboration .collaborator.list > .item:not(:last-child) { border-bottom: 1px solid #DDD; } .repository.settings.collaboration #repo-collab-form #search-user-box .results { |