From fe8cb55cc16fb0995428b7055c6f31c6a50f6ed5 Mon Sep 17 00:00:00 2001 From: yury Date: Sat, 3 Sep 2011 20:10:42 +0400 Subject: use @VERSION var in build script --- lib/bootstrap.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/bootstrap.less b/lib/bootstrap.less index c31bd725d..a46a6a760 100644 --- a/lib/bootstrap.less +++ b/lib/bootstrap.less @@ -1,5 +1,5 @@ /*! - * Bootstrap v1.2.0 + * Bootstrap @VERSION * * Copyright 2011 Twitter, Inc * Licensed under the Apache License v2.0 -- cgit v1.2.3 From a40690a17c1a72fe2364518a62962d6bb5616373 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 9 Sep 2011 20:48:45 -0700 Subject: fix the grid before 1.3.0 drops soon --- lib/scaffolding.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/scaffolding.less b/lib/scaffolding.less index 615e6be78..c07686ab3 100644 --- a/lib/scaffolding.less +++ b/lib/scaffolding.less @@ -13,7 +13,7 @@ // Find all .span# classes within .row and give them the necessary properties for grid columns (supported by all browsers back to IE7) // Credit to @dhg for the idea - [class^="span"] { + [class*="span"] { display: inline; float: left; margin-left: @gridGutterWidth; -- cgit v1.2.3 From b729ade54f511867be0173e402a95c0799317ca3 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 12 Sep 2011 09:25:57 -0700 Subject: quick fix for .clearfix with unqualified selector in forms.less --- lib/forms.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/forms.less b/lib/forms.less index a16844ab1..ed07cf0a3 100644 --- a/lib/forms.less +++ b/lib/forms.less @@ -26,7 +26,7 @@ fieldset { } // Parent element that clears floats and wraps labels and fields together -.clearfix { +form .clearfix { margin-bottom: @baseline; } -- cgit v1.2.3