diff options
author | Unknwon <u@gogs.io> | 2015-11-17 02:18:05 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-11-17 02:18:05 -0500 |
commit | ff5f14431eb2df2e68e6b3765607fa4aef99c707 (patch) | |
tree | 07fc01396d867adaf794ad47a010132ebeb0a71e /public/less | |
parent | ab9411be2ae01970f4c2c092683bd9d9b71c994b (diff) | |
download | gitea-ff5f14431eb2df2e68e6b3765607fa4aef99c707.tar.gz gitea-ff5f14431eb2df2e68e6b3765607fa4aef99c707.zip |
fix #1448
Diffstat (limited to 'public/less')
-rw-r--r-- | public/less/_repository.less | 48 | ||||
-rw-r--r-- | public/less/_user.less | 4 |
2 files changed, 51 insertions, 1 deletions
diff --git a/public/less/_repository.less b/public/less/_repository.less index 24fe4888ff..86c8fe33e9 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -934,9 +934,55 @@ } } } + + &.settings { + &.collaboration { + .collaborator.list { + padding: 0; + + .item { + padding: 10px 20px; + + &:not(:last-child) { + border-bottom: 1px solid #DDD; + } + } + } + + #repo-collab-form { + #search-user-box { + .results { + left: 7px; + } + } + .ui.button { + margin-left: 5px; + margin-top: -3px; + } + } + } + } } // End of .repository +#search-user-box { + .results { + padding: 0; + position: absolute; + + .item { + padding: 10px 15px; + border-bottom: 1px solid #DDD; + cursor: pointer; + + &:hover { + background: rgba(0,0,0,.05)!important; + color: rgba(0,0,0,.95)!important; + } + } + } +} + .issue.list { list-style: none; padding-top: 15px; @@ -994,7 +1040,7 @@ .settings { .content { margin-top: 2px; - .header, + >.header, .segment { box-shadow: 0 1px 2px 0 rgba(34,36,38,.15); } diff --git a/public/less/_user.less b/public/less/_user.less index bf0de5068a..171fccd082 100644 --- a/public/less/_user.less +++ b/public/less/_user.less @@ -42,5 +42,9 @@ } } } + + .ui.repository.list { + margin-top: 25px; + } } }
\ No newline at end of file |