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



Mosaic preset - Novodk - 11.03.2025

Could I obtain the CSS file associated with the Mosaic presets?
Furthermore, would it be possible to import the modified file after updating it?

Or is there an easier way to make a preset?


RE: Mosaic preset - Daniel - 11.03.2025

Such modifications will be available only locally. What is the widget name do you refer too?


RE: Mosaic preset - Novodk - 11.03.2025

(11.03.2025, 12:38)Daniel Wrote: Such modifications will be available only locally.  What is the widget name do you refer too?

This is not for a specific widget; it is for the entire Mosaic, allowing us to create a preset theme with our company colors, fonts etc.
I apologize for not initially referring to it as a preset theme.


RE: Mosaic preset - Daniel - 11.03.2025

In this case, just go to Settings & themes, modify as needed and export your settings. You can then import it to any of your projects.


RE: Mosaic preset - Novodk - 11.03.2025

okay, thank you, I just hoped there were a css file where I could change fonts, buttons(widgets) etc


RE: Mosaic preset - Novodk - 13.03.2025

I'm trying to change the color/size of the first letter of all widgets in Mosaic

Code:
.title-inner::first-letter {
  font-size: 18px;
  font-weight: bold;
  color: yellow;
}

What am I doing wrong?


RE: Mosaic preset - admin - 13.03.2025

::first-letter works only on block elements. Add this to CSS:
Code:
.title-inner {
  display: block;
}