diff options
author | fuxiaohei <fuxiaohei@vip.qq.com> | 2014-11-04 21:58:28 +0800 |
---|---|---|
committer | fuxiaohei <fuxiaohei@vip.qq.com> | 2014-11-04 21:58:28 +0800 |
commit | b866dc92d77c37c12982609b641c159d9eb109bf (patch) | |
tree | 9e9f2b65570a54fec57b65c253a7b1eb6aa5a70a /public/ng/less/gogs | |
parent | 743b55b9b0117d50e543cb95221d3737bf02d6bc (diff) | |
download | gitea-b866dc92d77c37c12982609b641c159d9eb109bf.tar.gz gitea-b866dc92d77c37c12982609b641c159d9eb109bf.zip |
finish issue list ui draft
Diffstat (limited to 'public/ng/less/gogs')
-rw-r--r-- | public/ng/less/gogs/issue.less | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/public/ng/less/gogs/issue.less b/public/ng/less/gogs/issue.less index 12cc59fc69..1ab54ee370 100644 --- a/public/ng/less/gogs/issue.less +++ b/public/ng/less/gogs/issue.less @@ -250,4 +250,73 @@ textarea#issue-add-content { height: 34px; } } +} +// issue list menu +#issue-list-menu { + padding: 16px 0 12px 0; + border-bottom: 1px solid #BBB; + margin-bottom: 12px; + .mark { + a { + color: #AAA; + &:hover { + color: #444; + } + } + &.hover { + a { + color: #222; + font-weight: bold; + } + } + } + > .left { + .mark { + margin-right: 12px; + } + } + > .right { + .mark { + margin-left: 12px; + } + } +} +// each issue list item +#issue-list { + .item { + position: relative; + padding-bottom: 12px; + margin-bottom: 12px; + border-bottom: 1px dashed #AAA; + .title > .title-text { + color: #444; + font-size: 15px; + margin: 0 6px; + } + } + .comment { + color: #666; + position: absolute; + top: 6px; + right: 0; + } + .issue-label { + a { + color: #FFF; + } + } + .desc { + color: #999; + a { + color: #999; + &:hover { + color: #03a2ef; + } + } + } +} +// issue list pager +#issue-list-pager { + margin: 18px 0 24px 0; + font-size: 14px; }
\ No newline at end of file |