cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

ThingWorx Navigate is now Windchill Navigate Learn More

Translate the entire conversation x

How to reduce the scroll bar width in collection widget

PG_10250187
12-Amethyst

How to reduce the scroll bar width in collection widget

I would like to reduce the width of the scroll bar in the collection widget. Also attached the screenshot for reference.

ACCEPTED SOLUTION

Accepted Solutions

try this CSS... it will be applicable for entire page 

 

/* width */
::-webkit-scrollbar {
width: 5px;
}
/* Track */
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey;
border-radius: 5px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: red;
border-radius: 5px;
}

View solution in original post

2 REPLIES 2

try this CSS... it will be applicable for entire page 

 

/* width */
::-webkit-scrollbar {
width: 5px;
}
/* Track */
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey;
border-radius: 5px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: red;
border-radius: 5px;
}

Yes it worked. Thank You!

Announcements


Top Tags