Remove mx_RoomView_container

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2021-02-26 11:19:45 +01:00
parent 0d6a9fce67
commit 11c5aa02d2
No known key found for this signature in database
GPG Key ID: 9760693FDD98A790
3 changed files with 15 additions and 24 deletions

View File

@ -20,6 +20,7 @@ limitations under the License.
min-width: 0;
height: 100%;
justify-content: space-between;
min-height: 0;
}
.mx_MainSplit > .mx_RightPanel_ResizeWrapper {

View File

@ -135,14 +135,6 @@ limitations under the License.
height: 50px;
}
.mx_RoomView_container {
position: relative; //for .mx_RoomView_auxPanel_fullHeight
display: flex;
flex-direction: column;
width: 100%;
min-width: 0;
}
.mx_RoomView_body {
display: flex;
flex-direction: column;

View File

@ -2058,24 +2058,22 @@ export default class RoomView extends React.Component<IProps, IState> {
appsShown={this.state.showApps}
/>
<MainSplit panel={rightPanel} resizeNotifier={this.props.resizeNotifier}>
<div className="mx_RoomView_container">
<div className="mx_RoomView_body">
{auxPanel}
<div className="mx_RoomView_body">
<div className={timelineClasses}>
{topUnreadMessagesBar}
{jumpToBottom}
{messagePanel}
{searchResultsPanel}
</div>
<div className={statusBarAreaClass}>
<div className="mx_RoomView_statusAreaBox">
<div className="mx_RoomView_statusAreaBox_line" />
{statusBar}
</div>
</div>
{previewBar}
{messageComposer}
<div className={timelineClasses}>
{topUnreadMessagesBar}
{jumpToBottom}
{messagePanel}
{searchResultsPanel}
</div>
<div className={statusBarAreaClass}>
<div className="mx_RoomView_statusAreaBox">
<div className="mx_RoomView_statusAreaBox_line" />
{statusBar}
</div>
</div>
{previewBar}
{messageComposer}
</div>
</MainSplit>
</ErrorBoundary>