forked from matrix/element-web
Merge pull request #6134 from vector-im/luke/fix-tag-panel-collapse
Fix TagPanel from collapsing to < 60px when LP collapsed
This commit is contained in:
commit
7aea7f9400
|
@ -238,9 +238,14 @@ var LeftPanel = React.createClass({
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const containerClasses = classNames(
|
||||||
|
"mx_LeftPanel_container",
|
||||||
|
{ "mx_LeftPanel_container_collapsed": this.props.collapsed },
|
||||||
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<DragDropContext onDragEnd={this.onDragEnd}>
|
<DragDropContext onDragEnd={this.onDragEnd}>
|
||||||
<div className="mx_LeftPanel_container">
|
<div className={containerClasses}>
|
||||||
{ SettingsStore.isFeatureEnabled("feature_tag_panel") ? <TagPanel /> : <div /> }
|
{ SettingsStore.isFeatureEnabled("feature_tag_panel") ? <TagPanel /> : <div /> }
|
||||||
<aside className={classes} onKeyDown={ this._onKeyDown } onFocus={ this._onFocus } onBlur={ this._onBlur }>
|
<aside className={classes} onKeyDown={ this._onKeyDown } onFocus={ this._onFocus } onBlur={ this._onBlur }>
|
||||||
{ topBox }
|
{ topBox }
|
||||||
|
|
|
@ -15,7 +15,7 @@ limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.mx_TagPanel {
|
.mx_TagPanel {
|
||||||
width: 60px;
|
flex: 0 0 60px;
|
||||||
background-color: $tertiary-accent-color;
|
background-color: $tertiary-accent-color;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,12 @@ limitations under the License.
|
||||||
|
|
||||||
.mx_LeftPanel_container {
|
.mx_LeftPanel_container {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex: 0 0 235px;
|
flex: 0 0 295px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mx_LeftPanel_container_collapsed {
|
||||||
|
/* TagPanel 60px + Collapsed LeftPanel 60px */
|
||||||
|
flex: 0 0 120px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_LeftPanel_hideButton {
|
.mx_LeftPanel_hideButton {
|
||||||
|
|
Loading…
Reference in New Issue