Post

aggrid滚动条样式

1
2
3
4
5
6
7
8
9
10
11
12
13
14
.ag-root ::-webkit-scrollbar {
   width: 10px;
   height: 10px;
}
.ag-root ::-webkit-scrollbar-button {
   background: @bg-color-dark;
}
.ag-root ::-webkit-scrollbar-thumb {
   background: @font-color-dark;
   border-radius: 5px;
}
.ag-root ::-webkit-scrollbar-track-piece {
   background: @bg-color-dark;
}
This post is licensed under CC BY 4.0 by the author.