Skip to content

Instantly share code, notes, and snippets.

@iworkforthem
Created November 26, 2016 13:28
Show Gist options
  • Save iworkforthem/756384aad7d6c2acd048601d193efca8 to your computer and use it in GitHub Desktop.
Save iworkforthem/756384aad7d6c2acd048601d193efca8 to your computer and use it in GitHub Desktop.
blur background when bootstrap modal open.
body.modal-open #wrap {
-webkit-filter: blur(7px);
-moz-filter: blur(15px);
-o-filter: blur(15px);
-ms-filter: blur(15px);
filter: blur(15px);
}
.modal-backdrop {
background: #f7f7f7;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment