From 886e7037f6cfa5e63ae190ee1a9a63fb7f07dffe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zlatan=20Vasovi=C4=87?= Date: Tue, 10 Sep 2013 23:27:04 +0200 Subject: Remove display: block from address
is already displayed as block in all browsers (UAs). --- less/type.less | 1 - 1 file changed, 1 deletion(-) (limited to 'less/type.less') diff --git a/less/type.less b/less/type.less index 2f154516c..9a6656b63 100644 --- a/less/type.less +++ b/less/type.less @@ -264,7 +264,6 @@ blockquote:after { // Addresses address { - display: block; margin-bottom: @line-height-computed; font-style: normal; line-height: @line-height-base; -- cgit v1.2.3 From 50fcaba24f1836aea26bd928156ec9ab0740bff2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zlatan=20Vasovi=C4=87?= Date: Wed, 11 Sep 2013 10:38:42 +0200 Subject: The last --- 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 9a6656b63..5ad6a4669 100644 --- a/less/type.less +++ b/less/type.less @@ -15,7 +15,7 @@ p { font-weight: 200; line-height: 1.4; - @media (min-width: @screen-sm) { + @media (min-width: @screen-sm-min) { font-size: (@font-size-base * 1.5); } } -- cgit v1.2.3 From 000b445a042cc97d21d743ef917a35c23dde2a3e Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 22 Sep 2013 09:19:37 -0500 Subject: Fixes #10755: Don't remove quotes around q element by default --- less/type.less | 2 -- 1 file changed, 2 deletions(-) (limited to 'less/type.less') diff --git a/less/type.less b/less/type.less index 5ad6a4669..1e4ff9d18 100644 --- a/less/type.less +++ b/less/type.less @@ -255,8 +255,6 @@ blockquote { } // Quotes -q:before, -q:after, blockquote:before, blockquote:after { content: ""; -- cgit v1.2.3 From 1adbe2043a0ab6adad95e823397f6444730dfb83 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 7 Oct 2013 14:32:23 -0500 Subject: Fixes #10959: round the .lead values down to nearest pixel via floor() --- 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 1e4ff9d18..55e5e1d77 100644 --- a/less/type.less +++ b/less/type.less @@ -11,7 +11,7 @@ p { } .lead { margin-bottom: @line-height-computed; - font-size: (@font-size-base * 1.15); + font-size: floor(@font-size-base * 1.15); font-weight: 200; line-height: 1.4; -- cgit v1.2.3 From 8098f4e5ba36814030304867092aa268aaf370f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zlatan=20Vasovi=C4=87?= Date: Sat, 12 Oct 2013 23:28:50 +0200 Subject: Add more functionality to .small --- less/type.less | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'less/type.less') diff --git a/less/type.less b/less/type.less index 55e5e1d77..e5544ab3e 100644 --- a/less/type.less +++ b/less/type.less @@ -82,7 +82,8 @@ h1, h2, h3, h4, h5, h6, line-height: @headings-line-height; color: @headings-color; - small { + small, + .small { font-weight: normal; line-height: 1; color: @headings-small-color; @@ -95,7 +96,8 @@ h3 { margin-top: @line-height-computed; margin-bottom: (@line-height-computed / 2); - small { + small, + .small { font-size: 65%; } } @@ -105,7 +107,8 @@ h6 { margin-top: (@line-height-computed / 2); margin-bottom: (@line-height-computed / 2); - small { + small, + .small { font-size: 75%; } } @@ -240,10 +243,12 @@ blockquote { border-right: 5px solid @blockquote-border-color; border-left: 0; p, - small { + small, + .small { text-align: right; } - small { + small, + .small { &:before { content: ''; } -- cgit v1.2.3