aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-watch/comment/video-comment.component.scss
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2019-12-18 13:27:51 +0100
committerRigel Kent <sendmemail@rigelk.eu>2019-12-18 13:28:29 +0100
commit5dfb7c1dec8222b0bbccac5b56ad46da1438747e (patch)
tree9a344b2074dd106ba314db6a1d012eedfd4cc949 /client/src/app/videos/+video-watch/comment/video-comment.component.scss
parent9f0327aeb39c307ce7da28dda57cc526c928ca62 (diff)
downloadPeerTube-5dfb7c1dec8222b0bbccac5b56ad46da1438747e.tar.gz
PeerTube-5dfb7c1dec8222b0bbccac5b56ad46da1438747e.tar.zst
PeerTube-5dfb7c1dec8222b0bbccac5b56ad46da1438747e.zip
Add commentor name alongside fid for video comments
Diffstat (limited to 'client/src/app/videos/+video-watch/comment/video-comment.component.scss')
-rw-r--r--client/src/app/videos/+video-watch/comment/video-comment.component.scss12
1 files changed, 10 insertions, 2 deletions
diff --git a/client/src/app/videos/+video-watch/comment/video-comment.component.scss b/client/src/app/videos/+video-watch/comment/video-comment.component.scss
index 0f95078c2..d8fd5c5de 100644
--- a/client/src/app/videos/+video-watch/comment/video-comment.component.scss
+++ b/client/src/app/videos/+video-watch/comment/video-comment.component.scss
@@ -67,8 +67,12 @@
67 67
68 word-break: break-all; 68 word-break: break-all;
69 color: var(--mainForegroundColor); 69 color: var(--mainForegroundColor);
70 font-weight: $font-bold; 70 font-weight: 600;
71 font-size: 90%; 71 font-size: 90%;
72
73 .comment-account-fid {
74 opacity: .6;
75 }
72 } 76 }
73 77
74 .comment-date { 78 .comment-date {
@@ -81,7 +85,6 @@
81 85
82 .comment-html { 86 .comment-html {
83 @include peertube-word-wrap; 87 @include peertube-word-wrap;
84 margin-bottom: 10px;
85 88
86 // Mentions 89 // Mentions
87 ::ng-deep a { 90 ::ng-deep a {
@@ -96,6 +99,11 @@
96 99
97 } 100 }
98 101
102 // Paragraphs
103 ::ng-deep p {
104 margin-bottom: .3rem;
105 }
106
99 &.comment-html-deleted { 107 &.comment-html-deleted {
100 color: $grey-foreground-color; 108 color: $grey-foreground-color;
101 } 109 }