]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-watch/comment/video-comment.component.scss
Add ability to delete comments
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / comment / video-comment.component.scss
1 @import '_variables';
2 @import '_mixins';
3
4 .root-comment {
5 font-size: 15px;
6 display: flex;
7
8 img {
9 @include avatar(36px);
10
11 margin-top: 5px;
12 margin-right: 20px;
13 }
14
15 .comment {
16 flex-grow: 1;
17
18 .comment-account-date {
19 display: flex;
20 margin-bottom: 4px;
21
22 .comment-account {
23 @include disable-default-a-behaviour;
24
25 color: #000;
26 font-weight: $font-bold;
27 }
28
29 .comment-date {
30 color: #585858;
31 margin-left: 10px;
32 }
33 }
34
35 .comment-actions {
36 margin: 10px 0;
37 display: flex;
38
39 .comment-action-reply, .comment-action-delete {
40 color: #585858;
41 cursor: pointer;
42 margin-right: 10px;
43
44 &:hover {
45 color: #000;
46 }
47 }
48 }
49 }
50 }