diff options
author | Kegan Dougal <kegan@matrix.org> | 2014-09-08 15:36:52 -0700 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2014-09-08 15:36:52 -0700 |
commit | 324020d5fe212badfbd38137adc8dcecfdc15980 (patch) | |
tree | 050b5568fab3f0126e65dbebacc530b3ce5481e0 /webclient/app.css | |
parent | Update jsfiddles to have more helpful error messages when there is no connect... (diff) | |
download | synapse-324020d5fe212badfbd38137adc8dcecfdc15980.tar.xz |
Display the room topic in the room, underneath the name of the room.
Diffstat (limited to 'webclient/app.css')
-rwxr-xr-x | webclient/app.css | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/webclient/app.css b/webclient/app.css index 19fae632ff..7c367df421 100755 --- a/webclient/app.css +++ b/webclient/app.css @@ -220,12 +220,6 @@ a:active { color: #000; } height: 100%; } -#roomName { - float: right; - font-size: 16px; - margin-top: 15px; -} - #roomHeader { margin: auto; padding-left: 20px; @@ -282,6 +276,21 @@ a:active { color: #000; } float: right; } +#roomName { + font-size: 16px; + text-align: right; +} + +#roomTopic { + text-align: right; + font-size: 13px; +} + +.roomHeaderInfo { + float: right; + margin-top: 15px; +} + /*** Participant list ***/ #usersTableWrapper { |