- 修改浏览器滚动条样式
::-webkit-scrollbar {
width: 6px;
height: 6px;
background: #efefef;
}
::-webkit-scrollbar-thumb {
background-color: #bdb7b7;
border-radius: 32px;
}
::-webkit-scrollbar-track {
background-color: #efefef;
border-radius: 32px;
}
- 修改element table滚动条样式.
/deep/.el-table__body-wrapper::-webkit-scrollbar {
width: 8px;
height: 8px;
}
/deep/.el-table__body-wrapper::-webkit-scrollbar-thumb {
background-color: #b3d8ff;
border-radius: 6px;
}
/deep/.el-table__body-wrapper::-webkit-scrollbar-thumb:hover {
background-color: #66b1ff;
border-radius: 8px;
}
/deep/.el-table__body-wrapper::-webkit-scrollbar-track-piece {
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
border-radius: 8px;
background: #ededed
}