index.less 1.3 KB
Newer Older
jim's avatar
jim committed
1 2
@import '~antd/lib/style/themes/default.less';

jim's avatar
jim committed
3
.content {
4
  position: relative;
F-loat's avatar
F-loat committed
5
  min-height: 100%;
jim's avatar
jim committed
6
  background: #fff;
7 8 9 10 11 12 13
  :global {
    .ant-list-item {
      span {
        flex: 1;
      }
    }
  }
jim's avatar
jim committed
14
}
jim's avatar
jim committed
15

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

jim's avatar
jim committed
42
.color_block {
43
  display: inline-block;
jim's avatar
jim committed
44 45 46 47 48
  width: 38px;
  height: 22px;
  margin: 4px;
  margin-right: 12px;
  vertical-align: middle;
49 50
  border-radius: 4px;
  cursor: pointer;
jim's avatar
jim committed
51
}
afc163's avatar
afc163 committed
52

jim's avatar
jim committed
53
.title {
54
  margin-bottom: 12px;
afc163's avatar
afc163 committed
55
  color: @heading-color;
56
  font-size: 14px;
jim's avatar
jim committed
57
  line-height: 22px;
jim's avatar
jim committed
58
}
jim's avatar
jim committed
59

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

.productionHint {
afc163's avatar
afc163 committed
79
  margin-top: 16px;
80
  font-size: 12px;
afc163's avatar
afc163 committed
81
}