diff options
author | Unknwon <u@gogs.io> | 2015-08-12 17:04:23 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-08-12 17:04:23 +0800 |
commit | b4c0b7b98b925eb470d361d9e90d0032770513ff (patch) | |
tree | 3bd4bd002ac5118d13f3e4b7f54dde4643041c23 /public/less | |
parent | b410207dc1f624f9c14a90de97b22634667d762e (diff) | |
download | gitea-b4c0b7b98b925eb470d361d9e90d0032770513ff.tar.gz gitea-b4c0b7b98b925eb470d361d9e90d0032770513ff.zip |
finish view issue without comments and ops
Diffstat (limited to 'public/less')
-rw-r--r-- | public/less/_repository.less | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/public/less/_repository.less b/public/less/_repository.less index cb33a2a807..107d4f5ad0 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -118,8 +118,18 @@ } } } + @comment-avatar-width: 3em; &.new.issue { .comment.form { + .comment .avatar { + width: @comment-avatar-width; + } + .content { + margin-left: 4em; + .markdown { + font-size: 14px; + } + } .metas { min-width: 220px; .filter.menu { @@ -129,6 +139,67 @@ } } } + &.view.issue { + .title { + padding-bottom: 0!important; + h1 { + font-weight: 300; + font-size: 3rem; + margin-bottom: 5px; + } + .index { + font-weight: 300; + color: #aaa; + letter-spacing: -1px; + } + .label { + margin-right: 10px; + } + } + .comment-list { + .comment { + .avatar { + width: @comment-avatar-width; + } + .content { + margin-left: 4em; + .header { + font-weight: normal; + padding: auto 15px; + color: #767676; + background-color: #f7f7f7; + border-bottom: 1px solid #eee; + border-top-left-radius: 3px; + border-top-right-radius: 3px; + .text { + max-width: 78%; + padding-top: 10px; + padding-bottom: 10px; + color: #767676; + a { + color: #444; + &:hover { + color: #000; + } + } + } + } + .markdown { + font-size: 14px; + } + .bottom.segment { + background: #f3f4f5; + .ui.image { + max-height: 150px; + } + } + } + } + } + .ui.segment.metas { + margin-top: -3px; + } + } .comment.form { .ui.comments { margin-top: -12px; |