diff options
author | John McLear <john@mclear.co.uk> | 2013-11-28 17:44:37 +0000 |
---|---|---|
committer | John McLear <john@mclear.co.uk> | 2013-11-28 17:44:37 +0000 |
commit | e9f7583793308b46ec7a58e3c6aea1ec7182b880 (patch) | |
tree | fed7996aaae67237fb63e663d48868c82ecdaa6a /src/static/css/pad.css | |
parent | dee2dab7c43059e2cb7081f0c9adfa576359efcb (diff) | |
download | etherpad-lite-e9f7583793308b46ec7a58e3c6aea1ec7182b880.zip |
some nice css to that reflect when a button is active
Diffstat (limited to 'src/static/css/pad.css')
-rw-r--r-- | src/static/css/pad.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/static/css/pad.css b/src/static/css/pad.css index 467d5063..0c1153fd 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; +} |