@import "common/var";
.el-resize-box {
  position: relative;
  display: table;
  overflow: hidden;
  width: 100%;
}

.el-resize-disabled .el-resize-line {
  cursor: not-allowed;
}

.el-resize-line {
  position: absolute;
  // margin: auto;
}

.el-resize-border_top-rect {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 6px;
  background-color: $--color-bg-4;
  cursor: row-resize;

  .el-resize-icon {
    position: relative;
    top: -6px;
    left: 0;
    margin-left: -6px;
    width: 12px;
    height: 12px;
  }
}

.el-resize-border_top-line,
.el-resize-border_bottom-line {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 7px;
  background-color: #fff;
  cursor: row-resize;

  .el-resize-border-line {
    width: 100%;
    height: 1px;
    background-color: $--primary-6;
    flex: 1;
  }
}

.el-resize-border_bottom-line {
  bottom: 0;
}

.el-resize-border_left-rect {
  top: 0;
  left: 0;
  bottom: 0;
  width: 6px;
  height: 100%;
  background-color: $--color-bg-4;
  cursor: col-resize;

  .el-resize-icon {
    position: relative;
    top: 50%;
    margin-top: -6px;
    left: -3px;
    width: 12px;
    height: 12px;
  }
}

.el-resize-border_right-rect {
  top: 0;
  right: 0;
  bottom: 0;
  width: 6px;
  height: 100% !important;
  background-color: $--color-bg-4;
  cursor: col-resize;

  .el-resize-icon {
    position: relative;
    top: 50%;
    margin-top: -6px;
    left: -3px;
    width: 12px;
    height: 12px;
  }
}

.el-resize-border_right-line,
.el-resize-border_left-line {
  right: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 7px;
  background-color: #fff;
  cursor: col-resize;

  .el-resize-border-line {
    width: 1px;
    height: 100%;
    background-color: $--primary-6;
    flex: 1;
  }
}

.el-resize-border_left-line {
  left: 0;
}

.el-resize-border_right-line::before,
.el-resize-border_right-line::after,
.el-resize-border_left-line::before,
.el-resize-border_left-line::after,
.el-resize-border_top-line::before,
.el-resize-border_top-line::after,
.el-resize-border_bottom-line::before,
.el-resize-border_bottom-line::after {
  content: '';
  position: relative;
  z-index: 9;
  width: 5px;
  height: 5px;
  border: 1px solid $--primary-6;
}

.el-resize-border_top-line::before,
.el-resize-border_top-line::after,
.el-resize-border_bottom-line::before,
.el-resize-border_bottom-line::after {
  z-index: 0;
}

.el-resize-border_bottom-rect {
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  cursor: row-resize;
  background-color: $--color-bg-4;

  .el-resize-icon {
    position: relative;
    top: -6px;
    left: 0;
    margin-left: -6px;
    width: 12px;
    height: 12px;
  }
}
