blob: 6c11902194d679f7188092e8c044235644ed0019 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* Remove user avatar from new comment form */
.timeline-new-comment .timeline-comment-avatar,
.review-thread-reply .avatar {
display: none;
}
.review-thread-reply .review-thread-reply-button {
margin-left: 0;
}
/* Hide arrow on new comment form */
.timeline-new-comment .timeline-comment--caret::before,
.timeline-new-comment .timeline-comment--caret::after {
content: none !important;
}
|