CSS tweakage

This commit is contained in:
David Baker 2015-06-17 15:46:04 +01:00
parent b35461f5c0
commit 6542201ac6
5 changed files with 53 additions and 22 deletions

View file

@ -1,12 +1,32 @@
.mx_MatrixChat {
display: table;
table-layout: fixed;
position: relative;
width: 100%;
height: 100%;
}
.mx_MatrixChat_leftPanel {
display: table-cell;
position: absolute;
left: 0px;
width: 250px;
height: 100%;
}
.mx_MatrixChat_leftPanel .mx_MatrixToolbar {
position: absolute;
height: 20px;
}
.mx_MatrixChat_leftPanel .mx_RoomList {
position: absolute;
top: 20px;
bottom: 0px;
width: 250px;
overflow-y: scroll;
}
.mx_MatrixChat .mx_RoomView {
position: absolute;
left: 255px;
right: 0px;
height: 100%;
}