Fix modal mouse wheel issues

This commit is contained in:
Jerome Lachaud 2015-08-22 16:22:15 +01:00
parent ee76c250f5
commit 6ee599856e
1 changed files with 8 additions and 1 deletions

View File

@ -446,4 +446,11 @@ footer .footer-below {
.navbar-nav>.active>a {
background-color: #{{ site.color.secondary-dark }} !important;
}
}
// Fix modal mouse wheel issues
// https://github.com/twbs/bootstrap/issues/16297
.modal.fade.in {
transform: translateZ(0);
-webkit-transform: translateZ(0);
}