]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/videos/+video-watch/comment/video-comment.component.scss
`fitWidth` for `video-miniature`, fluid grid (#2830)
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / comment / video-comment.component.scss
index 3e8892e84b50a200556698c8104ec34d012a4362..e7ef79561f7ffe2832428baaecb6cca03ac449da 100644 (file)
@@ -5,15 +5,32 @@
   font-size: 15px;
   display: flex;
 
-  img {
-    @include avatar(36px);
+  .left {
+    display: flex;
+    flex-direction: column;
+    align-items: center;
+    margin-right: 10px;
+
+    .vertical-border {
+      width: 2px;
+      height: 100%;
+      background-color: rgba(0, 0, 0, 0.05);
+      margin: 10px calc(1rem + 1px);
+    }
+  }
+
+  .right {
+    width: 100%;
+  }
 
-    margin-top: 5px;
-    margin-right: 20px;
+  .comment-avatar {
+    @include avatar(36px);
   }
 
   .comment {
     flex-grow: 1;
+    // Fix word-wrap with flex
+    min-width: 1px;
 
     .highlighted-comment {
       display: inline-block;
       display: flex;
       margin-bottom: 4px;
 
+      .video-author {
+        height: 20px;
+        background-color: #888888;
+        border-radius: 12px;
+        margin-bottom: 2px;
+        max-width: 100%;
+        box-sizing: border-box;
+        flex-direction: row;
+        align-items: center;
+        display: inline-flex;
+        padding-right: 6px;
+        padding-left: 6px;
+        color: white !important;
+      }
+
       .comment-account {
-        @include disable-default-a-behaviour;
+        word-break: break-all;
+        font-weight: 600;
+        font-size: 90%;
+
+        a {
+          @include disable-default-a-behaviour;
+
+          color: pvar(--mainForegroundColor);
+        }
 
-        color: #000;
-        font-weight: $font-bold;
+        .comment-account-fid {
+          opacity: .6;
+        }
       }
 
       .comment-date {
-        color: #585858;
-        margin-left: 10px;
+        font-size: 90%;
+        color: pvar(--greyForegroundColor);
+        margin-left: 5px;
+        text-decoration: none;
       }
     }
 
     .comment-html {
-      a {
-        @include disable-default-a-behaviour;
+      @include peertube-word-wrap;
+
+      // Mentions
+      ::ng-deep a {
+
+        &:not(.linkified-url) {
+          @include disable-default-a-behaviour;
+
+          color: pvar(--mainForegroundColor);
+
+          font-weight: $font-semibold;
+        }
 
-        color: #000;
+      }
+
+      // Paragraphs
+      ::ng-deep p {
+        margin-bottom: .3rem;
+      }
+
+      &.comment-html-deleted {
+        color: pvar(--greyForegroundColor);
+        margin-bottom: 1rem;
       }
     }
 
     .comment-actions {
-      margin: 10px 0;
+      margin-bottom: 10px;
       display: flex;
 
-      .comment-action-reply, .comment-action-delete {
-        color: #585858;
+      ::ng-deep .dropdown-toggle,
+      .comment-action-reply,
+      .comment-action-delete {
+        color: pvar(--greyForegroundColor);
         cursor: pointer;
         margin-right: 10px;
 
         &:hover {
-          color: #000;
+          color: pvar(--mainForegroundColor);
+        }
+      }
+
+      ::ng-deep .action-button {
+        background-color: transparent;
+        padding: 0;
+        font-weight: unset;
+      }
+    }
+
+    my-video-comment-add {
+      ::ng-deep form {
+        margin-top: 1rem;
+        margin-bottom: 0;
+      }
+    }
+  }
+
+  .children {
+    // Reduce avatars size for replies
+    .comment-avatar {
+      @include avatar(25px);
+    }
+
+    .left {
+      margin-right: 6px;
+    }
+  }
+}
+
+@media screen and (max-width: 1200px) {
+  .children {
+    margin-left: -10px;
+  }
+}
+
+@media screen and (max-width: 600px) {
+  .root-comment {
+    .children {
+      margin-left: -20px;
+
+      .left {
+        align-items: flex-start;
+
+        .vertical-border {
+          margin-left: 2px;
+        }
+      }
+    }
+
+    .comment {
+      .comment-account-date {
+        flex-direction: column;
+
+        .comment-date {
+          margin-left: 0;
         }
       }
     }