aboutsummaryrefslogtreecommitdiffstats
path: root/webclient/style
diff options
context:
space:
mode:
authorZaran <zaran.krleza@gmail.com>2011-03-31 01:53:24 +0200
committerZaran <zaran.krleza@gmail.com>2011-03-31 01:53:24 +0200
commit0f42ad64d61bd6e4d7eb8d25f4264dcc8d5865bf (patch)
treed4702a16833909a16f83c5e481ddb0fe3922f1fa /webclient/style
parent35b716a28254788c3a61d41f893bbe92b3bab9d1 (diff)
downloadalias-0f42ad64d61bd6e4d7eb8d25f4264dcc8d5865bf.tar.gz
Basic chat feature, crudely stripped down from Moffit's book.
Diffstat (limited to 'webclient/style')
-rw-r--r--webclient/style/alias.css25
1 files changed, 24 insertions, 1 deletions
diff --git a/webclient/style/alias.css b/webclient/style/alias.css
index 235dd76..1a05bbc 100644
--- a/webclient/style/alias.css
+++ b/webclient/style/alias.css
@@ -80,7 +80,30 @@ input
.chat-messages{
border:1px solid #dddddd;
height:80%;
- margin-bottom:10px;
+ margin-bottom:10px;
+ overflow : auto;
+}
+
+.chat-message{
+ margin: 0px;
+}
+
+.chat-name{
+ margin-right:10px;
+ font-weight:bold;
+ color : #0073EA;
+}
+
+.me{
+ color : #FF0084;
+}
+
+.chat-name:before{
+ content : "<"
+}
+
+.chat-name:after{
+ content : ">"
}
.chat-input{