aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Rask <[email protected]>2012-02-19 21:24:06 +0100
committerJacob Rask <[email protected]>2012-02-19 21:24:06 +0100
commitc1775da18714170847e1fb7768f375803b63c489 (patch)
tree324ae4888a6cec8e38804c894166e4a0483c460d
parentf08b40766749209709ec49c01f8aa122996657b3 (diff)
downloadbootstrap-c1775da18714170847e1fb7768f375803b63c489.tar.xz
bootstrap-c1775da18714170847e1fb7768f375803b63c489.zip
Add class for upper case abbreviations, aka initialisms
Read more: * http://en.wikipedia.org/wiki/Abbreviation * http://en.wikipedia.org/wiki/Initialism
-rw-r--r--docs/assets/bootstrap.zipbin53409 -> 53441 bytes
-rw-r--r--docs/assets/css/bootstrap.css4
-rw-r--r--less/type.less4
3 files changed, 8 insertions, 0 deletions
diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip
index 82fff3162..a52a2ffe7 100644
--- a/docs/assets/bootstrap.zip
+++ b/docs/assets/bootstrap.zip
Binary files differ
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;
diff --git a/less/type.less b/less/type.less
index b68bddbb6..bbe15f6cf 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 {