index.less 1.54 KB
Newer Older
1
@import "ant-design-vue/lib/style/themes/default.less";
wanli's avatar
wanli committed
2

3 4 5 6 7 8
.setting-drawer {
  &.content {
    min-height: 100%;
    background: #fff;
    position: relative;
  }
wanli's avatar
wanli committed
9

10 11 12
  & > h3.setting-title {
    margin-bottom: 15px;
  }
wanli's avatar
wanli committed
13

14 15 16 17 18
  & > div.setting-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
wanli's avatar
wanli committed
19

20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
  .blockChecbox {
    display: flex;
    .item {
      margin-right: 16px;
      position: relative;
      // 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%;
      padding-top: 15px;
      padding-left: 24px;
      height: 100%;
      color: @primary-color;
      font-size: 14px;
      font-weight: bold;
wanli's avatar
wanli committed
43 44 45
    }
  }

46 47 48 49 50 51 52 53 54 55
  .colorBlock {
    width: 38px;
    height: 22px;
    margin: 4px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 12px;
    display: inline-block;
    vertical-align: middle;
  }
wanli's avatar
wanli committed
56

57 58 59 60 61 62
  .title {
    font-size: 14px;
    color: @heading-color;
    line-height: 22px;
    margin-bottom: 12px;
  }
wanli's avatar
wanli committed
63

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

82 83 84 85
  .productionHint {
    font-size: 12px;
    margin-top: 16px;
  }
wanli's avatar
wanli committed
86
}