mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-15 00:43:51 +01:00
Added the recents component at the left hand side of the room page
This commit is contained in:
parent
e179ed1f60
commit
7ee5288849
2 changed files with 14 additions and 1 deletions
|
@ -387,6 +387,15 @@ h1 {
|
|||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
/*** Recents in the room page ***/
|
||||
#roomRecentsTableWrapper {
|
||||
float: left;
|
||||
max-width: 320px;
|
||||
margin-right: 20px;
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
/*** Profile ***/
|
||||
|
||||
.profile-avatar {
|
||||
|
|
|
@ -7,7 +7,11 @@
|
|||
<div id="roomName">
|
||||
{{ room_alias || room_id }}
|
||||
</div>
|
||||
|
||||
|
||||
<div id="roomRecentsTableWrapper">
|
||||
<div ng-include="'recents/recents.html'"></div>
|
||||
</div>
|
||||
|
||||
<div id="usersTableWrapper">
|
||||
<table id="usersTable">
|
||||
<tr ng-repeat="member in members | orderMembersList">
|
||||
|
|
Loading…
Reference in a new issue