diff options
| author | Zaran <zaran.krleza@gmail.com> | 2011-01-17 10:34:09 +0100 |
|---|---|---|
| committer | Zaran <zaran.krleza@gmail.com> | 2011-01-17 10:34:09 +0100 |
| commit | b11654bf7e54cdd86398a33ce278f3b70e4e319d (patch) | |
| tree | a63cc4f19eb55a9370b67edb73a9f2661b94c572 /webclient/style.css | |
| parent | 0aac4c0d473664635684a6c6da28fffdad78a474 (diff) | |
| download | alias-b11654bf7e54cdd86398a33ce278f3b70e4e319d.tar.gz | |
Add presence management (change contact display in roster on
each presence stanza)
Diffstat (limited to 'webclient/style.css')
| -rw-r--r-- | webclient/style.css | 41 |
1 files changed, 37 insertions, 4 deletions
diff --git a/webclient/style.css b/webclient/style.css index 202a45d..e568584 100644 --- a/webclient/style.css +++ b/webclient/style.css @@ -11,11 +11,12 @@ div padding:0px; } -#contacts +#roster { float:left; - width:40%; + width:250px; height:100%; + font-size:0.8em; } #bottom @@ -43,10 +44,42 @@ div #log { - height:200px; + height:400px; width:100%; overflow:auto; display:none; border-top:1px solid black; } -
\ No newline at end of file + +.roster-contact +{ + border-bottom : 1px dotted black; + padding: 5px; +} + +.roster-contact:hover +{ + background-color: #E5E9EE; +} + + +.roster-name +{ + font-weight:bold; +} + +#roster > ul +{ + list-style-type: none; + padding: 0px; +} + +.online +{ + background-color: #DBFFDC; +} + +.away +{ + background-color: #E3E3E3; +}
\ No newline at end of file |
