From d07e8fece474afee9de7edaf6359e60920e8268f Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 16 Jan 2014 15:03:34 -0800 Subject: grunt --- dist/css/bootstrap.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 4cad26c16..d6f4efc79 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -5060,9 +5060,9 @@ button.close { -moz-transition: -moz-transform .3s ease-out; -o-transition: -o-transform .3s ease-out; transition: transform .3s ease-out; - -webkit-transform: translate(0, -25%); - -ms-transform: translate(0, -25%); - transform: translate(0, -25%); + -webkit-transform: translate(0, -25%); + -ms-transform: translate(0, -25%); + transform: translate(0, -25%); } .modal.in .modal-dialog { -webkit-transform: translate(0, 0); -- cgit v1.2.3 From 380019ccb28ef1205e0a114e386ab2cc4281efb4 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 16 Jan 2014 20:00:28 -0800 Subject: Split box-sizing reset for faster rendering --- dist/css/bootstrap.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index d6f4efc79..26257d194 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -251,7 +251,11 @@ table { border: 1px solid #ddd !important; } } -*, +* { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} *:before, *:after { -webkit-box-sizing: border-box; -- cgit v1.2.3