index.less 1.04 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
@import (reference) '~antd/es/style/themes/default';
@history-info-prefix-cls: ~'@{ant-prefix}-history-info';

.@{history-info-prefix-cls} {
  &-content {
    padding: 10px 0 0 0;
  }

  &-time {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
邓晓峰's avatar
邓晓峰 committed
13
    white-space: nowrap;
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

    .@{history-info-prefix-cls}-label {
      letter-spacing: 27px;
    }

    .@{history-info-prefix-cls}-label:after {
      right: -20px;
    }

    .ant-radio-group,
    .ant-select {
      margin-right: 16px;
    }

    .anticon-plus-circle {
      margin-left: 10px;
      color: @primary-color;
邓晓峰's avatar
邓晓峰 committed
31
      font-size: 16px;
32 33 34 35 36 37 38 39
      cursor: pointer;
    }
  }

  &-cover {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
邓晓峰's avatar
邓晓峰 committed
40
    white-space: nowrap;
41 42 43 44 45 46 47 48 49 50
  }

  &-label {
    position: relative;
    width: 80px;
  }

  &-label:after {
    position: absolute;
    top: 0;
邓晓峰's avatar
邓晓峰 committed
51 52
    right: 7px;
    content: ':';
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
  }

  &-connect {
    margin: 0 10px;
  }

  &-connect.first {
    display: none;
  }

  &-contrast-list {
    display: flex;
    align-items: center;
  }
}