chenlu
2024-09-12 2e209e63e208bf05ecaab6e810475419709e0514
north-glass-erp/northglass-erp/src/assets/base.css
@@ -84,3 +84,42 @@
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/*滚动条整体部分*/
.mytable-scrollbar ::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
/*滚动条的轨道*/
.mytable-scrollbar ::-webkit-scrollbar-track {
  background-color: #FFFFFF;
}
/*滚动条里面的小方块,能向上向下移动*/
.mytable-scrollbar ::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 5px;
  border: 0 solid #F1F1F1;
  transition: background-color 0.5s ease;
  /*box-shadow: inset 0 0 6px rgba(0,0,0,.3);*/
}
.mytable-scrollbar:hover ::-webkit-scrollbar-thumb {
  background-color: rgb(214,216,221);
  box-shadow: inset 0 0 6px rgba(0,0,0,.3);
}
.mytable-scrollbar:active ::-webkit-scrollbar-thumb {
  background-color: #909399;
}
/*边角,即两个滚动条的交汇处*/
.mytable-scrollbar ::-webkit-scrollbar-corner {
  background-color: #FFFFFF;
}
.vxe-grid{
  background-color: white;
}
/*.vxe-grid .row--current{
  background-color: #d9ecff !important;
}
.vxe-grid .row--hover{
  background-color: #c6e2ff !important;
}*/