Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change the active state default color "blue"

I was trying to change the .active state's default color. Tried changing in the .ui-btn-active. Didn't work. Any ideas?? Here is the link

like image 533
Priya Avatar asked Jun 10 '11 01:06

Priya


1 Answers

Try adding it as the last rule, with the !important clause:

.ui-btn-active { color: red !important; background: none !important; background-color: green !important;  }

Worked fine here on your jsFiddle.

like image 173
J.T.Sage Avatar answered Sep 19 '22 19:09

J.T.Sage