summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Davison <snapwilliam@gmail.com>2013-03-07 02:38:43 -0800
committerPatrick Davison <snapwilliam@gmail.com>2013-03-07 02:38:43 -0800
commit03f3979e61cadcc0cad90352a7ae1e5b91e5136f (patch)
tree93d689185f68f7531066cc3da8dfffa93a5c23ae
parent6074cb08fd7297c36302baa4bf55a286dc1f4824 (diff)
downloadpathery-03f3979e61cadcc0cad90352a7ae1e5b91e5136f.tar.xz
CSS for mute icon.
-rw-r--r--css/chat.css17
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;