]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-watch/comment/video-comment.component.scss
8e53dbca82fb918b3684dbfa9e47d7e12884836d
[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-html {
36 a {
37 @include disable-default-a-behaviour;
38
39 color: #000;
40 }
41 }
42
43 .comment-actions {
44 margin: 10px 0;
45 display: flex;
46
47 .comment-action-reply, .comment-action-delete {
48 color: #585858;
49 cursor: pointer;
50 margin-right: 10px;
51
52 &:hover {
53 color: #000;
54 }
55 }
56 }
57 }
58 }