I need help troubleshooting why my buttons are not appearing in the scrollbar on macOS. They function properly on Windows, so I suspect there may be a typo or error in my code. Can anyone take a look and provide some insight?
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background:#eee;
border: thin solid lightgray;
box-shadow: 0px 0px 3px #dfdfdf inset;
border-radius:10px;
}
::-webkit-scrollbar-thumb:horizontal {
background:#4B6A89;
border: thin solid #4B6A89;
border-radius:10px;
height: 8px;
}
::-webkit-scrollbar-thumb:vertical {
background:#A1A7AC;
border: thin solid #dfdfdf;
border-radius:10px;
}
::-webkit-scrollbar-thumb:hover {
background:#4B6A89;
}
::-webkit-scrollbar-button:horizontal:increment {
background-image: url(http://i.imgur.com/rwmYdPk.png);
}
::-webkit-scrollbar-button:horizontal:decrement {
background-image: url(http://i.imgur.com/VAvOauT.png);
}