@import "../styles/common";

.w-stretch-line{
  stroke: transparent;
  fill: transparent;
  //fill: orange;
  &-left{
    cursor: e-resize;
  }
  &-right{
    cursor: e-resize;
  }
  &-top{
    cursor: n-resize;
  }
  &-bottom{
    cursor: n-resize;
  }
}

.w-stretch{
  &.disabled{
    .w-stretch-line,
    .w-stretch-point{
      display: none;
    }
  }
}


.w-stretch-point{
  stroke: transparent;
  fill: transparent;

  //fill: red;
  &-left-top{
    cursor: nwse-resize;
  }
  &-left-bottom{
    cursor: nesw-resize;
  }
  &-right-top{
    cursor: nesw-resize;
  }
  &-right-bottom{
    cursor: nwse-resize;
  }
}
