diff --git a/o2web/source/x_component_process_Xform/$Form/default/doc.wcss b/o2web/source/x_component_process_Xform/$Form/default/doc.wcss index 2c2e01391f47348e981910e1c4de300b075567dc..cbbfa63f68569740743c9f9c5b3f92b9d9b787e8 100644 --- a/o2web/source/x_component_process_Xform/$Form/default/doc.wcss +++ b/o2web/source/x_component_process_Xform/$Form/default/doc.wcss @@ -235,14 +235,9 @@ "border": "1px solid #ffffff", }, "fullScreen": { - "top": "0px", - "left": "0px", - "width": "100%", - "min-height": "100%", - "z-index": "20000" + "min-height": "100%" }, "returnScreen": { - "position": "static", "top": "", "left": "", "width": "", diff --git a/o2web/source/x_component_process_Xform/Documenteditor.js b/o2web/source/x_component_process_Xform/Documenteditor.js index 2f74b8858f74f85e817360a16fe085ea07e18c2f..f219ecd6197964cb8bdbe68694a3217719675e57 100644 --- a/o2web/source/x_component_process_Xform/Documenteditor.js +++ b/o2web/source/x_component_process_Xform/Documenteditor.js @@ -1110,7 +1110,7 @@ MWF.xApplication.process.Xform.Documenteditor = MWF.APPDocumenteditor = new Cla this.toolbarNode.setStyles({ "position": "absolute", "width": ""+x+"px", - "z-index": 50000, + "z-index": 200, "top": paddingTop+"px", "left": ""+p.x+"px" }); @@ -1762,7 +1762,8 @@ MWF.xApplication.process.Xform.Documenteditor = MWF.APPDocumenteditor = new Cla // "position": styles.position, // "overflow": styles.overflow // }); - // this.node.setStyles(this.css.returnScreen); + //this.node.setStyles(this.css.returnScreen); + this.node.setStyle("min-height", ""); this.fireEvent("returnScreen"); bt.setText(MWF.xApplication.process.Xform.LP.fullScreen); @@ -1790,7 +1791,8 @@ MWF.xApplication.process.Xform.Documenteditor = MWF.APPDocumenteditor = new Cla // "position": "relative", // "overflow": "auto" // }); - this.node.setStyles(this.css.fullScreen); + //this.node.setStyles(this.css.fullScreen); + this.node.setStyle("min-height", "100%"); this.fireEvent("fullScreen"); // this.fullScreenScrollNode = this.node.getOffsetParent().getFirst().getParentSrcollNode();