index.less 1.22 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;
jim's avatar
jim committed
7
}
jim's avatar
jim committed
8

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

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

jim's avatar
jim committed
46
.title {
47
  margin-bottom: 12px;
afc163's avatar
afc163 committed
48
  color: @heading-color;
49
  font-size: 14px;
jim's avatar
jim committed
50
  line-height: 22px;
jim's avatar
jim committed
51
}
jim's avatar
jim committed
52

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

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