From 816dcc2885d6393443df8f10f44980aa4335a1af Mon Sep 17 00:00:00 2001 From: turtleDev Date: Sun, 6 Sep 2015 19:00:11 +0530 Subject: [PATCH] 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. --- _includes/css/main.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_includes/css/main.css b/_includes/css/main.css index 73d63a7..b2a2840 100644 --- a/_includes/css/main.css +++ b/_includes/css/main.css @@ -448,8 +448,8 @@ footer .footer-below { background-color: #{{ site.color.secondary-dark }} !important; } -// Fix modal mouse wheel issues -// https://github.com/twbs/bootstrap/issues/16297 +/* Fix modal mouse wheel issues */ +/* https://github.com/twbs/bootstrap/issues/16297 */ .modal.fade.in { transform: translateZ(0); -webkit-transform: translateZ(0);