index.less 1.48 KB
Newer Older
邓超's avatar
邓超 committed
1 2 3 4 5
.indexContainer {
  .anticon svg {
    margin-top: 0px;
  }
}
6 7 8 9 10 11 12

.Popconfirmtitle {
    .ant-popover-message-title {
      padding-left: 0px;
    }
}

邓超's avatar
邓超 committed
13 14 15 16
.mapContent {
  display: flex;
  width: 100%;
  height: calc(100vh - 160px);
17

18
  .ant-radio-wrapper {
19
    min-width: 88px;
20
  }
21 22


邓超's avatar
邓超 committed
23
  .mapTool {
24 25 26 27 28 29
    width: 25%;
    overflow-y: scroll;
    overflow-x: hidden;
    transition-property: width;
    transition-duration: 0.5s;
    position: relative;
邓超's avatar
邓超 committed
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
    .title {
      text-align: center;
      font-weight: 700;
      font-size: 14px;
    }
    .colorContent {
      width: 100%;
      display: flex;
      justify-content: space-between;
      .colorBox {
        width: 15px;
        height: 15px;
        border: 1px solid #ccc;
      }
      .currentColor {
        border: 2px solid #faad14;
      }
    }
48 49 50 51 52 53 54 55 56 57 58 59 60
    .switcher {
      display: block;
      position: absolute;
      font-size: 18px;
      color: #1890ff !important;
      top: 42%;
      right:-2px;
      transform: translate(0%, -50%);
      z-index: 1;
    }
  }
  .mapToolHide{
    width: 26px;
邓超's avatar
邓超 committed
61
  }
62

邓超's avatar
邓超 committed
63 64 65 66 67 68 69 70 71 72 73 74
  .mapBox {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 15px;
    width: 100%;
    height: 100%;
    canvas {
      width: 100%;
      height: 100%;
    }
  }
75 76 77
  .ant-cascader-menu {
    height: 530px;
  }
邓超's avatar
邓超 committed
78
}
79

80 81 82 83 84 85 86 87 88 89 90
.borderColor{
  width: 22px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 2px;
}
.borderColor hover{
  width: 22px;
  height: 20px;
  border: 1px solid rgb(241, 228, 32);
  border-radius: 2px;
91
}