Browse Source

DEC-3303

es6
windy 6 years ago
parent
commit
c0d9cac998
  1. 4
      dist/_fineui.min.js
  2. 2
      dist/base.js
  3. 1
      dist/bundle.css
  4. 2
      dist/bundle.js
  5. 4
      dist/bundle.min.js
  6. 1
      dist/fineui.css
  7. 2
      dist/fineui.js
  8. 4
      dist/fineui.min.js
  9. 1
      dist/resource.css
  10. 1
      public/css/app.css
  11. 2
      src/base/combination/combo.js
  12. 1
      src/css/resource/app.css
  13. 1
      src/less/resource/app.less
  14. 1
      ui/css/app.css

4
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/base.js vendored

@ -3271,7 +3271,7 @@ BI.Combo = BI.inherit(BI.Widget, {
// return;
// }
// BI-10290 公式combo双击公式内容会收起
if (this.element.find(e.target).length > 0
if ((this.element.find(e.target).length > 0 && e.type !== "mousewheel")
|| (this.popupView && this.popupView.element.find(e.target).length > 0)
|| e.target.className === "CodeMirror-cursor" || $(e.target).closest(".CodeMirror-hints").length > 0) {// BI-9887 CodeMirror的公式弹框需要特殊处理下
return;

1
dist/bundle.css vendored

@ -4601,6 +4601,7 @@ body {
-kthml-user-focus: normal;
-moz-user-focus: normal;
-moz-outline: 0 none;
-ms-overflow-style: -ms-autohiding-scrollbar;
outline: 0 none;
}
div::-webkit-scrollbar,

2
dist/bundle.js vendored

@ -39079,7 +39079,7 @@ BI.Combo = BI.inherit(BI.Widget, {
// return;
// }
// BI-10290 公式combo双击公式内容会收起
if (this.element.find(e.target).length > 0
if ((this.element.find(e.target).length > 0 && e.type !== "mousewheel")
|| (this.popupView && this.popupView.element.find(e.target).length > 0)
|| e.target.className === "CodeMirror-cursor" || $(e.target).closest(".CodeMirror-hints").length > 0) {// BI-9887 CodeMirror的公式弹框需要特殊处理下
return;

4
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

1
dist/fineui.css vendored

@ -4601,6 +4601,7 @@ body {
-kthml-user-focus: normal;
-moz-user-focus: normal;
-moz-outline: 0 none;
-ms-overflow-style: -ms-autohiding-scrollbar;
outline: 0 none;
}
div::-webkit-scrollbar,

2
dist/fineui.js vendored

@ -39328,7 +39328,7 @@ BI.Combo = BI.inherit(BI.Widget, {
// return;
// }
// BI-10290 公式combo双击公式内容会收起
if (this.element.find(e.target).length > 0
if ((this.element.find(e.target).length > 0 && e.type !== "mousewheel")
|| (this.popupView && this.popupView.element.find(e.target).length > 0)
|| e.target.className === "CodeMirror-cursor" || $(e.target).closest(".CodeMirror-hints").length > 0) {// BI-9887 CodeMirror的公式弹框需要特殊处理下
return;

4
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

1
dist/resource.css vendored

@ -25,6 +25,7 @@ body {
-kthml-user-focus: normal;
-moz-user-focus: normal;
-moz-outline: 0 none;
-ms-overflow-style: -ms-autohiding-scrollbar;
outline: 0 none;
}
div::-webkit-scrollbar,

1
public/css/app.css

@ -25,6 +25,7 @@ body {
-kthml-user-focus: normal;
-moz-user-focus: normal;
-moz-outline: 0 none;
-ms-overflow-style: -ms-autohiding-scrollbar;
outline: 0 none;
}
div::-webkit-scrollbar,

2
src/base/combination/combo.js

@ -261,7 +261,7 @@ BI.Combo = BI.inherit(BI.Widget, {
// return;
// }
// BI-10290 公式combo双击公式内容会收起
if (this.element.find(e.target).length > 0
if ((this.element.find(e.target).length > 0 && e.type !== "mousewheel")
|| (this.popupView && this.popupView.element.find(e.target).length > 0)
|| e.target.className === "CodeMirror-cursor" || $(e.target).closest(".CodeMirror-hints").length > 0) {// BI-9887 CodeMirror的公式弹框需要特殊处理下
return;

1
src/css/resource/app.css

@ -25,6 +25,7 @@ body {
-kthml-user-focus: normal;
-moz-user-focus: normal;
-moz-outline: 0 none;
-ms-overflow-style: -ms-autohiding-scrollbar;
outline: 0 none;
}
div::-webkit-scrollbar,

1
src/less/resource/app.less

@ -23,6 +23,7 @@ body {
-kthml-user-focus: normal;
-moz-user-focus: normal;
-moz-outline: 0 none;
-ms-overflow-style: -ms-autohiding-scrollbar;
outline: 0 none;
}

1
ui/css/app.css

@ -25,6 +25,7 @@ body {
-kthml-user-focus: normal;
-moz-user-focus: normal;
-moz-outline: 0 none;
-ms-overflow-style: -ms-autohiding-scrollbar;
outline: 0 none;
}
div::-webkit-scrollbar,

Loading…
Cancel
Save