diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2019-11-12 17:22:16 +0800 |
---|---|---|
committer | Antoine GIRARD <sapk@users.noreply.github.com> | 2019-11-12 10:22:16 +0100 |
commit | e4e6d48e30da944192263f7ad812dfa78f03ae27 (patch) | |
tree | c916a645486c46cdc9dbf8e61c3454e757abe1ff /web_src/less/_review.less | |
parent | a0d401451710622b2856d61bf514bccdc7bd0fbd (diff) | |
download | gitea-e4e6d48e30da944192263f7ad812dfa78f03ae27.tar.gz gitea-e4e6d48e30da944192263f7ad812dfa78f03ae27.zip |
Move less from public/ to web_src/ so that it will not be packe… (#8908)
Diffstat (limited to 'web_src/less/_review.less')
-rw-r--r-- | web_src/less/_review.less | 110 |
1 files changed, 110 insertions, 0 deletions
diff --git a/web_src/less/_review.less b/web_src/less/_review.less new file mode 100644 index 0000000000..c01e7533b4 --- /dev/null +++ b/web_src/less/_review.less @@ -0,0 +1,110 @@ +.ui.button.add-code-comment { + font-size: 14px; + height: 16px; + padding: 2px 0 0; + position: relative; + width: 16px; + z-index: 5; + float: left; + margin: -2px -10px -2px -20px; + opacity: 0; + transition: transform 0.1s ease-in-out; + transform: scale(1, 1); + + &:hover { + transform: scale(1.2, 1.2); + } +} + +.focus-lines-new .ui.button.add-code-comment.add-code-comment-right, +.focus-lines-old .ui.button.add-code-comment.add-code-comment-left { + opacity: 1; +} + +.comment-code-cloud { + padding: 4px; + position: relative; + border: 1px solid #f1f1f1; + margin: 13px 10px 5px auto; + + &:before { + content: " "; + width: 0; + height: 0; + border-left: 13px solid transparent; + border-right: 13px solid transparent; + border-bottom: 13px solid #f1f1f1; + left: 20px; + position: absolute; + top: -13px; + } + + .attached { + &.tab { + border: 0; + padding: 0; + margin: 0; + + &.markdown { + padding: 1em; + min-height: 168px; + } + } + + &.header { + padding: 0.1rem 1rem; + } + } + + .right.menu.options .item { + padding: 0.85714286em 0.442857em; + cursor: pointer; + } + + .ui.form textarea { + border: 0; + } + + .ui.attached.tabular.menu { + background: #f7f7f7; + border: 1px solid #d4d4d5; + padding-top: 5px; + padding-left: 5px; + margin-top: 0; + } + + .footer { + border-top: 1px solid #f1f1f1; + margin-top: 10px; + + .markdown-info { + display: inline-block; + margin: 5px 0; + font-size: 12px; + color: rgba(0, 0, 0, 0.6); + } + + .ui.right.floated { + padding-top: 6px; + } + + &:after { + clear: both; + content: ""; + display: block; + } + } + + button.comment-form-reply { + margin: 0.5em 0.5em 0.5em 4.5em; + } + + form.comment-form-reply { + margin: 0 0 0 4em; + } +} + +.file-comment { + font: 12px @monospaced-fonts, monospace; + color: rgba(0, 0, 0, 0.87); +} |