Hi i am trying to get the scrollbar to appear on a phonegap app, but it just won't appear. I have read all the threads there are.
Set these in the CSS stylesheet. I have already read on the thread that you can't set them? Thanks for your time
scrollbar {
-webkit-appearance: none;
width: 10px !important;
}
::-webkit-scrollbar {
width: 10px !important;
}
scrollbar:vertical {
width: 5px !important;
}
::-webkit-scrollbar:vertical {
width: 5px !important;
}
scrollbar:horizontal {
height: 2px !important;
}
::-webkit-scrollbar:horizontal {
height: 2px !important;
}
scrollbar-thumb {
background-color:#42c0fb !important;
border-radius: 5px !important;
border: 2px solid blue;
background-color:blue;
}
::-webkit-scrollbar-thumb {
background-color:#42c0fb !important;
border-radius: 5px !important;
}
scrollbar-track {
border-radius: 5px !important;
background-color: white !important;
}
::-webkit-scrollbar-track {
border-radius: 5px !important;
background-color: white !important;
}