// 修改样式变量
$vxe-font-size: 14px !default;
$vxe-font-color: $ml-font-color !default;
$vxe-primary-color: $ml-theme-primary-color !default;
$vxe-table-font-color: $ml-font-color !default;
$vxe-table-border-color: #D9D9D9 !default;
$vxe-table-header-background-color: #F2F3F5 !default;
$vxe-table-column-padding-mini: 3px !default;

@import 'vxe-table/styles/index.scss';
@import 'vxe-table-plugin-element/dist/style.css';

.vxe-input .vxe-input--prefix,
.vxe-input .vxe-input--extra-suffix {
  color: #666666;
}

.vxe-table ::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
/*滚动条的轨道*/
.vxe-table ::-webkit-scrollbar-track {
  background-color: #FFFFFF;
}
/*滚动条里面的小方块，能向上向下移动*/
.vxe-table ::-webkit-scrollbar-thumb {
  background-color: #bfbfbf;
  border-radius: 5px;
  border: 1px solid #F1F1F1;
  box-shadow: inset 0 0 6px rgba(0,0,0,.3);
}
.vxe-table ::-webkit-scrollbar-thumb:hover {
  background-color: #A8A8A8;
}
.vxe-table ::-webkit-scrollbar-thumb:active {
  background-color: #787878;
}
/*边角，即两个滚动条的交汇处*/
.vxe-table ::-webkit-scrollbar-corner {
  background-color: #FFFFFF;
}

// 覆盖全局通用样式
.vxe-cell {
 & > .ml-upload {
    .file-list {
      max-height: 84px;
    }
    &.type-image {
      .file-list {
        max-height: 110px;
      }
    }
  }
}