Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X
Can we change the color of the scroll bar in mashups?
If so, please suggest?
Are you talking about the scroll bars on PTC Community or one of their products.
Or are you talking ThingWorkx?
On ThingWorx
Hello,
It depends a little bit on which scrollbars you are talking about.
But here is some custom CSS (we have them in our Style theme) that you can try out to see if they do what you want:
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #888;
}
::-webkit-scrollbar-thumb {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
Regards,
Jens