index.less 1.33 KB
Newer Older
1
@import "~antd/lib/style/themes/default.less";
2

3
.numberInfo {
niko's avatar
niko committed
4 5 6 7 8 9
  .suffix {
    color: @text-color;
    font-size: 16px;
    font-style: normal;
    margin-left: 4px;
  }
偏右's avatar
偏右 committed
10
  .numberInfoTitle {
afc163's avatar
afc163 committed
11 12
    color: @text-color;
    font-size: @font-size-lg;
13
    margin-bottom: 16px;
afc163's avatar
afc163 committed
14
    transition: all .3s;
15
  }
偏右's avatar
偏右 committed
16
  .numberInfoSubTitle {
17 18 19 20
    color: @text-color-secondary;
    font-size: @font-size-base;
    height: 22px;
    line-height: 22px;
21 22 23 24
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    white-space: nowrap;
25
  }
偏右's avatar
偏右 committed
26 27
  .numberInfoValue {
    margin-top: 4px;
28
    font-size: 0;
29 30 31 32
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    white-space: nowrap;
33 34 35 36 37 38 39 40 41 42
    & > span {
      color: @heading-color;
      display: inline-block;
      line-height: 32px;
      height: 32px;
      font-size: 24px;
      margin-right: 32px;
    }
    .subTotal {
      color: @text-color-secondary;
afc163's avatar
afc163 committed
43
      font-size: @font-size-lg;
44
      vertical-align: top;
afc163's avatar
afc163 committed
45
      margin-right: 0;
46 47 48
      i {
        font-size: 12px;
        transform: scale(0.82);
afc163's avatar
afc163 committed
49
        margin-left: 4px;
50
      }
ddcat1115's avatar
ddcat1115 committed
51 52 53 54 55 56 57 58
      :global {
        .anticon-caret-up {
          color: @red-6;
        }
        .anticon-caret-down {
          color: @green-6;
        }
      }
59 60 61 62
    }
  }
}
.numberInfolight {
偏右's avatar
偏右 committed
63
  .numberInfoValue {
64 65 66 67 68
    & > span {
      color: @text-color;
    }
  }
}