]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/videos/+video-watch/comment/video-comment.component.scss
Explicit theme colors for inputs and textarea
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / comment / video-comment.component.scss
index 7e1a32f480c5d034e28d4a2753c5c3e3bd243c1e..7c46569311100242b63933580807d4811c8426b9 100644 (file)
 @import '_variables';
 @import '_mixins';
 
-.comment {
+.root-comment {
   font-size: 15px;
-  margin-top: 30px;
+  display: flex;
 
-  .comment-account-date {
+  .left {
     display: flex;
-    margin-bottom: 4px;
+    flex-direction: column;
+    align-items: center;
+    margin-right: 10px;
 
-    .comment-account {
-      font-weight: $font-bold;
+    .vertical-border {
+      width: 2px;
+      height: 100%;
+      background-color: rgba(0, 0, 0, 0.05);
+      margin: 10px calc(1rem + 1px);
     }
+  }
+
+  .right {
+    width: 100%;
+  }
 
-    .comment-date {
-      color: #585858;
-      margin-left: 10px;
+  .comment-avatar {
+    @include avatar(36px);
+  }
+
+  .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-account-date {
+      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 {
+        word-break: break-all;
+        font-weight: 600;
+        font-size: 90%;
+
+        a {
+          @include disable-default-a-behaviour;
+
+          color: var(--mainForegroundColor);
+        }
+
+        .comment-account-fid {
+          opacity: .6;
+        }
+      }
+
+      .comment-date {
+        font-size: 90%;
+        color: $grey-foreground-color;
+        margin-left: 5px;
+        text-decoration: none;
+      }
+    }
+
+    .comment-html {
+      @include peertube-word-wrap;
+
+      // Mentions
+      ::ng-deep a {
+
+        &:not(.linkified-url) {
+          @include disable-default-a-behaviour;
+
+          color: var(--mainForegroundColor);
+
+          font-weight: $font-semibold;
+        }
+
+      }
+
+      // Paragraphs
+      ::ng-deep p {
+        margin-bottom: .3rem;
+      }
+
+      &.comment-html-deleted {
+        color: $grey-foreground-color;
+        margin-bottom: 1rem;
+      }
+    }
+
+    .comment-actions {
+      margin-bottom: 10px;
+      display: flex;
+
+      ::ng-deep .dropdown-toggle,
+      .comment-action-reply,
+      .comment-action-delete {
+        color: $grey-foreground-color;
+        cursor: pointer;
+        margin-right: 10px;
+
+        &:hover {
+          color: var(--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;
+      }
     }
   }
 
-  .comment-actions {
-    margin: 10px 0;
+  .children {
+    // Reduce avatars size for replies
+    .comment-avatar {
+      @include avatar(25px);
+    }
 
-    .comment-action-reply {
-      color: #585858;
-      cursor: pointer;
+    .left {
+      margin-right: 6px;
     }
   }
 }
 
-.children {
-  margin-left: 20px;
+@media screen and (max-width: 1200px) {
+  .children {
+    margin-left: -10px;
+  }
+}
 
-  .comment {
-    margin-top: 15px;
+@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;
+        }
+      }
+    }
   }
 }