mirror of https://github.com/vector-im/riot-web
Fix broken RoomView CSS due to name clashes and splitting an element in
two.pull/1/head
parent
bc93aeb50e
commit
edc3302d89
|
@ -24,6 +24,7 @@ limitations under the License.
|
|||
display: -webkit-flex;
|
||||
display: flex;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
flex-direction: column;
|
||||
-webkit-flex-direction: column;
|
||||
}
|
||||
|
@ -65,7 +66,7 @@ limitations under the License.
|
|||
margin-bottom: 60px;
|
||||
/* background-color: #ff0; */
|
||||
|
||||
overflow-y: scroll;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
.mx_RoomView_messageListWrapper {
|
||||
|
|
|
@ -38,7 +38,7 @@ limitations under the License.
|
|||
height: 100%;
|
||||
}
|
||||
|
||||
.mx_MatrixChat .mx_MainView {
|
||||
.mx_MatrixChat .mx_MatrixChat_MiddleView {
|
||||
-webkit-box-ordinal-group: 2;
|
||||
-moz-box-ordinal-group: 2;
|
||||
-ms-flex-order: 2;
|
||||
|
|
|
@ -51,7 +51,7 @@ module.exports = React.createClass({
|
|||
return (
|
||||
<div className="mx_MatrixChat">
|
||||
<LeftPanel selectedRoom={this.state.currentRoom} />
|
||||
<div className="mx_MainView">
|
||||
<div className="mx_MatrixChat_MiddleView">
|
||||
{page_element}
|
||||
</div>
|
||||
{right_panel}
|
||||
|
|
Loading…
Reference in New Issue