diff options
author | Emmanuel ROHEE <erohee@amdocs.com> | 2014-08-27 14:31:20 +0200 |
---|---|---|
committer | Emmanuel ROHEE <erohee@amdocs.com> | 2014-08-27 15:55:51 +0200 |
commit | b1352f97acfd0a588eebd105b4ce757b97baef53 (patch) | |
tree | f6b1c99da815530ab53e1845a1202ae71853b230 /webclient/app.css | |
parent | Rename go() into goToPage() which is available from everywhere thanks to the ... (diff) | |
download | synapse-b1352f97acfd0a588eebd105b4ce757b97baef53.tar.xz |
home/recents: show the last message of each message
Diffstat (limited to 'webclient/app.css')
-rw-r--r-- | webclient/app.css | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/webclient/app.css b/webclient/app.css index dfa17fae62..bc23f76f00 100644 --- a/webclient/app.css +++ b/webclient/app.css @@ -342,6 +342,51 @@ h1 { top: 0; } +/*** Recents ***/ +.recentsTable { + max-width: 480px; + width: 100%; + border-collapse: collapse; + table-layout: fixed; +} + +.recentsTable tr { + width: 100%; +} +.recentsTable td { + vertical-align: text-top; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; +} + +.recentsRoom { + cursor: pointer; +} + +.recentsRoom:hover { + background-color: #f8f8ff; +} + +.recentsRoomName { + font-size: 16px; + padding-top: 7px; + width: auto; +} + +.recentsRoomSummaryTS { + color: #888; + font-size: 12px; + width: 7em; + text-align: right; +} + +.recentsRoomSummary { + color: #888; + font-size: 12px; + padding-bottom: 5px; +} + /*** Profile ***/ .profile-avatar { |