Logic Machine Forum
custom CSS circularslider - 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 CSS circularslider (/showthread.php?tid=445)



custom CSS circularslider - akn - 31.10.2016

How to change the internal background color in (.popover.control-circularslider)


RE: custom CSS circularslider - admin - 31.10.2016

It's not possible to change it via CSS, but you can set it per-object in Objects tab -> Vis. parameters.


RE: custom CSS circularslider - admin - 01.11.2016

Try this:
Code:
.popover.control-circularslider {
  background-color: #F0F;
}



RE: custom CSS circularslider - akn - 01.11.2016

Don't work


RE: custom CSS circularslider - admin - 03.11.2016

You have to add !important to background color property if you have "Usermode background color" set in Vis. configuration.
Code:
.popover.control-circularslider {
  background-color: #F0F !important;
}



RE: custom CSS circularslider - akn - 15.12.2016

(03.11.2016, 09:16)admin Wrote: You have to add !important to background color property if you have "Usermode background color" set in Vis. configuration.
Code:
.popover.control-circularslider {
 background-color: #F0F !important;
}

Its OK!