How do I change the UI Button glow color using CSS?
What command do I give .ui-btn-active to manually set the glow color when activated?
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
What command do I give .ui-btn-active to manually set the glow color when activated?
Hello Mike,
Please take a look at this link: http://stackoverflow.com/questions/82...
Evgene,
Thanks but I still can't get the button glow to change color.
Hello,
Please try using custom CSS:
pre
.ui-btn:focus {
-webkit-box-shadow: 0 0 12px #3BC43B !important;
-moz-box-shadow: 0 0 12px #3BC43B !important;
box-shadow: 0 0 12px #3BC43B !important;
}
/pre
Perfect thanks
What about the glow around an input component when selected?
Hello Mike,
Please take a look at this link: http://stackoverflow.com/questions/16...
Great thanks