mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
implement right panel collapsing more correctly too
This commit is contained in:
parent
47ed8971e3
commit
8bdb5c0745
@ -75,7 +75,7 @@ limitations under the License.
|
||||
|
||||
.mx_MatrixChat .mx_LeftPanel.collapsed {
|
||||
-webkit-flex: 0 0 60px;
|
||||
flex: 0 0 60px;
|
||||
flex: 0 0 60px;
|
||||
}
|
||||
|
||||
.mx_MatrixChat .mx_MatrixChat_middlePanel {
|
||||
@ -116,3 +116,8 @@ limitations under the License.
|
||||
-webkit-flex: 0 0 230px;
|
||||
flex: 0 0 230px;
|
||||
}
|
||||
|
||||
.mx_MatrixChat .mx_RightPanel.collapsed {
|
||||
-webkit-flex: 0 0 72px;
|
||||
flex: 0 0 72px;
|
||||
}
|
||||
|
@ -64,8 +64,13 @@ module.exports = React.createClass({
|
||||
}
|
||||
}
|
||||
|
||||
var classes = "mx_RightPanel";
|
||||
if (this.state.phase === this.Phase.None) {
|
||||
classes += " collapsed";
|
||||
}
|
||||
|
||||
return (
|
||||
<aside className="mx_RightPanel">
|
||||
<aside className={classes}>
|
||||
<div className="mx_RightPanel_header">
|
||||
{ buttonGroup }
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user