From 2d922779ba374f1b1435e323cdec2f8664b1bae7 Mon Sep 17 00:00:00 2001 From: "Zhenfei.Li" Date: Tue, 28 Aug 2018 21:06:43 +0800 Subject: [PATCH] =?UTF-8?q?BI-30745=20=E7=B2=BE=E7=AE=80=E8=AF=AD=E5=8F=A5?= =?UTF-8?q?=EF=BC=8C=E8=B0=83=E6=95=B4=E6=9C=80=E5=B0=8F=E9=AB=98=E5=BA=A6?= =?UTF-8?q?=EF=BC=88+30px=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/base/pane.js | 3 +-- src/less/base/pane.less | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/base/pane.js b/src/base/pane.js index 515d9f99a..ac78a8ba4 100644 --- a/src/base/pane.js +++ b/src/base/pane.js @@ -52,7 +52,7 @@ BI.Pane = BI.inherit(BI.Widget, { var self = this, o = this.options; var loadingAnimation = BI.createWidget({ type: "bi.horizontal", - cls: "bi-loading-widget", + cls: "bi-loading-widget" + ((BI.isIE() && BI.getIEVersion() < 10) ? " hack" : ""), height: 60, width: 60, hgap: 10, @@ -74,7 +74,6 @@ BI.Pane = BI.inherit(BI.Widget, { width: 5 }] }); - (BI.isIE() && BI.getIEVersion() < 10) && loadingAnimation.element.addClass("hack"); if (o.overlap === true) { if (!BI.Layers.has(this.getName())) { BI.createWidget({ diff --git a/src/less/base/pane.less b/src/less/base/pane.less index 83ee3b595..605d44bb8 100644 --- a/src/less/base/pane.less +++ b/src/less/base/pane.less @@ -1,7 +1,7 @@ @import "../index"; @import "../resource/background"; .bi-pane { - min-height: 25px; + min-height: 55px; .background-color(@color-bi-background-normal, 0); }