diff --git a/webclient/app.css b/webclient/app.css index 7698cb4fda4618175e10c39c636f657e791f482b..0c6ae9b668eb0840225f04d55ca15b489d78aa1e 100755 --- a/webclient/app.css +++ b/webclient/app.css @@ -269,6 +269,10 @@ a:active { color: #000; } background-color: #faa; } +.roomHighlight { + font-weight: bold; +} + /*** Participant list ***/ #usersTableWrapper { diff --git a/webclient/home/home.html b/webclient/home/home.html index e3a49bb142f2e11ff04d03c5ae34d94748716296..12b3c7f14ed978608f2a414d1fb95cd0d4531610 100644 --- a/webclient/home/home.html +++ b/webclient/home/home.html @@ -26,7 +26,10 @@ <div class="public_rooms" ng-repeat="room in public_rooms | orderBy:'room_display_name'"> <div> - <a href="#/room/{{ room.room_alias ? room.room_alias : room.room_id }}" >{{ room.room_display_name }}</a> + <a href="#/room/{{ room.room_alias ? room.room_alias : room.room_id }}" + ng-class="room.room_display_name.toLowerCase().indexOf('#matrix:') === 0 ? 'roomHighlight' : ''"> + {{ room.room_display_name }} + </a> </div> </div> <br/>