diff --git a/src/static/css/pad.css b/src/static/css/pad.css index 467d50632..0c1153fde 100644 --- a/src/static/css/pad.css +++ b/src/static/css/pad.css @@ -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; +}