Analysis.less 2.2 KB
Newer Older
1 2 3 4 5
@import "~antd/lib/style/themes/default.less";
@import "../../utils/utils.less";

.iconGroup {
  i {
nikogu's avatar
nikogu committed
6 7
    transition: color 0.32s;
    color: @text-color-secondary;
8 9
    cursor: pointer;
    margin-left: 16px;
nikogu's avatar
nikogu committed
10 11 12
    &:hover {
      color: @text-color;
    }
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
  }
}
.rankingList {
  margin-top: 25px;
  li {
    .clearfix();
    margin-top: 16px;
    span {
      color: @text-color;
      font-size: 14px;
      line-height: 22px;
    }
    span:first-child {
      background-color: @background-color-base;
      border-radius: 20px;
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      margin-right: 24px;
      height: 20px;
      line-height: 20px;
      width: 20px;
      text-align: center;
    }
    span.active {
niko's avatar
niko committed
38 39
      //background-color: @primary-color;
      background-color: #314659;
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
      color: #fff;
    }
    span:last-child {
      float: right;
    }
  }
}

.salesExtra {
  display: inline-block;
  margin-right: 24px;
  a {
    color: @text-color;
    margin-left: 24px;
    &:hover {
      color: @primary-color;
    }
  }
}

.salesCard {
61 62 63 64 65 66
  .salesBar {
    padding: 0 0 24px 24px;
  }
  .salesRank {
    padding: 0 24px 24px 0;
  }
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
  :global {
    .ant-tabs-bar {
      padding-left: 24px;
      .ant-tabs-nav .ant-tabs-tab {
        padding-top: 16px;
        padding-bottom: 14px;
        line-height: 24px;
      }
    }
    .ant-tabs-extra-content {
      padding-right: 24px;
      line-height: 55px;
    }
  }
}

niko's avatar
niko committed
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
.salesCard {
  :global {
    .ant-card-head {
      position: relative;
    }
  }
}
.salesCardExtra {
  height: 88px;
}
.salesTypeRadio {
  position: absolute;
  left: 24px;
  bottom: 15px;
}

.offlineCard {
  :global {
    .ant-tabs-bar {
      border-bottom: none;
    }
    .ant-tabs-ink-bar {
      top: 1px;
    }
  }
}

110
@media screen and (max-width: @screen-lg) {
111 112 113
  .salesExtra {
    display: none;
  }
114 115 116 117 118 119 120 121 122
  .rankingList {
    li {
      span:first-child {
        margin-right: 8px;
      }
    }
  }
}

afc163's avatar
afc163 committed
123 124 125
@media screen and (max-width: @screen-md) {
  .rankingTitle {
    margin-top: 16px;
126
  }
afc163's avatar
afc163 committed
127 128 129
}

@media screen and (max-width: @screen-sm) {
130
  .salesExtraWrap {
afc163's avatar
afc163 committed
131
    display: none;
132 133 134 135 136 137 138 139 140
  }
  .salesCard {
    :global {
      .ant-tabs-content {
        padding-top: 30px;
      }
    }
  }
}