Bootsketch icon indicating copy to clipboard operation
Bootsketch copied to clipboard

Modal window is behing the backdrop

Open SzabKel opened this issue 10 years ago • 0 comments

The bootsketch.css contains a wrong definition for ".modal-backdrop" class.

The css in bootsketch:

.modal-backdrop{
position:fixed;
top:0;
right:0;
bottom:0;
left:0;
z-index:1040;
background-color:#000}

But this couses the backdrop to be in front and the modal is displayed behind it. If you change it back to the original (from bootstrap 3.3.2):

.modal-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background-color: #000;
}

It is working again. Cheers.

SzabKel avatar Feb 12 '15 23:02 SzabKel