I've styled a scrollbar, but cursor pointer is not working, even after I put !important.
::-webkit-scrollbar {
width: 0.3vw;
height: 20px;
padding: 2px;
cursor: pointer !important;
}
/* Handle */
::-webkit-scrollbar-thumb {
background-color: #808080;
border-radius: 70px;
padding: 2px;
cursor: pointer !important;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background-color: #424242;
cursor: pointer !important;
}
::-webkit-scrollbar-track {
background-color: transparent;
cursor: pointer !important;
}
body {
height: 90000px;
}
I tried and ran it out. I don't see it working.
Can you help me get cursor: pointer for ::-WebKit-scrollbar.
Here are some links for where you can find the scrollbar and cursor pointer: