index.less 1.71 KB
Newer Older
liang ce committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
@import '../../style/themes/default';
@import '../../style/mixins/index';

@comment-prefix-cls: ~'@{ant-prefix}-comment';

.@{comment-prefix-cls} {
  position: relative;

  &-inner {
    padding: @comment-padding-base;
    display: flex;
  }

  &-avatar {
    flex-shrink: 0;
    position: relative;
    margin-right: 12px;
    cursor: pointer;
    img {
      width: 32px;
      height: 32px;
      border-radius: 50%;
    }
  }

  &-content {
    position: relative;
    font-size: 14px;
    flex: 1 1 auto;
    min-width: 1px;
    word-wrap: break-word;

    &-author {
      margin-bottom: 4px;
      font-size: 14px;
      display: flex;
      justify-content: flex-start;
      & > a,
      & > span {
        height: 18px;
        font-size: 12px;
        line-height: 18px;
        padding-right: 8px;
      }

      &-name {
        transition: color 0.3s;
        font-size: 14px;
        color: @comment-author-name-color;
        > * {
          color: @comment-author-name-color;
          &:hover {
            color: @comment-author-name-color;
          }
        }
      }

      &-time {
        cursor: auto;
        color: @comment-author-time-color;
        white-space: nowrap;
      }
    }

    &-detail p {
      white-space: pre-wrap;
    }
  }

  &-actions {
    margin-top: 12px;
    padding-left: 0;
    > li {
      display: inline-block;
      color: @comment-action-color;
      > span {
        padding-right: 10px;
        transition: color 0.3s;
        font-size: 12px;
        color: @comment-action-color;
        cursor: pointer;
        user-select: none;
        &:hover {
          color: @comment-action-hover-color;
        }
      }
    }
  }

  &-nested {
    margin-left: @comment-nest-indent;
  }
}