diff options
author | Unknwon <u@gogs.io> | 2015-08-13 23:21:43 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-08-13 23:21:43 +0800 |
commit | 1fb53067f478414302096d5d976a3db85df9e2eb (patch) | |
tree | b1b8ba83989fe5edd346a26c6bd0068abbb4d533 /public/less | |
parent | 0ec7d1539b177dbe55f3c68691b0c9f8e35193a9 (diff) |
finish close/reopen issue
Diffstat (limited to 'public/less')
-rw-r--r-- | public/less/_base.less | 9 | ||||
-rw-r--r-- | public/less/_repository.less | 39 |
2 files changed, 41 insertions, 7 deletions
diff --git a/public/less/_base.less b/public/less/_base.less index ba716334..f95cfdbc 100644 --- a/public/less/_base.less +++ b/public/less/_base.less @@ -74,6 +74,15 @@ img { &.red { color: #d95c5c!important; } + &.grey { + color: #767676!important; + a { + color: #444!important; + &:hover { + color: #000!important; + } + } + } &.right { text-align: right; } diff --git a/public/less/_repository.less b/public/less/_repository.less index f8f39421..47f8fc15 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -163,6 +163,19 @@ } } .comment-list { + &:before { + display: block; + content: ""; + position: absolute; + margin-top: 12px; + margin-bottom: 14px; + top: 0; + bottom: 0; + left: 96px; + width: 2px; + background-color: #f3f3f3; + z-index: -1; + } .comment { .avatar { width: @comment-avatar-width; @@ -181,13 +194,6 @@ max-width: 78%; padding-top: 10px; padding-bottom: 10px; - color: #767676; - a { - color: #444; - &:hover { - color: #000; - } - } } } .markdown { @@ -219,6 +225,25 @@ } } } + .event { + position: relative; + margin: 15px 0 15px 79px; + padding-left: 25px; + .octicon { + width: 30px; + float: left; + margin-left: -36px; + text-align: center; + &.octicon-circle-slash { + font-size: 30px; + color: #bd2c00; + } + &.octicon-primitive-dot { + font-size: 35px; + color: #6cc644; + } + } + } } .ui.segment.metas { margin-top: -3px; |