]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/videos/+video-watch/comment/video-comment.component.scss
Improve responsive on small screens
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / comment / video-comment.component.scss
index 3e8892e84b50a200556698c8104ec34d012a4362..84da5727e6d534c8949efca2b1b9b4dcd2505774 100644 (file)
@@ -14,6 +14,8 @@
 
   .comment {
     flex-grow: 1;
+    // Fix word-wrap with flex
+    min-width: 1px;
 
     .highlighted-comment {
       display: inline-block;
@@ -33,7 +35,8 @@
       .comment-account {
         @include disable-default-a-behaviour;
 
-        color: #000;
+        word-break: break-all;
+        color: var(--mainForegroundColor);
         font-weight: $font-bold;
       }
 
     }
 
     .comment-html {
-      a {
-        @include disable-default-a-behaviour;
+      @include peertube-word-wrap;
+
+      // Mentions
+      /deep/ a {
+
+        &:not(.linkified-url) {
+          @include disable-default-a-behaviour;
+
+          color: var(--mainForegroundColor);
+
+          font-weight: $font-semibold;
+        }
 
-        color: #000;
       }
     }
 
       margin: 10px 0;
       display: flex;
 
-      .comment-action-reply, .comment-action-delete {
+      .comment-action-reply,
+      .comment-action-delete {
         color: #585858;
         cursor: pointer;
         margin-right: 10px;
 
         &:hover {
-          color: #000;
+          color: var(--mainForegroundColor);
         }
       }
     }
   }
 }
+
+// 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; }
+  }
+}
+
+@media screen and (max-width: 450px) {
+  .root-comment {
+    font-size: 14px;
+  }
+}
\ No newline at end of file