答案 0 :(得分:1)
好吧,坏消息是iron-list
问题(即iron-list
使用z-translation
)。
好消息是,有一种解决方法......我遇到了同样的问题,我最终得到的是一种行为(但你可以把它放在你的组件中),其中包括:
tableListOverflowVisible: function (...tables) {
tables.forEach((id) => {
if (typeof id !== 'string') {
return;
}
const table = this.$[id];
if (!table) {
return;
}
Polymer
.dom(table)
.node.querySelector('iron-list')
.setAttribute('style', 'overflow: visible !important;');
});
},
只需将你的表ID传递给那里就可以完成这项工作......
答案 1 :(得分:0)
如果您的z-index设置正确,请检查背景颜色,它可以设置为透明。