]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/videos/+video-watch/comment/video-comment.component.scss
Blue links color in comments
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / comment / video-comment.component.scss
index 3b0b7eafdb776f4f248b9a3c84d67b208add25f8..78bcfe1212a432784f9023e961d33e02969691b4 100644 (file)
@@ -14,6 +14,8 @@
 
   .comment {
     flex-grow: 1;
+    // Fix word-wrap with flex
+    min-width: 1px;
 
     .highlighted-comment {
       display: inline-block;
     }
 
     .comment-html {
-      word-wrap: initial;
-      word-break: normal;
-      text-align: justify;
+      @include peertube-word-wrap;
 
+      // Mentions
       /deep/ a {
-        @include disable-default-a-behaviour;
-
-        color: #000;
 
-        // Semi bold mentions
         &:not(.linkified-url) {
+          @include disable-default-a-behaviour;
+
+          color: #000;
+
           font-weight: $font-semibold;
         }
+
       }
     }
 
@@ -64,7 +66,8 @@
       margin: 10px 0;
       display: flex;
 
-      .comment-action-reply, .comment-action-delete {
+      .comment-action-reply,
+      .comment-action-delete {
         color: #585858;
         cursor: pointer;
         margin-right: 10px;
     }
   }
 }
+
+// Decrease the space of child comments on small screens
+@media screen and (max-width: 1600px) {
+  .children {
+    margin-left: -20px;
+  }
+}
+
+@media screen and (max-width: 1200px) {
+  .children {
+    margin-left: -30px;
+  }
+}
+
+@media screen and (max-width: 600px) {
+  .children {
+    margin-left: -35px;
+  }
+
+  .root-comment {
+    img { margin-right: 10px; }
+  }
+}