some nice css to that reflect when a button is active

pull/2013/head
John McLear 2013-11-28 17:44:37 +00:00
parent dee2dab7c4
commit e9f7583793
1 changed files with 11 additions and 0 deletions

View File

@ -1067,3 +1067,14 @@ input[type=checkbox] {
}
/* End of gritter stuff */
.activeButton{
background: #eee;
background: -webkit-linear-gradient(#ddd, #fff);
background: -moz-linear-gradient(#ddd, #fff);
background: -o-linear-gradient(#ddd, #fff);
background: -ms-linear-gradient(#ddd, #fff);
background: linear-gradient(#ddd, #fff);
-webkit-box-shadow: 0 0 8px rgba(0,0,0,.1) inset;
-moz-box-shadow: 0 0 8px rgba(0,0,0,.1) inset;
box-shadow: 0 0 8px rgba(0,0,0,.1) inset;
}