diff options
author | Matthew Hodgson <matthew@matrix.org> | 2014-08-15 23:24:42 +0100 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2014-08-15 23:24:42 +0100 |
commit | 9f7c5f161cc7eaa1e23994955fc2aa29dd68dad7 (patch) | |
tree | bffad283a0dee45983d2cfc2d75b9b464d3d728d /webclient/index.html | |
parent | Formatting (diff) | |
download | synapse-9f7c5f161cc7eaa1e23994955fc2aa29dd68dad7.tar.xz |
switch some elements from being styled by class to styled by id
Diffstat (limited to 'webclient/index.html')
-rw-r--r-- | webclient/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/webclient/index.html b/webclient/index.html index 387505372a..013f70cba3 100644 --- a/webclient/index.html +++ b/webclient/index.html @@ -24,9 +24,9 @@ <body> - <header class="header"> + <header id="header"> <!-- Do not show buttons on the login page --> - <div class="header-buttons" ng-hide="'/login' == location "> + <div id="header-buttons" ng-hide="'/login' == location "> <button ng-click="showConfig()">Config</button> <button ng-click="logout()">Log out</button> </div> @@ -34,7 +34,7 @@ <h1>[matrix]</h1> </header> - <div class="config" ng-hide="!config"> + <div id="config" ng-hide="!config"> <div>Home server: {{ config.homeserver }} </div> <div>User ID: {{ config.user_id }} </div> <div>Access token: {{ config.access_token }} </div> |