滚动条样式调整

This commit is contained in:
RuoYi
2019-08-05 09:57:16 +08:00
parent e5ab665c57
commit 5f05734e46
3 changed files with 17 additions and 37 deletions

View File

@ -968,4 +968,20 @@ label {
.fixed-table-container .selected {
background-color: #E8F7FD;
color: #1890ff;
}
/** 滚动条样式 **/
::-webkit-scrollbar-track {
background-color: #F5F5F5;
}
::-webkit-scrollbar {
width: 6px;
height: 10px;
background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb {
border-radius: 6px;
background-color: #999;
}