tishantha
tishantha

Reputation: 497

Change the scrollbar styles in KendoUI grid

How to change the scrollbar css in Kendo UI grid. enter image description here

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

Answers (1)

Muhammed Aslam C
Muhammed Aslam C

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

Related Questions