角度引导模态背景没有显示为bootstrap css版本3.3.2

Kar*_*oko 4 angularjs angular-ui-bootstrap bootstrap-modal

在此plunker代码中将css版本更改为3.3.2,并且在打开模式时不会显示背景.

<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
Run Code Online (Sandbox Code Playgroud)

<link href="//netdna.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet">
Run Code Online (Sandbox Code Playgroud)

http://plnkr.co/edit/rzU6gQsjEP4R9sGKO2dl

Phi*_*rdt 7

这是最近引入的错误.

添加此CSS解决方法:

.modal-backdrop {
  bottom: 0;
  position: fixed;
}
Run Code Online (Sandbox Code Playgroud)