LogicMachine Forum
Size of the "Custom value select" icons - Printable Version

+- LogicMachine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: OLD visualization (https://forum.logicmachine.net/forumdisplay.php?fid=9)
+--- Thread: Size of the "Custom value select" icons (/showthread.php?tid=324)



Size of the "Custom value select" icons - buuuudzik - 16.06.2016

Hello,

I want to ask how can I change the size of "Custom value select" icons or texts because it is very variable and e.g. on PC/Tablet it is ~ok but on Mobile it is very small. Do I can set this size to the same as basic icon on the plan?


RE: Size of the "Custom value select" icons - Erwin van der Zwart - 17.06.2016

Hi Buuuudzik,

You can change it with custom css, here is a small sample but you have to adjust it to your needs:

Code:
.control-vselect ul {     max-width: 300px!important;     max-height: 400px!important;     overflow-y: auto;     -webkit-overflow-scrolling: touch; } .control-vselect .a {     background-color: #C2FFAC;;     width: 200px;     line-height: 24px;     font-size: 24px;     color: #4C97D8; }

BR,

Erwin


RE: Size of the "Custom value select" icons - buuuudzik - 17.06.2016

(17.06.2016, 20:52)Erwin van der Zwart Wrote: Hi Buuuudzik,

You can change it with custom css, here is a small sample but you have to adjust it to your needs:

Code:
.control-vselect ul {     max-width: 300px!important;     max-height: 400px!important;     overflow-y: auto;     -webkit-overflow-scrolling: touch; } .control-vselect .a {     background-color: #C2FFAC;;     width: 200px;     line-height: 24px;     font-size: 24px;     color: #4C97D8; }

BR,

Erwin

ThanksWink I will try.