summaryrefslogtreecommitdiffstats
path: root/public
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2016-02-05 14:53:45 -0500
committerUnknwon <u@gogs.io>2016-02-05 14:53:45 -0500
commitacfc942ad7e12674ca85ebe9a5af9e3a77051d19 (patch)
tree38d8d8bf36c821a483184afeb6b8a6ecd73b3927 /public
parentdb150f2e42da902d087e7ff3cf003863fd5030c7 (diff)
downloadgitea-acfc942ad7e12674ca85ebe9a5af9e3a77051d19.tar.gz
gitea-acfc942ad7e12674ca85ebe9a5af9e3a77051d19.zip
Generate CSS for #2561
Diffstat (limited to 'public')
-rwxr-xr-xpublic/css/gogs.css22
1 files changed, 22 insertions, 0 deletions
diff --git a/public/css/gogs.css b/public/css/gogs.css
index b3498d4b68..99b8047ced 100755
--- a/public/css/gogs.css
+++ b/public/css/gogs.css
@@ -1377,12 +1377,34 @@ footer .container .links > *:first-child {
.repository.view.issue .comment-list .comment .content .header {
font-weight: normal;
padding: auto 15px;
+ position: relative;
color: #767676;
background-color: #f7f7f7;
border-bottom: 1px solid #eee;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
}
+.repository.view.issue .comment-list .comment .content .header:before,
+.repository.view.issue .comment-list .comment .content .header:after {
+ right: 100%;
+ top: 50%;
+ border: solid transparent;
+ content: " ";
+ height: 0;
+ width: 0;
+ position: absolute;
+ pointer-events: none;
+}
+.repository.view.issue .comment-list .comment .content .header:before {
+ border-right-color: #D4D4D5;
+ border-width: 9px;
+ margin-top: -9px;
+}
+.repository.view.issue .comment-list .comment .content .header:after {
+ border-right-color: #f7f7f7;
+ border-width: 8px;
+ margin-top: -8px;
+}
.repository.view.issue .comment-list .comment .content .header .text {
max-width: 78%;
padding-top: 10px;