I have no idea how to style the box that you drag to scroll on jScrollPane. I have tried .jspScrollBar
; no luck.
I updated your fiddle with the solution I think you are looking for.
Specifically, you change the color of the "drag" portion of the scrollbar using the jspDrag
class like so:
.jspDrag {
background-color: #000; /*Changes drag box to black */
}
Updated fiddle: http://jsfiddle.net/n8Xgz/16/