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 --- less/scaffolding.less | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'less') diff --git a/less/scaffolding.less b/less/scaffolding.less index 976b4e3c2..c4869139b 100644 --- a/less/scaffolding.less +++ b/less/scaffolding.less @@ -5,7 +5,9 @@ // Reset the box-sizing -*, +* { + .box-sizing(border-box); +} *:before, *:after { .box-sizing(border-box); -- cgit v1.2.3 From d8c87ddc285c598f09cb70e2244d7cef5a8e5bad Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Fri, 17 Jan 2014 14:27:54 -0800 Subject: fix #12277 Thanks to @Quy for pointing these out. --- less/variables.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'less') diff --git a/less/variables.less b/less/variables.less index 106a73457..d9147eb59 100644 --- a/less/variables.less +++ b/less/variables.less @@ -58,7 +58,7 @@ //** Unit-less `line-height` for use in components like buttons. @line-height-base: 1.428571429; // 20/14 -//** Computed "line-height" (`font-size` × `line-height`) for use with `margin`, `padding`, etc. +//** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc. @line-height-computed: floor((@font-size-base * @line-height-base)); // ~20px //** By default, this inherits from the ``. @@ -548,7 +548,7 @@ @modal-content-bg: #fff; //** Modal content border color @modal-content-border-color: rgba(0,0,0,.2); -//** Modal content border color for IE8 +//** Modal content border color **for IE8** @modal-content-fallback-border-color: #999; //** Modal backdrop background color -- cgit v1.2.3