diff options
Diffstat (limited to 'public/less')
-rw-r--r-- | public/less/_review.less | 31 | ||||
-rw-r--r-- | public/less/themes/arc-green.less | 45 |
2 files changed, 64 insertions, 12 deletions
diff --git a/public/less/_review.less b/public/less/_review.less index a1b2e1932f..abc0284ca5 100644 --- a/public/less/_review.less +++ b/public/less/_review.less @@ -42,14 +42,21 @@ top: -13px; } - .attached.tab { - border: none; - padding: 0; - margin: 0; - - &.markdown { - padding: 1em; - min-height: 168px; + .attached + { + &.tab { + border: none; + padding: 0; + margin: 0; + + &.markdown { + padding: 1em; + min-height: 168px; + } + } + + &.header { + padding: .1rem 1rem; } } @@ -92,8 +99,12 @@ } } - .comment-form-reply { - margin: 0.5em !important; + button.comment-form-reply { + margin: 0.5em 0.5em 0.5em 4.5em; + } + + form.comment-form-reply { + margin: 0 0 0 4em; } } diff --git a/public/less/themes/arc-green.less b/public/less/themes/arc-green.less index 3b86012d17..c70c6d2f7a 100644 --- a/public/less/themes/arc-green.less +++ b/public/less/themes/arc-green.less @@ -182,6 +182,9 @@ border: 2px solid #353945; color: #dbdbdb; } + .ui.accordion .title:not(.ui) { + color: #dbdbdb; +} .ui.label { color: #dbdbdb; background-color: #404552; @@ -195,10 +198,15 @@ .issue.list > .item { border-bottom: 1px dashed #475767; } - .ui.green.label, .ui.green.labels .label { + .ui.green.label, .ui.green.labels .label, .ui.basic.green.label { background-color: #2d693b!important; border-color: #2d693b!important; } + .ui.basic.green.labels a.label:hover, a.ui.basic.green.label:hover { + background-color: #16ab39 !important; + border-color: #16ab39 !important; + color: #fff !important; +} .issue.list > .item .comment { color: #129c92; } @@ -555,10 +563,17 @@ .ui.attached.info.message, .ui.info.message { box-shadow: 0 0 0 1px #4b5e71 inset, 0 0 0 0 transparent; } + .ui.positive.message { + background-color: #2c662d; + color: #fcfff5; +} .ui.info.message { background-color: #2c3b4a; color: #9ebcc5; } + .CodeMirror div.CodeMirror-cursor { + border-left: 1px solid #9e9e9e; +} .ui .warning.header { background-color: #5d3a22 !important; border-color: #794f31; @@ -767,8 +782,34 @@ } .repository .diff-detail-box { - background-color: inherit; + background-color: #383c4a; .detail-files { background-color: inherit; } } + +.comment-code-cloud { + .ui.attached.tabular.menu { + background: none transparent; + border: none; + } + .footer .markdown-info { + color: inherit; + } +} + +.file-comment { + color: #888; +} + +.ui.comments .comment { + .author { + color: #dbdbdb; + } + .metadata { + color: #808084; + } + .text { + color: #9e9e9e; + } +} |