diff options
author | silverwind <me@silverwind.io> | 2020-11-16 14:53:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-16 21:53:04 +0800 |
commit | 5bd05331cef2beadc2ff87402db659ef532cb2e4 (patch) | |
tree | 4340186688d419a0dbc3934d788569d982c567ca /web_src/less/themes | |
parent | 586bfb9f32f1d916b6246ff7f0bd9ce2818dfab0 (diff) | |
download | gitea-5bd05331cef2beadc2ff87402db659ef532cb2e4.tar.gz gitea-5bd05331cef2beadc2ff87402db659ef532cb2e4.zip |
Fix comment triangles and tweak inline comment margins (#13554)
- Fix various miscolored comment bubble triangles
- Tweak padding on inline comment boxes
Diffstat (limited to 'web_src/less/themes')
-rw-r--r-- | web_src/less/themes/theme-arc-green.less | 43 |
1 files changed, 4 insertions, 39 deletions
diff --git a/web_src/less/themes/theme-arc-green.less b/web_src/less/themes/theme-arc-green.less index 781a15ee8e..a4412145a9 100644 --- a/web_src/less/themes/theme-arc-green.less +++ b/web_src/less/themes/theme-arc-green.less @@ -1036,28 +1036,10 @@ a.ui.basic.green.label:hover { color: #dbdbdb !important; } -.repository.view.issue .comment-list .comment .content { - .header { - color: #dbdbdb; - background-color: var(--color-secondary); - border-color: var(--color-secondary); - } - - .header::after { - border-right-color: var(--color-secondary); - } - - .merge-section.no-header::after { - border-right-color: var(--color-secondary); - } - - .header::before { - border-right-color: var(--color-secondary); - } - - .merge-section.no-header::before { - border-right-color: #505667; - } +.repository.view.issue .comment-list .comment .content .header { + color: #dbdbdb; + background-color: var(--color-secondary); + border-color: var(--color-secondary); } .repository.view.issue .comment-list .timeline-item .badge { @@ -1072,23 +1054,6 @@ a.ui.basic.green.label:hover { color: #dedede; } -.repository.file.editor .commit-form-wrapper .commit-form { - border-color: #505667; -} - -.repository.file.editor .commit-form-wrapper .commit-form::before, -.repository.file.editor .commit-form-wrapper .commit-form::after { - border-right-color: #505667; -} - -.repository .comment.form .content .form::after { - border-right-color: #353945; -} - -.repository .comment.form .content .form::before { - border-right-color: var(--color-secondary); -} - .repository .comment.form .ui.tabular.menu .item.active { background: #353945; } |