guy 4 years ago
parent
commit
c695093eae
  1. 6
      src/less/base/combo/combo.bubble.less
  2. 6
      src/less/base/single/tip/tip.less

6
src/less/base/combo/combo.bubble.less

@ -3,6 +3,10 @@
.bi-bubble-combo {
& .button-combo-triangle-wrapper {
position: fixed !important;
// -ms-device-fixed >= IE11
// 与fixed表现形式一致,区别在于浏览器缩放的时候,-ms-device-fixed的元素不受其影响,而fixed的元素受其影响
// 最重要的是-ms-device-fixed解决了IE11下的残影问题
position: -ms-device-fixed !important;
// 消除祖先节点设置的line-height:normal对空白节点的行高影响
line-height: 0;
.z-index-layer(@zIndex-popup);
@ -44,4 +48,4 @@
}
}
}
}
}

6
src/less/base/single/tip/tip.less

@ -3,4 +3,8 @@
.bi-tip{
position: fixed !important;
}
// -ms-device-fixed >= IE11
// 与fixed表现形式一致,区别在于浏览器缩放的时候,-ms-device-fixed的元素不受其影响,而fixed的元素受其影响
// 最重要的是-ms-device-fixed解决了IE11下的残影问题
position: -ms-device-fixed !important;
}

Loading…
Cancel
Save