Logic Machine Forum
Custom value select - Control Size Scale - 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: Custom value select - Control Size Scale (/showthread.php?tid=3171)



Custom value select - Control Size Scale - jmir - 16.02.2021

Hi,

I've seen that using chrome and android app the function "Control Size Scale" on "Custom value select" doesn't work...
It seems that the property  transform: scale is not inserted inside object properties. But if I add it manually inspecting the object it works...

I've tried it using Mozilla and it's working fine...

Is there any way to solve it when using app?

Thanks.


RE: Custom value select - Control Size Scale - admin - 16.02.2021

This is a known bug. As a temporary solution you can use Custom CSS and additional classes to scale controls.


RE: Custom value select - Control Size Scale - jmir - 16.02.2021

(16.02.2021, 08:03)admin Wrote: This is a known bug. As a temporary solution you can use Custom CSS and additional classes to scale controls.

Done:

Code:
.popover.control-vselect {
  transform: scale(1.75)!important;
}

Thanks!


RE: Custom value select - Control Size Scale - jmir - 06.04.2021

(16.02.2021, 13:26)jmir Wrote:
(16.02.2021, 08:03)admin Wrote: This is a known bug. As a temporary solution you can use Custom CSS and additional classes to scale controls.

Done:

Code:
.popover.control-vselect {
  transform: scale(1.75)!important;
}

Thanks!

Hi, I've just seen that this solution changes the menu size of schedulers day selection, ...
Is there any way to apply it only to custom value selection menus on visualitzation?
Thanks.


RE: Custom value select - Control Size Scale - Daniel - 06.04.2021

Try this
Code:
.popover.control.control-vselect.show{
  transform: scale(1.75)!important;
}



RE: Custom value select - Control Size Scale - jmir - 08.04.2021

(06.04.2021, 15:41)Daniel. Wrote: Try this
Code:
.popover.control.control-vselect.show{
  transform: scale(1.75)!important;
}

Ok now it works!
Thanks!


RE: Custom value select - Control Size Scale - fahd-bnh - 31.01.2022

(08.04.2021, 13:41)jmir Wrote:
(06.04.2021, 15:41)Daniel. Wrote: Try this
Code:
.popover.control.control-vselect.show{
  transform: scale(1.75)!important;
}

Ok now it works!
Thanks!

Hello Daniel,
I'm using the same CSS code and I want to display the Value without touching the slider. 
Please how could I do it ? 
Thanks in advance


RE: Custom value select - Control Size Scale - admin - 01.02.2022

"Custom value select" cannot be used in "Show control" mode.