]> 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 7e1a32f480c5d034e28d4a2753c5c3e3bd243c1e..84da5727e6d534c8949efca2b1b9b4dcd2505774 100644 (file)
 @import '_variables';
 @import '_mixins';
 
-.comment {
+.root-comment {
   font-size: 15px;
-  margin-top: 30px;
+  display: flex;
 
-  .comment-account-date {
-    display: flex;
-    margin-bottom: 4px;
+  img {
+    @include avatar(36px);
 
-    .comment-account {
-      font-weight: $font-bold;
+    margin-top: 5px;
+    margin-right: 20px;
+  }
+
+  .comment {
+    flex-grow: 1;
+    // Fix word-wrap with flex
+    min-width: 1px;
+
+    .highlighted-comment {
+      display: inline-block;
+      background-color: #F5F5F5;
+      color: #3d3d3d;
+      padding: 0 5px;
+      font-size: 13px;
+      margin-bottom: 5px;
+      font-weight: $font-semibold;
+      border-radius: 3px;
     }
 
-    .comment-date {
-      color: #585858;
-      margin-left: 10px;
+    .comment-account-date {
+      display: flex;
+      margin-bottom: 4px;
+
+      .comment-account {
+        @include disable-default-a-behaviour;
+
+        word-break: break-all;
+        color: var(--mainForegroundColor);
+        font-weight: $font-bold;
+      }
+
+      .comment-date {
+        color: #585858;
+        margin-left: 10px;
+      }
     }
-  }
 
-  .comment-actions {
-    margin: 10px 0;
+    .comment-html {
+      @include peertube-word-wrap;
+
+      // Mentions
+      /deep/ a {
+
+        &:not(.linkified-url) {
+          @include disable-default-a-behaviour;
+
+          color: var(--mainForegroundColor);
+
+          font-weight: $font-semibold;
+        }
+
+      }
+    }
+
+    .comment-actions {
+      margin: 10px 0;
+      display: flex;
 
-    .comment-action-reply {
-      color: #585858;
-      cursor: pointer;
+      .comment-action-reply,
+      .comment-action-delete {
+        color: #585858;
+        cursor: pointer;
+        margin-right: 10px;
+
+        &:hover {
+          color: var(--mainForegroundColor);
+        }
+      }
     }
   }
 }
 
-.children {
-  margin-left: 20px;
+// Decrease the space of child comments on small screens
+@media screen and (max-width: 1600px) {
+  .children {
+    margin-left: -20px;
+  }
+}
 
-  .comment {
-    margin-top: 15px;
+@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