Reputation: 497
How to change the scrollbar css in Kendo UI grid.
Is there any way (jQuery or CSS or anything) to change the styles. I wanna change the width of the scrollbar.
Upvotes: 1
Views: 5019
Reputation: 887
In webkit, you can use ::-webkit-scrollbar
property to define custom scrolbar
::-webkit-scrollbar {
width: 4px;
}
::-webkit-scrollbar-button {
background: #ccc
}
::-webkit-scrollbar-track-piece {
background: #888
}
::-webkit-scrollbar-thumb {
background: #eee
}
OR
you could use Javascript plugins to customize scrollbars, like jQuery custom content scroller
Upvotes: 5