Browse Source

Merge pull request #234478 in DEC/fineui from release/11.0 to bugfix/11.0

* commit '14a1dd611fe173fdbf92fd34867e6ca83b295442':
  BI-124747 fix: 更新图标
  BI-125050 【6.0.9冒烟】火狐浏览器,组件产生滚动条时没办法调整最后一列的组件宽度
research/test
superman 1 year ago
parent
commit
16316f7d5c
  1. BIN
      dist/font/iconfont.eot
  2. 62
      dist/font/iconfont.svg
  3. BIN
      dist/font/iconfont.ttf
  4. BIN
      dist/font/iconfont.woff
  5. BIN
      dist/font/iconfont.woff2
  6. 2
      src/core/platform/web/dom.js

BIN
dist/font/iconfont.eot vendored

Binary file not shown.

62
dist/font/iconfont.svg vendored

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 881 KiB

After

Width:  |  Height:  |  Size: 885 KiB

BIN
dist/font/iconfont.ttf vendored

Binary file not shown.

BIN
dist/font/iconfont.woff vendored

Binary file not shown.

BIN
dist/font/iconfont.woff2 vendored

Binary file not shown.

2
src/core/platform/web/dom.js

@ -109,7 +109,7 @@
// 获取滚动条的宽度,页面display: none时候获取到的为0
getScrollWidth: function (css) {
if (BI.isNull(this._scrollWidth) || this._scrollWidth === 0) {
if (BI.isNull(this._scrollWidth) || BI.isNotNull(css) || this._scrollWidth === 0) {
var ul = BI.Widget._renderEngine.createElement("<div>").width(50).height(50).css({
position: "absolute",
top: "-9999px",

Loading…
Cancel
Save