Logic Machine Forum
Pop UP Custom Value Height - Printable Version

+- Logic Machine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: Visualization (https://forum.logicmachine.net/forumdisplay.php?fid=9)
+--- Thread: Pop UP Custom Value Height (/showthread.php?tid=6017)



Pop UP Custom Value Height - sjfp - 07.06.2025

How can i adjust the size (Height) of a popup box. I have 7 custom values, but the pop up only show 5 of them, so you have to use the slider to show the missing 2 values.
I there a way to show all 7 custom values so the user does need to use the slider ?
Also need to enlarge the popup and center all popups to the center of the screen


RE: Pop UP Custom Value Height - sjfp - 08.06.2025

(07.06.2025, 15:27)sjfp Wrote: How can i adjust the size (Height) of a popup box. I have 7 custom values, but the pop up only show 5 of them, so you have to use the slider to show the missing 2 values.
I there a way to show all 7 custom values so the user does need to use the slider ?
Also need to enlarge the popup and center all popups to the center of the screen

Sorted, used the following in CSS

.control-vselect .popover-content .nav {
  max-height: 250px;
  overflow-y: auto;
}


RE: Pop UP Custom Value Height - admin - 09.06.2025

Use this CSS to center the control and make it larger:
Code:
.control-vselect {
  top: 50% !important;
  left: 50% !important;
  transform: scale(150%) translate(-50%, -50%) !important;
}
.control-vselect ul {
  max-height: none;
}



RE: Pop UP Custom Value Height - sjfp - 09.06.2025

Thank you for your help. Appreciated