/* table 横向滚动条 */
.table-drag-panel {
  position: absolute;
  z-index: 999;
  width: 50%;
  height: 8px;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 1px #fff;
  border-radius: 5px;
  bottom: 0px;
  opacity: 0;
  transition: all .25s;
  cursor: default;
  &:hover, &.active {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
  }
  &:active {
    background: rgba(0, 0, 0, 0.6);
  }
}

.el-table__body-wrapper {
  &:hover {
    .table-drag-panel, .table-drag-cloumn-panel {
      transition: opacity .55s;
      opacity: 1;
    }
  }
}
.el-table {
  &:hover {
    .table-drag-cloumn-panel {
      transition: opacity .55s;
      opacity: 1;
    }
  }
  .table-drag-cloumn-panel-wrapper {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 8px;
  }
  .table-drag-cloumn-panel {
    position: absolute;
    z-index: 999;
    width: 8px;
    height: 50%;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 1px #fff;
    border-radius: 5px;
    top: 0px;
    right: 0;
    opacity: 0;
    transition: all .25s;
    cursor: default;
    &:hover, &.active {
      background: rgba(0, 0, 0, 0.5);
      opacity: 1;
    }
    &:active {
      background: rgba(0, 0, 0, 0.6);
    }
  }
}
