]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-watch/comment/video-comment.component.scss
Issue #168: youtube-like marking of comments (#297)
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / comment / video-comment.component.scss
CommitLineData
4635f59d
C
1@import '_variables';
2@import '_mixins';
3
cf117aaa 4.root-comment {
4635f59d 5 font-size: 15px;
cf117aaa 6 display: flex;
4635f59d 7
cf117aaa
C
8 img {
9 @include avatar(36px);
4635f59d 10
cf117aaa
C
11 margin-top: 5px;
12 margin-right: 20px;
4635f59d
C
13 }
14
cf117aaa
C
15 .comment {
16 flex-grow: 1;
17
18 .comment-account-date {
19 display: flex;
20 margin-bottom: 4px;
4635f59d 21
cf117aaa 22 .comment-account {
4cb6d457
C
23 @include disable-default-a-behaviour;
24
25 color: #000;
cf117aaa
C
26 font-weight: $font-bold;
27 }
28
29 .comment-date {
30 color: #585858;
31 margin-left: 10px;
32 }
4635f59d 33 }
4635f59d 34
d5b53822 35 .marked-comment {
36 background-color: #F5F5F5;
37 padding-left: 3px;
38 padding-right: 3px;
39 font-size: 12px;
40 }
41
2890b615
C
42 .comment-html {
43 a {
44 @include disable-default-a-behaviour;
45
46 color: #000;
47 }
48 }
49
cf117aaa
C
50 .comment-actions {
51 margin: 10px 0;
4cb6d457 52 display: flex;
4635f59d 53
4cb6d457 54 .comment-action-reply, .comment-action-delete {
cf117aaa
C
55 color: #585858;
56 cursor: pointer;
4cb6d457
C
57 margin-right: 10px;
58
59 &:hover {
60 color: #000;
61 }
cf117aaa
C
62 }
63 }
4635f59d
C
64 }
65}