diff options
author | Kegan Dougal <kegan@matrix.org> | 2014-09-17 16:29:21 +0100 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2014-09-17 16:38:40 +0100 |
commit | 16f55d42752ad8feb473963457834c4fa752245a (patch) | |
tree | 204de3d69cc1682331e3316d5f2fdd129fcea8f4 /webclient/recents/recents.html | |
parent | SYWEB-30: BF: When switching between rooms, pagination flickered between the ... (diff) | |
download | synapse-16f55d42752ad8feb473963457834c4fa752245a.tar.xz |
webclient SYWEB-3 : Public rooms are bold. Can't think of a nicer way which doesn't clutter the recents list.
Diffstat (limited to '')
-rw-r--r-- | webclient/recents/recents.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webclient/recents/recents.html b/webclient/recents/recents.html index e783d3a6b4..7fec8f03e5 100644 --- a/webclient/recents/recents.html +++ b/webclient/recents/recents.html @@ -5,7 +5,7 @@ class ="recentsRoom" ng-class="{'recentsRoomSelected': (room.room_id === recentsSelectedRoomID)}"> <tr> - <td class="recentsRoomName"> + <td ng-class="room.visibility == 'public' ? 'recentsRoomName recentsPublicRoom' : 'recentsRoomName'"> {{ room.room_id | mRoomName }} </td> <td class="recentsRoomSummaryUsersCount"> |