Solved
Collection Widget - Scroll bar visible only on hover
Hi,
How to change scroll bar properties of collection widget using custom css. Mainly I want it to be visible only on hover.
Twx version : 9.7.1
Hi,
How to change scroll bar properties of collection widget using custom css. Mainly I want it to be visible only on hover.
Twx version : 9.7.1
I just found a solution
@supports (ptcs-style-unit: "PTCS-COLLECTION") {
::-webkit-scrollbar {
width: 3px;
height: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: transparent;
border-radius: 4px;
}
:host(:hover) ::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.35);
}
:host(:hover) ::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.1);
}
}
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.