Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

Modal window is behing the backdrop #7

Closed
SzabKel opened this issue Feb 12, 2015 · 0 comments
Closed

Modal window is behing the backdrop #7

SzabKel opened this issue Feb 12, 2015 · 0 comments

Comments

@SzabKel
Copy link

SzabKel commented Feb 12, 2015

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.

@Yago Yago closed this as completed Jan 23, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants