![]() |
|
[Touch Visu] Customize Options? - 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: [Touch Visu] Customize Options? (/showthread.php?tid=1031) |
[Touch Visu] Customize Options? - Habib - 08.10.2017 Hi, I've searched in the forum for such solutions which are already posted, but I found only the option to hide the Menu (which works well). Now I need to limit the rows to one and maybe if it's possible to scale all sizes a little bit up. Is this possible? RE: [Touch Visu] Customize Options? - admin - 10.10.2017 Use this for single column display: Code: .touch .control-item {
float: none;
width: 100%;
border-right: none;
}
.touch .control-item:nth-child(2) {
border-top: 1px solid #ddd;
height: 49px;
}
.touch .control-item-pad {
display: none;
}You can try this for scaling, but this might not work on all devices: Code: .touch {
width: 80%;
height: 80%;
transform: scale(1.25);
transform-origin: 0 0;
}
.container {
min-width: 150px;
} |