Community Tip - Need to share some code when posting a question or reply? Make sure to use the "Insert code sample" menu option. Learn more! X
Now I have a project, I need to add many contents in the popover, but the contents are a little too much, which exceeds the maximum range of the set screen. Could you define the contents in the popover and drag them up and down to browse? thank you
Solved! Go to Solution.
Hi @chen ,
on mobile project I have an example of popup widget with a long list of buttons:
The effect is that we can scroll the button to select the correct color
popup widget as floating and using there the following class defintion:
.popup-colors{
border: 20px inset LemonChiffon;
background-color:rgba(255,255,255,0.15);
overflow-y:scroll;
z-index:10;
border: 10px inset rgba(255,250,205,0.35);
}
Hi @chen ,
on mobile project I have an example of popup widget with a long list of buttons:
The effect is that we can scroll the button to select the correct color
popup widget as floating and using there the following class defintion:
.popup-colors{
border: 20px inset LemonChiffon;
background-color:rgba(255,255,255,0.15);
overflow-y:scroll;
z-index:10;
border: 10px inset rgba(255,250,205,0.35);
}
Am I doing this right?
it's working ,thank you very much!