fix "Fix modal mouse wheel issues"

commit 6ee599 (Fix modal mouse wheel issues) used // for comments
instead of using /**/, which caused weird behaviour. replacing
// with /**/ fixed the problem.
main
turtleDev 9 years ago
parent 6ee599856e
commit 816dcc2885

@ -448,8 +448,8 @@ footer .footer-below {
background-color: #{{ site.color.secondary-dark }} !important; background-color: #{{ site.color.secondary-dark }} !important;
} }
// Fix modal mouse wheel issues /* Fix modal mouse wheel issues */
// https://github.com/twbs/bootstrap/issues/16297 /* https://github.com/twbs/bootstrap/issues/16297 */
.modal.fade.in { .modal.fade.in {
transform: translateZ(0); transform: translateZ(0);
-webkit-transform: translateZ(0); -webkit-transform: translateZ(0);

Loading…
Cancel
Save