diff options
author | Emmanuel ROHEE <erohee@amdocs.com> | 2014-09-16 17:07:47 +0200 |
---|---|---|
committer | Emmanuel ROHEE <erohee@amdocs.com> | 2014-09-16 17:07:47 +0200 |
commit | 06dfbdf7c8eb7e810f9ad56621ce709ee66b210a (patch) | |
tree | 17a17a213d48c1431152d5a85699d73fcc922aeb | |
parent | Bing on all the things if there are 0 bing words. (diff) | |
download | synapse-06dfbdf7c8eb7e810f9ad56621ce709ee66b210a.tar.xz |
WEB-27: We don't need to show the user-count in Recents in the room sidepanel - takes up too much room
-rwxr-xr-x | webclient/app.css | 7 | ||||
-rw-r--r-- | webclient/recents/recents.html | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/webclient/app.css b/webclient/app.css index b947d8b663..704cd83947 100755 --- a/webclient/app.css +++ b/webclient/app.css @@ -603,7 +603,7 @@ a:active { color: #000; } width: auto; } -.recentsRoomSummaryTS { +.recentsRoomSummaryUsersCount, .recentsRoomSummaryTS { color: #888; font-size: 12px; width: 7em; @@ -616,6 +616,11 @@ a:active { color: #000; } padding-bottom: 5px; } +/* Do not show users count in the recents fragment displayed on the room page */ +#roomPage .recentsRoomSummaryUsersCount { + width: 0em; +} + /*** Recents in the room page ***/ #roomRecentsTableWrapper { diff --git a/webclient/recents/recents.html b/webclient/recents/recents.html index 789ffc9d20..e783d3a6b4 100644 --- a/webclient/recents/recents.html +++ b/webclient/recents/recents.html @@ -8,7 +8,7 @@ <td class="recentsRoomName"> {{ room.room_id | mRoomName }} </td> - <td class="recentsRoomSummaryTS"> + <td class="recentsRoomSummaryUsersCount"> <span ng-show="undefined !== room.numUsersInRoom"> {{ room.numUsersInRoom || '1' }} {{ room.numUsersInRoom == 1 ? 'user' : 'users' }} </span> |