Merge pull request #2013 from ether/getAttributeOnSelection

getAttributeOnSelection function
This commit is contained in:
John McLear 2013-12-09 09:46:57 -08:00
commit 505dc70df5
3 changed files with 85 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;
}