You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-30 02:21:17 +03:00
Remove mx_RoomView_container
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
@ -20,6 +20,7 @@ limitations under the License.
|
|||||||
min-width: 0;
|
min-width: 0;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
min-height: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_MainSplit > .mx_RightPanel_ResizeWrapper {
|
.mx_MainSplit > .mx_RightPanel_ResizeWrapper {
|
||||||
|
@ -135,14 +135,6 @@ limitations under the License.
|
|||||||
height: 50px;
|
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 {
|
.mx_RoomView_body {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
@ -2058,24 +2058,22 @@ export default class RoomView extends React.Component<IProps, IState> {
|
|||||||
appsShown={this.state.showApps}
|
appsShown={this.state.showApps}
|
||||||
/>
|
/>
|
||||||
<MainSplit panel={rightPanel} resizeNotifier={this.props.resizeNotifier}>
|
<MainSplit panel={rightPanel} resizeNotifier={this.props.resizeNotifier}>
|
||||||
<div className="mx_RoomView_container">
|
<div className="mx_RoomView_body">
|
||||||
{auxPanel}
|
{auxPanel}
|
||||||
<div className="mx_RoomView_body">
|
<div className={timelineClasses}>
|
||||||
<div className={timelineClasses}>
|
{topUnreadMessagesBar}
|
||||||
{topUnreadMessagesBar}
|
{jumpToBottom}
|
||||||
{jumpToBottom}
|
{messagePanel}
|
||||||
{messagePanel}
|
{searchResultsPanel}
|
||||||
{searchResultsPanel}
|
|
||||||
</div>
|
|
||||||
<div className={statusBarAreaClass}>
|
|
||||||
<div className="mx_RoomView_statusAreaBox">
|
|
||||||
<div className="mx_RoomView_statusAreaBox_line" />
|
|
||||||
{statusBar}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{previewBar}
|
|
||||||
{messageComposer}
|
|
||||||
</div>
|
</div>
|
||||||
|
<div className={statusBarAreaClass}>
|
||||||
|
<div className="mx_RoomView_statusAreaBox">
|
||||||
|
<div className="mx_RoomView_statusAreaBox_line" />
|
||||||
|
{statusBar}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{previewBar}
|
||||||
|
{messageComposer}
|
||||||
</div>
|
</div>
|
||||||
</MainSplit>
|
</MainSplit>
|
||||||
</ErrorBoundary>
|
</ErrorBoundary>
|
||||||
|
Reference in New Issue
Block a user