This commit is contained in:
Mirco Wittrien 2019-10-23 17:17:45 +02:00
parent c3e27fbe38
commit 85c6f232ad
2 changed files with 15 additions and 2 deletions

View File

@ -3764,6 +3764,7 @@ var BDFDB = {myPlugins: BDFDB && BDFDB.myPlugins || {}, cleanUps: BDFDB && BDFDB
colorPickerSwatchSingle: "single-swatch",
colorPickerSwatchSelected: "selected",
overflowEllipsis: "overflowellipsis",
popoutContainer: "popoutContainer",
modalHeaderHasSibling: "headerHasSibling",
modalTabContent: "tab-content",
modalTabContentOpen: "open"
@ -4916,6 +4917,7 @@ var BDFDB = {myPlugins: BDFDB && BDFDB.myPlugins || {}, cleanUps: BDFDB && BDFDB
popoutbottom: ["Popout", "popoutBottom"],
popoutbottomleft: ["Popout", "popoutBottomLeft"],
popoutbottomright: ["Popout", "popoutBottomRight"],
popoutcontainer: ["BDFDB", "popoutContainer"],
popoutfooter: ["Popout", "footer"],
popoutheader: ["Popout", "header"],
popoutinvert: ["Popout", "popoutInvert"],
@ -5589,7 +5591,14 @@ var BDFDB = {myPlugins: BDFDB && BDFDB.myPlugins || {}, cleanUps: BDFDB && BDFDB
let children = this.props.children;
this.props.children = _ => {return children;};
}
return BDFDB.ReactUtils.createElement(NativeSubComponents.PopoutContainer, this.props);
return BDFDB.ReactUtils.createElement("div", {
className: BDFDB.disCN.popoutcontainer,
onClick: e => {
let basePopoutIns = BDFDB.ReactUtils.findOwner(e._targetInst, {name:"BasePopout", up:true});
if (basePopoutIns) basePopoutIns.handleClick();
},
children: BDFDB.ReactUtils.createElement(NativeSubComponents.PopoutContainer, this.props)
});
}
} : undefined;
LibraryComponents.SettingsPanel = reactInitialized ? class BDFDB_SettingsPanel extends LibraryModules.React.Component {
@ -6181,6 +6190,10 @@ var BDFDB = {myPlugins: BDFDB && BDFDB.myPlugins || {}, cleanUps: BDFDB && BDFDB
text-overflow: ellipsis;
}
${BDFDB.dotCN.popoutcontainer} {
display: flex;
}
${BDFDB.dotCNS.messagegroup + BDFDB.dotCN.messageheadercozy} {
padding-top: 0;
}

File diff suppressed because one or more lines are too long