[PE] Fix Bug 37595
This commit is contained in:
parent
b31efd58ca
commit
efff47cfee
|
@ -1,5 +1,5 @@
|
||||||
<div class="layout-region">
|
<div class="layout-region">
|
||||||
<div id="pe-preview" style="position:absolute; left: 0; top: 0; display:none; width:100%; height:100%; z-index: 1;"></div>
|
<div id="pe-preview" style="position:absolute; left: 0; top: 0; display:none; width:100%; height:100%;"></div>
|
||||||
<section class="layout-ct">
|
<section class="layout-ct">
|
||||||
<div id="file-menu-panel" class="toolbar-fullview-panel" style="display:none;"></div>
|
<div id="file-menu-panel" class="toolbar-fullview-panel" style="display:none;"></div>
|
||||||
</section>
|
</section>
|
||||||
|
|
|
@ -109,6 +109,8 @@ define([
|
||||||
me.shapeControls = [];
|
me.shapeControls = [];
|
||||||
me.slideOnlyControls = [];
|
me.slideOnlyControls = [];
|
||||||
me.synchTooltip = undefined;
|
me.synchTooltip = undefined;
|
||||||
|
me.needShowSynchTip = false;
|
||||||
|
|
||||||
me.schemeNames = [
|
me.schemeNames = [
|
||||||
me.txtScheme1, me.txtScheme2, me.txtScheme3, me.txtScheme4, me.txtScheme5,
|
me.txtScheme1, me.txtScheme2, me.txtScheme3, me.txtScheme4, me.txtScheme5,
|
||||||
me.txtScheme6, me.txtScheme7, me.txtScheme8, me.txtScheme9, me.txtScheme10,
|
me.txtScheme6, me.txtScheme7, me.txtScheme8, me.txtScheme9, me.txtScheme10,
|
||||||
|
@ -1254,7 +1256,6 @@ define([
|
||||||
|
|
||||||
/** coauthoring begin **/
|
/** coauthoring begin **/
|
||||||
this.showSynchTip = !Common.localStorage.getBool('pe-hide-synch');
|
this.showSynchTip = !Common.localStorage.getBool('pe-hide-synch');
|
||||||
this.needShowSynchTip = false;
|
|
||||||
|
|
||||||
if (this.needShowSynchTip) {
|
if (this.needShowSynchTip) {
|
||||||
this.needShowSynchTip = false;
|
this.needShowSynchTip = false;
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
#pe-preview {
|
||||||
|
z-index: @zindex-navbar+3;
|
||||||
|
}
|
||||||
.preview-controls {
|
.preview-controls {
|
||||||
display: table;
|
display: table;
|
||||||
background: @gray-light;
|
background: @gray-light;
|
||||||
|
|
Loading…
Reference in a new issue