mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-01-02 02:16:12 -05:00
WEB-27: We don't need to show the user-count in Recents in the room sidepanel - takes up too much room
This commit is contained in:
parent
3395a3305f
commit
06dfbdf7c8
@ -603,7 +603,7 @@ a:active { color: #000; }
|
|||||||
width: auto;
|
width: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.recentsRoomSummaryTS {
|
.recentsRoomSummaryUsersCount, .recentsRoomSummaryTS {
|
||||||
color: #888;
|
color: #888;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
width: 7em;
|
width: 7em;
|
||||||
@ -616,6 +616,11 @@ a:active { color: #000; }
|
|||||||
padding-bottom: 5px;
|
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 ***/
|
/*** Recents in the room page ***/
|
||||||
|
|
||||||
#roomRecentsTableWrapper {
|
#roomRecentsTableWrapper {
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
<td class="recentsRoomName">
|
<td class="recentsRoomName">
|
||||||
{{ room.room_id | mRoomName }}
|
{{ room.room_id | mRoomName }}
|
||||||
</td>
|
</td>
|
||||||
<td class="recentsRoomSummaryTS">
|
<td class="recentsRoomSummaryUsersCount">
|
||||||
<span ng-show="undefined !== room.numUsersInRoom">
|
<span ng-show="undefined !== room.numUsersInRoom">
|
||||||
{{ room.numUsersInRoom || '1' }} {{ room.numUsersInRoom == 1 ? 'user' : 'users' }}
|
{{ room.numUsersInRoom || '1' }} {{ room.numUsersInRoom == 1 ? 'user' : 'users' }}
|
||||||
</span>
|
</span>
|
||||||
|
Loading…
Reference in New Issue
Block a user