Browse Source

BI-28955 兼容IE10

es6
Young 6 years ago
parent
commit
a21f3191d2
  1. 2
      dist/base.css
  2. 2
      dist/base.js
  3. 2
      dist/bundle.css
  4. 2
      dist/bundle.js
  5. 2
      dist/fineui.css
  6. 2
      dist/fineui.js
  7. 2
      dist/fineui_without_jquery_polyfill.js
  8. 2
      src/base/pane.js
  9. 2
      src/css/base/pane.css
  10. 4
      src/less/base/pane.less

2
dist/base.css vendored

@ -997,6 +997,8 @@
}
.bi-pane {
min-height: 55px;
}
.bi-pane .loading-container {
background-color: rgba(247, 248, 250, 0);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00f7f8fa,endColorstr=#00f7f8fa);
}

2
dist/base.js vendored

@ -279,6 +279,7 @@ BI.Pane = BI.inherit(BI.Widget, {
if (!BI.Layers.has(this.getName())) {
BI.createWidget({
type: "bi.absolute_center_adapt",
cls: "loading-container",
items: [{
el: loadingAnimation
}],
@ -292,6 +293,7 @@ BI.Pane = BI.inherit(BI.Widget, {
BI.createWidget({
type: "bi.absolute_center_adapt",
element: this,
cls: "loading-container",
items: [{
el: this._loading,
left: 0,

2
dist/bundle.css vendored

@ -2951,6 +2951,8 @@ textarea {
}
.bi-pane {
min-height: 55px;
}
.bi-pane .loading-container {
background-color: rgba(247, 248, 250, 0);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00f7f8fa,endColorstr=#00f7f8fa);
}

2
dist/bundle.js vendored

@ -35575,6 +35575,7 @@ BI.Pane = BI.inherit(BI.Widget, {
if (!BI.Layers.has(this.getName())) {
BI.createWidget({
type: "bi.absolute_center_adapt",
cls: "loading-container",
items: [{
el: loadingAnimation
}],
@ -35588,6 +35589,7 @@ BI.Pane = BI.inherit(BI.Widget, {
BI.createWidget({
type: "bi.absolute_center_adapt",
element: this,
cls: "loading-container",
items: [{
el: this._loading,
left: 0,

2
dist/fineui.css vendored

@ -2951,6 +2951,8 @@ textarea {
}
.bi-pane {
min-height: 55px;
}
.bi-pane .loading-container {
background-color: rgba(247, 248, 250, 0);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00f7f8fa,endColorstr=#00f7f8fa);
}

2
dist/fineui.js vendored

@ -35817,6 +35817,7 @@ BI.Pane = BI.inherit(BI.Widget, {
if (!BI.Layers.has(this.getName())) {
BI.createWidget({
type: "bi.absolute_center_adapt",
cls: "loading-container",
items: [{
el: loadingAnimation
}],
@ -35830,6 +35831,7 @@ BI.Pane = BI.inherit(BI.Widget, {
BI.createWidget({
type: "bi.absolute_center_adapt",
element: this,
cls: "loading-container",
items: [{
el: this._loading,
left: 0,

2
dist/fineui_without_jquery_polyfill.js vendored

@ -24407,6 +24407,7 @@ BI.Pane = BI.inherit(BI.Widget, {
if (!BI.Layers.has(this.getName())) {
BI.createWidget({
type: "bi.absolute_center_adapt",
cls: "loading-container",
items: [{
el: loadingAnimation
}],
@ -24420,6 +24421,7 @@ BI.Pane = BI.inherit(BI.Widget, {
BI.createWidget({
type: "bi.absolute_center_adapt",
element: this,
cls: "loading-container",
items: [{
el: this._loading,
left: 0,

2
src/base/pane.js

@ -78,6 +78,7 @@ BI.Pane = BI.inherit(BI.Widget, {
if (!BI.Layers.has(this.getName())) {
BI.createWidget({
type: "bi.absolute_center_adapt",
cls: "loading-container",
items: [{
el: loadingAnimation
}],
@ -91,6 +92,7 @@ BI.Pane = BI.inherit(BI.Widget, {
BI.createWidget({
type: "bi.absolute_center_adapt",
element: this,
cls: "loading-container",
items: [{
el: this._loading,
left: 0,

2
src/css/base/pane.css

@ -344,6 +344,8 @@
}
.bi-pane {
min-height: 55px;
}
.bi-pane .loading-container {
background-color: rgba(247, 248, 250, 0);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00f7f8fa,endColorstr=#00f7f8fa);
}

4
src/less/base/pane.less

@ -2,7 +2,9 @@
@import "../resource/background";
.bi-pane {
min-height: 55px;
.background-color(@color-bi-background-normal, 0);
& .loading-container {
.background-color(@color-bi-background-normal, 0);
}
}
.bi-loading-widget {

Loading…
Cancel
Save