index.less 1.37 KB
Newer Older
DarkForst's avatar
DarkForst committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
.wrap_page{
  position: relative;
  width: 100%;
  height: 100%;
}
.search_left{
  display: flex;
  flex-flow: row wrap;
  align-content:space-around;
  align-items: center;
  justify-content: flex-start;
}
.config_info{
  padding: 10px;
  border: 1px solid #DDDDDD;
  border-radius: 5px;
}
.json_upload{
  :global{
    .ant-upload-list-item{
      margin-top: 0;
    }
  }
}
.config_box{
  margin: 10px -10px 0;
  padding: 10px;
  box-shadow: 0 -2px 5px 0 rgba(137,137,137,0.3);
}


/* 属性配置 */
.attribute_box{
  width: 26px;
  height: 25px;
  color: #fff;
  font-size: 14px;
  background: #FF3C7A;
  cursor: pointer;
}
.attribute_workplace_box{
  margin-top: 10px;
  padding: 10px;
}
.attribute_draw_title{
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #DDDDDD;
}

.attr_box{
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
  border: 1px solid #DDDDDD;
}

.attribute_workplace{
  overflow-y: auto;
  &::-webkit-scrollbar {
    width: 4px;
  }
  &::-webkit-scrollbar-track{
    background-color: rgba(0, 0, 0, 0.3);
  }
  &::-webkit-scrollbar-thumb{
    background-color: @primary-color;
  }

}
.span_style{
  display: inline-block;
  min-width: 70px;
  height: 28px;
  padding: 0 10px;
  margin: 5px 0;
  line-height: 28px;
  text-align: center;
  color: #3D97FF;
  border-radius: 17px;
  background: rgba(61, 151, 255, .2);
  border: 1px solid #3D97FF;
}