From: Jacob Rask Date: Sun, 19 Feb 2012 20:24:06 +0000 (+0100) Subject: Add class for upper case abbreviations, aka initialisms X-Git-Tag: v2.0.2~140^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c1775da18714170847e1fb7768f375803b63c489;p=thirdparty%2Fbootstrap.git Add class for upper case abbreviations, aka initialisms Read more: * http://en.wikipedia.org/wiki/Abbreviation * http://en.wikipedia.org/wiki/Initialism --- diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip index 82fff3162f..a52a2ffe74 100644 Binary files a/docs/assets/bootstrap.zip and b/docs/assets/bootstrap.zip differ diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 98ab116dd7..a0f9b0837b 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; diff --git a/less/type.less b/less/type.less index b68bddbb65..bbe15f6cf7 100644 --- a/less/type.less +++ b/less/type.less @@ -158,6 +158,10 @@ abbr[title] { border-bottom: 1px dotted #ddd; cursor: help; } +abbr.initialism { + font-size: 90%; + text-transform: uppercase; +} // Blockquotes blockquote {