Logic Machine Forum
Mosaic menu - 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: Mosaic menu (/showthread.php?tid=4463)



Mosaic menu - tomnord - 23.12.2022

Hello, In mosaic you have "Main Screen", "Floors", "Functions", is it possible to change these texts?

In settings you have the possibility to set scaling for mobile devices. Is it possible to go beyond 100%? I have a 7inch tablet and the buttons for navigating to floors and rooms ar quite small. See attached.

When you have these buttons for navigating, is it possible to have additional widgets on the homescreen, or will widgets remove navigation buttons?


RE: Mosaic menu - Daniel - 23.12.2022

You can add an icon to the room and then the button will be square and bigger, a widget size.


RE: Mosaic menu - tomnord - 23.12.2022

(23.12.2022, 13:26)Daniel Wrote: You can add an icon to the room and then the button will be square and bigger, a widget size.

Yes, I have done that, but I can't set Icons on "Floors".
I have 6 different apartments for disabled people, and the staff wants easy access to all apartments from one tablet.


RE: Mosaic menu - admin - 27.12.2022

This CSS will scale widgets on the main page by a factor of 1.33. All other pages are not affected by this CSS.
Code:
.route_main #widgets {
  transform: scale(1.33);
  transform-origin: 0 0;
}



RE: Mosaic menu - tomnord - 28.12.2022

(27.12.2022, 07:43)admin Wrote: This CSS will scale widgets on the main page by a factor of 1.33. All other pages are not affected by this CSS.
Code:
.route_main #widgets {
  transform: scale(1.33);
  transform-origin: 0 0;
}

That worked perfectly. Thank you.