index.less 1.22 KB
Newer Older
1 2 3
@import '~antd/lib/style/themes/default.less';

.content {
Yu's avatar
Yu committed
4
  position: relative;
5 6 7 8 9 10 11 12
  min-height: 100%;
  background: #fff;
}

.blockChecbox {
  display: flex;
  .item {
    position: relative;
Yu's avatar
Yu committed
13
    margin-right: 16px;
14 15 16 17 18 19 20 21 22 23 24 25
    // box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
    border-radius: @border-radius-base;
    cursor: pointer;
    img {
      width: 48px;
    }
  }
  .selectIcon {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
Yu's avatar
Yu committed
26
    height: 100%;
27 28 29 30
    padding-top: 15px;
    padding-left: 24px;
    color: @primary-color;
    font-weight: bold;
Yu's avatar
Yu committed
31
    font-size: 14px;
32 33 34 35
  }
}

.color_block {
Yu's avatar
Yu committed
36
  display: inline-block;
37 38 39 40 41
  width: 38px;
  height: 22px;
  margin: 4px;
  margin-right: 12px;
  vertical-align: middle;
Yu's avatar
Yu committed
42 43
  border-radius: 4px;
  cursor: pointer;
44 45 46
}

.title {
Yu's avatar
Yu committed
47
  margin-bottom: 12px;
48
  color: @heading-color;
Yu's avatar
Yu committed
49
  font-size: 14px;
50 51 52 53 54 55 56
  line-height: 22px;
}

.handle {
  position: absolute;
  top: 240px;
  right: 300px;
Yu's avatar
Yu committed
57
  z-index: 0;
58 59 60
  display: flex;
  justify-content: center;
  align-items: center;
Yu's avatar
Yu committed
61 62
  width: 48px;
  height: 48px;
63
  font-size: 16px;
Yu's avatar
Yu committed
64 65
  text-align: center;
  background: @primary-color;
66
  border-radius: 4px 0 0 4px;
Yu's avatar
Yu committed
67 68
  cursor: pointer;
  pointer-events: auto;
69 70 71 72
}

.productionHint {
  margin-top: 16px;
Yu's avatar
Yu committed
73
  font-size: 12px;
74
}