From 02f6bd65f5cd44b41e49d23ed7e6a068a04805a6 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 1 Sep 2012 12:00:13 -0700 Subject: fixes #4910: use @baseLineHeight * 1.5 for .lead font-size --- less/type.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'less/type.less') diff --git a/less/type.less b/less/type.less index 14f65f2fa..0afb864cc 100644 --- a/less/type.less +++ b/less/type.less @@ -11,7 +11,7 @@ p { } .lead { margin-bottom: @baseLineHeight; - font-size: 20px; + font-size: @baseLineHeight * 1.5; font-weight: 200; line-height: @baseLineHeight * 1.5; } -- cgit v1.2.3 From 37379048599c1ce93aa2f36df46afbc09cb6d19b Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 2 Sep 2012 13:25:03 -0700 Subject: fixes #4922: use basefontsize for realz on .lead --- less/type.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'less/type.less') diff --git a/less/type.less b/less/type.less index 0afb864cc..669c55fd5 100644 --- a/less/type.less +++ b/less/type.less @@ -11,7 +11,7 @@ p { } .lead { margin-bottom: @baseLineHeight; - font-size: @baseLineHeight * 1.5; + font-size: @baseFontSize * 1.5; font-weight: 200; line-height: @baseLineHeight * 1.5; } -- cgit v1.2.3 From 9d5f9eca85b9d413b4389b744bbf57c20c447c2b Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 3 Sep 2012 00:47:48 -0700 Subject: fixes #4909: add color utility classes .text-warning, etc and document them --- less/type.less | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'less/type.less') diff --git a/less/type.less b/less/type.less index 669c55fd5..2e0f386ee 100644 --- a/less/type.less +++ b/less/type.less @@ -32,9 +32,23 @@ em { cite { font-style: normal; } + +// Utility classes .muted { color: @grayLight; } +.text-warning { + color: @warningText; +} +.text-error { + color: @errorText; +} +.text-info { + color: @infoText; +} +.text-success { + color: @successText; +} // Headings -- cgit v1.2.3