diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2013-03-10 23:05:53 -0700 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2013-03-10 23:05:53 -0700 |
commit | 3eaecf134d4b50c3155d3387a3a387e236e7afcb (patch) | |
tree | ce0c6cbc76cada3bfabe815cc21298f054cfe67f /css | |
parent | 805a8fc305b140bc47e95a6ce4e01de0315bfe8c (diff) | |
download | pathery-3eaecf134d4b50c3155d3387a3a387e236e7afcb.tar.xz |
Chat mute-button click sound.
Diffstat (limited to 'css')
-rw-r--r-- | css/chat.css | 5 | ||||
-rw-r--r-- | css/maps.css | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/css/chat.css b/css/chat.css index dda50eb..79354b1 100644 --- a/css/chat.css +++ b/css/chat.css @@ -24,6 +24,11 @@ top: 5px; margin-right: 5px; border-radius:5px; + + transition:background-color 0.6s ease-out; + -webkit-transition:background-color 0.6s ease-out; + -o-transition:background-color 0.6s ease-out; + -moz-transition:background-color 0.6s ease-out; } .chatMute_true { background-image: url(../images/Mute.png); diff --git a/css/maps.css b/css/maps.css index 085b273..0c18725 100644 --- a/css/maps.css +++ b/css/maps.css @@ -209,6 +209,11 @@ top: 5px;
margin-right: 5px;
border-radius:5px;
+
+ transition:background-color 0.6s ease-out;
+ -webkit-transition:background-color 0.6s ease-out;
+ -o-transition:background-color 0.6s ease-out;
+ -moz-transition:background-color 0.6s ease-out;
}
.mapMute_true {
background-image: url(../images/Mute.png);
|