diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2013-03-07 02:38:43 -0800 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2013-03-07 02:38:43 -0800 |
commit | 03f3979e61cadcc0cad90352a7ae1e5b91e5136f (patch) | |
tree | 93d689185f68f7531066cc3da8dfffa93a5c23ae /css | |
parent | 6074cb08fd7297c36302baa4bf55a286dc1f4824 (diff) | |
download | pathery-03f3979e61cadcc0cad90352a7ae1e5b91e5136f.tar.xz |
CSS for mute icon.
Diffstat (limited to 'css')
-rw-r--r-- | css/chat.css | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/css/chat.css b/css/chat.css index 66cd086..5b849ac 100644 --- a/css/chat.css +++ b/css/chat.css @@ -3,7 +3,7 @@ font-family: 'Trebuchet MS1', 'Trebuchet MS', sans-serif; border: 1px solid gray; background-color:#999; - width: 680px; + width: 650px; margin: 7px; padding: 2px; border-radius: 10px; @@ -12,11 +12,26 @@ } .chatButton { margin: 0px; + width: 50px; } .chatMute { margin: 0px; width: 15px; } +.chatMute_true, .chatMute_false { + display:inline-block; + border:1px solid gray; + margin-top:3px; + width:17px; + height:17px; + background-size: 100%; +} +.chatMute_true { + background-image: url(../images/Sound.png); +} +.chatMute_false { + background-image: url(../images/Mute.png); +} #chatContainer { width:800px; |