Page 1 of 1

How do I change the UI Button glow color using CSS?

Posted: Tue May 13, 2014 6:48 pm
by Mike6580064

What command do I give .ui-btn-active to manually set the glow color when activated?


How do I change the UI Button glow color using CSS?

Posted: Tue May 13, 2014 7:35 pm
by Evgene Karachevtsev

Hello Mike,

Please take a look at this link: http://stackoverflow.com/questions/82...


How do I change the UI Button glow color using CSS?

Posted: Tue May 13, 2014 8:42 pm
by Mike6580064

Evgene,

Thanks but I still can't get the button glow to change color.


How do I change the UI Button glow color using CSS?

Posted: Tue May 13, 2014 10:59 pm
by Igor

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


How do I change the UI Button glow color using CSS?

Posted: Wed May 14, 2014 12:54 am
by Mike6580064

Perfect thanks


How do I change the UI Button glow color using CSS?

Posted: Wed May 14, 2014 3:41 pm
by Mike6580064

What about the glow around an input component when selected?


How do I change the UI Button glow color using CSS?

Posted: Wed May 14, 2014 5:24 pm
by Evgene Karachevtsev

Hello Mike,

Please take a look at this link: http://stackoverflow.com/questions/16...


How do I change the UI Button glow color using CSS?

Posted: Wed May 14, 2014 6:02 pm
by Mike6580064

Great thanks