251
Views
6
Comments
Solved
Vertical scrollbar customization.

Hey guys.

I would like to know if anyone can help me with customizing the scroll bar on my list. 

I've already tried to apply some solutions given in other posts here on the forum, but unfortunately none of them worked. 

Below I leave some images and the access link to the application. 

  • Link to access: https://personal-sazpoglu.outsystemscloud.com/ImobiADM/Home?_ts=638448923259783893 


Thank you all!

2021-06-02 20-50-04
Márcio Carvalho
Solution

I think this is what you want, let me know if it helps you :)

.ListScroll::-webkit-scrollbar {

  width: 10px;  

}


/* Track */

.ListScroll::-webkit-scrollbar-track {

  background: #f1f1f1;  border-radius: 20px;

}


/* Handle */

.ListScroll::-webkit-scrollbar-thumb {

  background: #888;  border-radius: 20px;

}


/* Handle on hover */

.ListScroll::-webkit-scrollbar-thumb:hover {

  background: #555;  border-radius: 20px;

}

And put the overflow-y as  auto from the .ListScroll class

PS: the styling that I gave to the scroll is just an example, you can do as you want! :)

You can also look at w3 schools on how to do it :)
https://www.w3schools.com/howto/howto_css_custom_scrollbar.asp

Kind Regards,

Márcio

2023-10-12 01-08-03
Luiz Lima

Thanks Bro.

2023-12-19 16-46-19
Castro Vieira

Hi, Friend.

To implement a horizontal scroll bar in an OutSystems application, you can consider the following options:

Horizontal Bar Multiple Parts component : The "Horizontal Bar Multiple Parts" component available in the OutSystems Forge can be a suitable solution for creating a horizontal scroll bar with multiple parts. You can explore and use this component to meet your horizontal scrolling needs.

Table With Horizontal Scroll component : Another option is the "Table With Horizontal Scroll" component, also available in OutSystems Forge. This component is especially useful if you need a table with horizontal scrolling capabilities.

In addition, you can consult the official OutSystems documentation on "Scrollable Area" for detailed guidance on how to implement scrollable areas in your applications.

2021-06-02 20-50-04
Márcio Carvalho
Solution

I think this is what you want, let me know if it helps you :)

.ListScroll::-webkit-scrollbar {

  width: 10px;  

}


/* Track */

.ListScroll::-webkit-scrollbar-track {

  background: #f1f1f1;  border-radius: 20px;

}


/* Handle */

.ListScroll::-webkit-scrollbar-thumb {

  background: #888;  border-radius: 20px;

}


/* Handle on hover */

.ListScroll::-webkit-scrollbar-thumb:hover {

  background: #555;  border-radius: 20px;

}

And put the overflow-y as  auto from the .ListScroll class

PS: the styling that I gave to the scroll is just an example, you can do as you want! :)

You can also look at w3 schools on how to do it :)
https://www.w3schools.com/howto/howto_css_custom_scrollbar.asp

Kind Regards,

Márcio

2023-10-12 01-08-03
Luiz Lima

Thanks Bro.

2025-07-28 06-45-20
Rupesh Patil

Hello Luiz Lima,

Checked this link if you want custom scrollbar there and below css also there

https://codepen.io/devstreak/pen/dMYgeO

https://codepen.io/thetallweeks/pen/DJjbRK

.ListScroll {

    height: 400px;   

    overflow-y: auto;

}

.ListScroll::-webkit-scrollbar-track

{

    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);

    border-radius: 10px;

    background-color: #F5F5F5;

}

.ListScroll::-webkit-scrollbar

{

    width: 12px;

    background-color: #F5F5F5;

}

.ListScroll::-webkit-scrollbar-thumb

{

    border-radius: 10px;

    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);

    background-color: #D62929;

}

Thanks,

Regards,

Rupesh Patil

2024-05-22 10-21-41
Mohammad Hasib

Hi , Please try the below CSS style.

/* width */

::-webkit-scrollbar {

  width: 20px;

}


/* Track */

::-webkit-scrollbar-track {

  box-shadow: inset 0 0 5px grey; 

  border-radius: 10px;

}

 

/* Handle */

::-webkit-scrollbar-thumb {

  background: red; 

  border-radius: 10px;

}


/* Handle on hover */

::-webkit-scrollbar-thumb:hover {

  background: #b30000; 

}


Regards,

UserImage.jpg
Syakir

Thank you for the post @Luiz Lima &  Thanks for the solution! @Márcio Carvalho 

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.