aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-07-18 14:43:38 -0700
committerMark Otto <[email protected]>2013-07-18 14:43:38 -0700
commit1f48e837000c8c2ec701c1442fa003ab836f818f (patch)
treebd26925568a9e12dc17e07a05d49ce614ee8a277
parentcc63096118d0d1cf4e0acb5c45daab508a07ae7c (diff)
parent86efc140e2e245d134a8a6794fbe27bfb71abe3f (diff)
downloadbootstrap-1f48e837000c8c2ec701c1442fa003ab836f818f.tar.xz
bootstrap-1f48e837000c8c2ec701c1442fa003ab836f818f.zip
Merge pull request #8517 from cvrebert/gloss-unicode
add comments to gloss Unicode codepoint hex
-rw-r--r--less/carousel.less4
-rw-r--r--less/type.less4
2 files changed, 4 insertions, 4 deletions
diff --git a/less/carousel.less b/less/carousel.less
index 40d7e277e..7dc129af4 100644
--- a/less/carousel.less
+++ b/less/carousel.less
@@ -115,12 +115,12 @@
// Non-glyphicon toggles
.icon-prev {
&:before {
- content: '\2039';
+ content: '\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)
}
}
.icon-next {
&:before {
- content: '\203a';
+ content: '\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)
}
}
}
diff --git a/less/type.less b/less/type.less
index a9a7e189f..9986124dc 100644
--- a/less/type.less
+++ b/less/type.less
@@ -192,7 +192,7 @@ blockquote {
line-height: @line-height-base;
color: @gray-light;
&:before {
- content: '\2014 \00A0';
+ content: '\2014 \00A0';// EM DASH, NBSP
}
}
@@ -212,7 +212,7 @@ blockquote {
content: '';
}
&:after {
- content: '\00A0 \2014';
+ content: '\00A0 \2014';// NBSP, EM DASH
}
}
}