Browse Source

无JIRA方式 零散的边框导致边框高亮缺一边

es6
windy 6 years ago
parent
commit
4628ba7a0f
  1. 26774
      dist/base.js
  2. 165126
      dist/bundle.js
  3. 4
      dist/bundle.min.js
  4. 19582
      dist/case.js
  5. 165238
      dist/fineui.js
  6. 4
      dist/fineui.min.js
  7. 12
      dist/fineui_without_jquery_polyfill.js
  8. 2
      dist/utils.min.js
  9. 46006
      dist/widget.js
  10. 12
      src/widget/numberinterval/numberinterval.js

26774
dist/base.js vendored

File diff suppressed because it is too large Load Diff

165126
dist/bundle.js vendored

File diff suppressed because one or more lines are too long

4
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

19582
dist/case.js vendored

File diff suppressed because it is too large Load Diff

165238
dist/fineui.js vendored

File diff suppressed because one or more lines are too long

4
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

12
dist/fineui_without_jquery_polyfill.js vendored

@ -55023,7 +55023,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
}
return true;
},
cls: "number-interval-small-editor bi-border-top bi-border-bottom bi-border-left"
cls: "number-interval-small-editor bi-border"
});
this.smallTip = BI.createWidget({
@ -55060,7 +55060,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
}
return true;
},
cls: "number-interval-big-editor bi-border-top bi-border-bottom bi-border-right"
cls: "number-interval-big-editor bi-border"
});
this.bigTip = BI.createWidget({
@ -55096,7 +55096,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
// });
this.smallCombo = BI.createWidget({
type: "bi.icon_combo",
cls: "number-interval-small-combo bi-border",
cls: "number-interval-small-combo bi-border-top bi-border-bottom bi-border-right",
height: o.height - 2,
items: [{
text: "(" + BI.i18nText("BI-Less_Than") + ")",
@ -55115,7 +55115,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
}
this.bigCombo = BI.createWidget({
type: "bi.icon_combo",
cls: "number-interval-big-combo bi-border",
cls: "number-interval-big-combo bi-border-top bi-border-bottom bi-border-left",
height: o.height - 2,
items: [{
text: "(" + BI.i18nText("BI-Less_Than") + ")",
@ -55147,7 +55147,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
el: self.smallEditor
}, {
el: self.smallCombo,
width: c.width - c.border * 2
width: c.width - c.border
}]
});
@ -55155,7 +55155,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
type: "bi.htape",
items: [{
el: self.bigCombo,
width: c.width - c.border * 2
width: c.width - c.border
}, {
el: self.bigEditor,
// BI-23883 间距考虑边框

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

46006
dist/widget.js vendored

File diff suppressed because it is too large Load Diff

12
src/widget/numberinterval/numberinterval.js

@ -50,7 +50,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
}
return true;
},
cls: "number-interval-small-editor bi-border-top bi-border-bottom bi-border-left"
cls: "number-interval-small-editor bi-border"
});
this.smallTip = BI.createWidget({
@ -87,7 +87,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
}
return true;
},
cls: "number-interval-big-editor bi-border-top bi-border-bottom bi-border-right"
cls: "number-interval-big-editor bi-border"
});
this.bigTip = BI.createWidget({
@ -123,7 +123,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
// });
this.smallCombo = BI.createWidget({
type: "bi.icon_combo",
cls: "number-interval-small-combo bi-border",
cls: "number-interval-small-combo bi-border-top bi-border-bottom bi-border-right",
height: o.height - 2,
items: [{
text: "(" + BI.i18nText("BI-Less_Than") + ")",
@ -142,7 +142,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
}
this.bigCombo = BI.createWidget({
type: "bi.icon_combo",
cls: "number-interval-big-combo bi-border",
cls: "number-interval-big-combo bi-border-top bi-border-bottom bi-border-left",
height: o.height - 2,
items: [{
text: "(" + BI.i18nText("BI-Less_Than") + ")",
@ -174,7 +174,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
el: self.smallEditor
}, {
el: self.smallCombo,
width: c.width - c.border * 2
width: c.width - c.border
}]
});
@ -182,7 +182,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
type: "bi.htape",
items: [{
el: self.bigCombo,
width: c.width - c.border * 2
width: c.width - c.border
}, {
el: self.bigEditor,
// BI-23883 间距考虑边框

Loading…
Cancel
Save