Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

angular bootstrap modal backdrop not showing for bootstrap css version 3.3.2

change the css version to 3.3.2 in this plunker code and the backdrop won't appear when you open the modal.

from

<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">

to

<link href="//netdna.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet">

http://plnkr.co/edit/rzU6gQsjEP4R9sGKO2dl

like image 747
Karlus da Wakoko Avatar asked Mar 17 '23 04:03

Karlus da Wakoko


1 Answers

This is a recently introduced bug.

Add this CSS workaround:

.modal-backdrop {
  bottom: 0;
  position: fixed;
}
like image 73
Phil Degenhardt Avatar answered Apr 25 '23 08:04

Phil Degenhardt