Angular Material(2.0)AutoComplete建议面板出现在Bootstrap模态后面

时间:2017-07-06 13:29:03

标签: angular autocomplete bootstrap-modal z-index

我正在尝试将自动填充字段添加到我拥有的boostrap模式中,但是在输入建议框时会出现在模态后面并且不在用户的视野之外。

我尝试了以下内容:

.mat-autocomplete-panel {
    position: fixed !important;
    z-index:100000 !important;
}

但我没有找到任何成功,有没有人有幸把建议箱移到前面?

图像:

enter image description here

1 个答案:

答案 0 :(得分:2)

将此类粘贴到主 style.scss

/ *模态修正的垫自动完成* / .cdk-overlay-container {z-index:999999!important;}