From 5589d067ad3b70253c42c460beba3593a30de3e0 Mon Sep 17 00:00:00 2001 From: Rougin Royce Gutib Date: Fri, 19 Sep 2014 16:31:01 +0800 Subject: [PATCH] Fixed titled check in checkbox in iPhone Hello! I've tried to fix this issue https://github.com/FezVrasta/bootstrap-material-design/issues/24 by adding a workaround. I'm not sure about the animation of the checkbox if it is in right degrees. --- css-compiled/material.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/css-compiled/material.css b/css-compiled/material.css index e89725aa..121a6d16 100644 --- a/css-compiled/material.css +++ b/css-compiled/material.css @@ -3086,3 +3086,9 @@ fieldset[disabled] .navbar .btn-link:focus { .slider-material-lightgrey { background-color: #ececec; } + +.checkbox { + -webkit-transform: rotate(0deg); + -moz-transform: rotate(0deg); + transform: rotate(0deg); +}