Custom Scrollbar for Internet Explorer

0
Hi all, I want css code to design custom scrollbar for Internet Explorer.I have searched but not found the code, could you please anyone help me out thanks and regards, Shaik Noor.
asked
3 answers
2

This seems to me not to be a Mendix related question? 

You'd better try your luck on Stack Overflow I think.. https://stackoverflow.com/questions/29698207/how-to-make-a-custom-scroll-bars-in-ie

answered
2

 Тry this widget: https://appstore.home.mendix.com/link/app/105048/

The look and feel of the scrollbar can be customized to your hearts content.

answered
1

Hi Shaik,

you can append this custom css code in your scss file and use “.slim-scroll” class for where ever u want to enable this scroll. 

.slim-scroll::-webkit-scrollbar{
    width: 8px;
  background-color: gray;
 }
 .slim-scroll::-webkit-scrollbar-thumb{
    border-radius: 8px;
    box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: black;
 }
 .slim-scroll::-webkit-scrollbar-track{
 box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  border-radius: 10px;
  background-color: gray;
 }

 

answered