diff options
author | Erik Johnston <erik@matrix.org> | 2014-08-27 15:34:01 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-08-27 15:34:01 +0100 |
commit | 08881d808d7cfd600d130eb7a960c6c51c797a09 (patch) | |
tree | 1a8c8833a981b9a01e5f8c68c555203f2bc59455 /webclient/app.css | |
parent | Index sources in a nicer fashion. (diff) | |
parent | BF: use room_id if there is no alias (diff) | |
download | synapse-08881d808d7cfd600d130eb7a960c6c51c797a09.tar.xz |
Merge branch 'develop' of github.com:matrix-org/synapse into stream_refactor
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 { |