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

jim's avatar
jim committed
3
.content {
F-loat's avatar
F-loat committed
4
  min-height: 100%;
jim's avatar
jim committed
5
  background: #fff;
陈帅's avatar
陈帅 committed
6
  position: relative;
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 13 14
    margin-right: 16px;
    position: relative;
    // 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 26 27 28 29 30 31
    img {
      width: 48px;
    }
  }
  .selectIcon {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    padding-top: 15px;
    padding-left: 24px;
    height: 100%;
    color: @primary-color;
    font-size: 14px;
    font-weight: bold;
jim's avatar
jim committed
32 33
  }
}
afc163's avatar
afc163 committed
34

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

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

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

.productionHint {
  font-size: 12px;
  color: @text-color-secondary;
afc163's avatar
afc163 committed
74
  margin-top: 16px;
afc163's avatar
afc163 committed
75
}