From cd09f3213ba2e07b988708dec6b888f95660b0f9 Mon Sep 17 00:00:00 2001 From: Luis Hdez Date: Thu, 20 Jun 2013 12:50:30 +0200 Subject: Add heading font family variable --- less/type.less | 1 + 1 file changed, 1 insertion(+) (limited to 'less/type.less') diff --git a/less/type.less b/less/type.less index 9a6811e3d..852f7f32f 100644 --- a/less/type.less +++ b/less/type.less @@ -54,6 +54,7 @@ a.text-success:focus { color: darken(@state-success-text, 10%); } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { + font-family: @headings-font-family; font-weight: @headings-font-weight; line-height: @headings-line-height; small { -- cgit v1.2.3 From 2a47037ab0d4aa644f04499bd704a85561b58e73 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 23 Jun 2013 10:24:50 -0700 Subject: Fixes #8266: remove unnecessary `strong` and `em` styles --- 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 852f7f32f..9892d5589 100644 --- a/less/type.less +++ b/less/type.less @@ -23,8 +23,6 @@ p { // Ex: 14px base font * 85% = about 12px small { font-size: 85%; } -strong { font-weight: bold; } -em { font-style: italic; } cite { font-style: normal; } // Utility classes -- cgit v1.2.3 From 61823dbff1377443203f6ef6a98b8202b57abb29 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 5 Jul 2013 14:21:05 -0500 Subject: Move `hr` to scaffolding.less (out of type.less) and simplify styles --- less/type.less | 9 --------- 1 file changed, 9 deletions(-) (limited to 'less/type.less') diff --git a/less/type.less b/less/type.less index 9892d5589..2f1f42ee3 100644 --- a/less/type.less +++ b/less/type.less @@ -164,15 +164,6 @@ dd { // MISC // ---- -// Horizontal rules -hr { - margin: @line-height-computed 0; - border: 0; - border-top: 1px solid @hr-border; - border-bottom: 1px solid #fff; - border-bottom: 1px solid rgba(255,255,255,.5); -} - // Abbreviations and acronyms abbr[title], // Added data-* attribute to help out our tooltip plugin, per https://github.com/twitter/bootstrap/issues/5257 -- cgit v1.2.3 From 0d5c3c2ecf35d9bcbe4bd1ad67f3144f5341eb20 Mon Sep 17 00:00:00 2001 From: liuyl Date: Tue, 9 Jul 2013 09:22:36 +0800 Subject: simplify type.less --- less/type.less | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'less/type.less') diff --git a/less/type.less b/less/type.less index 2f1f42ee3..a9a7e189f 100644 --- a/less/type.less +++ b/less/type.less @@ -107,12 +107,10 @@ ul, ol { margin-top: 0; margin-bottom: (@line-height-computed / 2); -} -ul ul, -ul ol, -ol ol, -ol ul { - margin-bottom: 0; + ul, + ol{ + margin-bottom: 0; + } } // List options -- cgit v1.2.3