diff options
author | Matthew Hodgson <matthew@matrix.org> | 2014-08-14 02:13:14 +0100 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2014-08-14 02:14:15 +0100 |
commit | 6c2db18be150eb6410f1e3a148057b81dcae8093 (patch) | |
tree | 02ab28453fa635ddb77e7c72989827bb6fabe04e /webclient/rooms/rooms.html | |
parent | fix whitespace (diff) | |
download | synapse-6c2db18be150eb6410f1e3a148057b81dcae8093.tar.xz |
completely change the CSS to be an entirely 'position: absolute' layout rather than top-to-bottom. makes the overscroll much more predictable and sane and not dependent on CSS expressions.
Diffstat (limited to 'webclient/rooms/rooms.html')
-rw-r--r-- | webclient/rooms/rooms.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/webclient/rooms/rooms.html b/webclient/rooms/rooms.html index f134e5ee8c..d303e143b9 100644 --- a/webclient/rooms/rooms.html +++ b/webclient/rooms/rooms.html @@ -1,7 +1,8 @@ <div ng-controller="RoomsController" class="rooms"> <div class="page"> - + <div class="wrapper"> + <div> <form> <input size="40" ng-model="newProfileInfo.name" ng-enter="setDisplayName(newProfileInfo.name)" /> @@ -77,4 +78,5 @@ {{ feedback }} </div> + </div> </div> |