mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-24 09:22:26 +08:00
@ -51,7 +51,7 @@ define([
|
||||
sdkplaceholder: 'id-ole-editor-placeholder',
|
||||
initwidth: 900,
|
||||
initheight: 700,
|
||||
minwidth: 860,
|
||||
minwidth: 875,
|
||||
minheight: 275
|
||||
}, options);
|
||||
|
||||
|
||||
@ -335,6 +335,9 @@
|
||||
|
||||
&.small {
|
||||
.padding-left-10();
|
||||
&.padding-right-10 {
|
||||
.padding-right-10();
|
||||
}
|
||||
|
||||
+ .separator:not(.invisible) {
|
||||
.margin-left-10();
|
||||
|
||||
@ -2574,6 +2574,7 @@ define([
|
||||
if (!Common.Utils.InternalSettings.get("de-hidden-rulers")) {
|
||||
showPoint = [showPoint[0] - 19, showPoint[1] - 26];
|
||||
}
|
||||
(showPoint[0]<0) && (showPoint[0] = 0);
|
||||
if (showPoint[1]<0) {
|
||||
showPoint[1] = bounds[3] + 10;
|
||||
!Common.Utils.InternalSettings.get("de-hidden-rulers") && (showPoint[1] -= 26);
|
||||
|
||||
@ -2601,6 +2601,7 @@ define([
|
||||
}
|
||||
|
||||
var showPoint = [(bounds[0] + bounds[2])/2 - eqContainer.outerWidth()/2, bounds[1] - eqContainer.outerHeight() - 10];
|
||||
(showPoint[0]<0) && (showPoint[0] = 0);
|
||||
if (showPoint[1]<0) {
|
||||
showPoint[1] = bounds[3] + 10;
|
||||
}
|
||||
|
||||
@ -4919,6 +4919,7 @@ define([
|
||||
me.onDocumentResize();
|
||||
|
||||
var showPoint = [(bounds[0] + bounds[2])/2 - eqContainer.outerWidth()/2, bounds[1] - eqContainer.outerHeight() - 10];
|
||||
(showPoint[0]<0) && (showPoint[0] = 0);
|
||||
if (showPoint[1]<0) {
|
||||
showPoint[1] = bounds[3] + 10;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user