From df757fb040e5736e55b3f7060260a79b6b79b781 Mon Sep 17 00:00:00 2001 From: Jacob Rask Date: Sun, 19 Feb 2012 21:21:44 +0100 Subject: All abbreviations are not upper case initialisms Read more: * http://developers.whatwg.org/text-level-semantics.html#the-abbr-element * http://en.wikipedia.org/wiki/Abbreviation * http://en.wikipedia.org/wiki/Initialism --- docs/assets/css/bootstrap.css | 2 -- 1 file changed, 2 deletions(-) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 71ab7a9d4..b6d3f5b26 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -416,8 +416,6 @@ em { color: #999999; } abbr { - font-size: 90%; - text-transform: uppercase; border-bottom: 1px dotted #ddd; cursor: help; } -- cgit v1.2.3 From f08b40766749209709ec49c01f8aa122996657b3 Mon Sep 17 00:00:00 2001 From: Jacob Rask Date: Sun, 19 Feb 2012 21:22:37 +0100 Subject: Only show help cursor/border for abbr with title --- docs/assets/css/bootstrap.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index b6d3f5b26..98ab116dd 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -415,7 +415,7 @@ em { .muted { color: #999999; } -abbr { +abbr[title] { border-bottom: 1px dotted #ddd; cursor: help; } -- cgit v1.2.3 From c1775da18714170847e1fb7768f375803b63c489 Mon Sep 17 00:00:00 2001 From: Jacob Rask Date: Sun, 19 Feb 2012 21:24:06 +0100 Subject: Add class for upper case abbreviations, aka initialisms Read more: * http://en.wikipedia.org/wiki/Abbreviation * http://en.wikipedia.org/wiki/Initialism --- docs/assets/css/bootstrap.css | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 98ab116dd..a0f9b0837 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -419,6 +419,10 @@ abbr[title] { border-bottom: 1px dotted #ddd; cursor: help; } +abbr.initialism { + font-size: 90%; + text-transform: uppercase; +} blockquote { padding: 0 0 0 15px; margin: 0 0 18px; -- cgit v1.2.3