mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
Fixed public room name and users count alignement
Put data into a table to ease layout and manage long strings
This commit is contained in:
parent
09a59ce2d3
commit
a2cd942a95
@ -268,26 +268,38 @@ a:active { color: #000; }
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.publicRoomEntry {
|
||||
.publicTable {
|
||||
max-width: 480px;
|
||||
margin-bottom: 5px;
|
||||
border-bottom: 1px #ddd solid;
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
.publicTable tr {
|
||||
width: 100%;
|
||||
}
|
||||
.publicTable td {
|
||||
vertical-align: text-top;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.publicRoomEntry {
|
||||
max-width: 430px;
|
||||
}
|
||||
|
||||
.publicRoomJoinedUsers {
|
||||
float: right;
|
||||
width: 5em;
|
||||
text-align: right;
|
||||
font-size: 12px;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.publicRoomTopic {
|
||||
color: #888;
|
||||
font-size: 12px;
|
||||
padding-right: 5px;
|
||||
width: 15em;
|
||||
float: right;
|
||||
text-align: right;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
padding-bottom: 5px;
|
||||
border-bottom: 1px #ddd solid;
|
||||
}
|
||||
|
||||
#roomName {
|
||||
|
@ -24,21 +24,30 @@
|
||||
|
||||
<h3>Public rooms</h3>
|
||||
|
||||
<div class="public_rooms" ng-repeat="room in public_rooms | orderBy:'room_display_name'">
|
||||
<div class="publicRoomEntry">
|
||||
<a href="#/room/{{ room.room_alias ? room.room_alias : room.room_id }}"
|
||||
<table class="publicTable">
|
||||
<tbody ng-repeat="room in public_rooms | orderBy:'room_display_name'"
|
||||
class="publicRoomEntry"
|
||||
ng-class="room.room_display_name.toLowerCase().indexOf('#matrix:') === 0 ? 'roomHighlight' : ''">
|
||||
<tr>
|
||||
<td class="publicRoomEntry">
|
||||
<a href="#/room/{{ room.room_alias ? room.room_alias : room.room_id }}" >
|
||||
{{ room.room_display_name }}
|
||||
</a>
|
||||
<div ng-class="room.room_display_name.toLowerCase().indexOf('#matrix:') === 0 ? 'publicRoomJoinedUsers roomHighlight' : 'publicRoomJoinedUsers'"
|
||||
</td>
|
||||
<td>
|
||||
<div class="publicRoomJoinedUsers"
|
||||
ng-show="room.num_joined_members">
|
||||
{{ room.num_joined_members }} {{ room.num_joined_members == 1 ? 'user' : 'users' }}
|
||||
</div>
|
||||
<div class="publicRoomTopic" ng-show="room.topic">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" class="publicRoomTopic">
|
||||
{{ room.topic }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<br/>
|
||||
|
||||
<div>
|
||||
|
Loading…
Reference in New Issue
Block a user