Skip to main content
11-Garnet
April 24, 2023
Question

How to change color of scoll bars in Mashups

  • April 24, 2023
  • 2 replies
  • 1193 views

Can we change the color of the scroll bar in mashups?

If so, please suggest?

 

 

 

2 replies

Dale_Rosema
23-Emerald III
23-Emerald III
April 24, 2023

Are you talking about the scroll bars on PTC Community or one of their products.

Or are you talking ThingWorkx?

Rayon_1111-GarnetAuthor
11-Garnet
April 24, 2023

On ThingWorx 

 

17-Peridot
April 24, 2023

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