Chocobozzz/PeerTube

View on GitHub
client/src/app/+videos/+video-watch/shared/comment/video-comment.component.scss

Summary

Maintainability
Test Coverage
@use '_variables' as *;
@use '_mixins' as *;

.root-comment {
  display: flex;

  .left {
    display: flex;
    flex-direction: column;
    align-items: center;

    @include 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%;
  }
}

.comment {
  flex-grow: 1;
  // Fix word-wrap with flex
  min-width: 1px;
}

.highlighted-comment {
  display: inline-block;
  background-color: pvar(--greySecondaryBackgroundColor);
  color: pvar(--mainForegroundColor);
  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;
  color: #fff !important;

  @include padding-right(6px);
  @include padding-left(6px);
}

.comment-account {
  word-break: break-all;
  font-weight: 600;
  font-size: 90%;

  a {
    color: pvar(--mainForegroundColor);

    @include disable-default-a-behaviour;

    &:hover {
      text-decoration: underline;
    }
  }

  .comment-account-fid {
    color: pvar(--greyForegroundColor);
  }
}

.comment-date {
  font-size: 90%;
  color: pvar(--greyForegroundColor);
  text-decoration: none;

  @include margin-left(5px);

  &:hover {
    text-decoration: underline;
  }
}

.comment-html {
  @include peertube-word-wrap;

  // Mentions
  ::ng-deep a {

    &:not(.linkified-url) {
      color: pvar(--mainForegroundColor);

      font-weight: $font-semibold;

      @include disable-default-a-behaviour;
    }

  }

  // Paragraphs
  ::ng-deep p {
    margin-bottom: .3rem;
  }

  &.comment-html-deleted {
    color: pvar(--greyForegroundColor);
    margin-bottom: 1rem;
  }
}

.comment-actions {
  margin-bottom: 10px;
  display: flex;

  ::ng-deep .dropdown-toggle,
  .comment-action-reply {
    color: pvar(--greyForegroundColor);
    cursor: pointer;

    @include margin-right(10px);

    &:hover,
    &:active,
    &:focus,
    &:focus-visible {
      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;
  }
}

.is-child {
  .left {
    @include margin-right(6px);
  }
}

@media screen and (max-width: 1200px) {
  .children {
    @include margin-left(-10px);
  }
}

@media screen and (max-width: 600px) {
  .children {
    @include margin-left(-20px);

    .left {
      align-items: flex-start;

      .vertical-border {
        @include margin-left(2px);
      }
    }
  }

  .comment-account-date {
    flex-direction: column;

    .comment-date {
      @include margin-left(0);
    }
  }
}