Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Kirsche <Kev.Kirsche+GitHub@gmail.com>2015-08-19 23:31:31 +0300
committerKevin Kirsche <kev.kirsche@gmail.com>2015-08-24 20:22:10 +0300
commitd51f0a4f816534e8c39ff58d8d4c562d2dd568fb (patch)
tree6adef8240a13f466afbdd4e8e6e05876cd82559b /scss/_type.scss
parentc8ab0a56c24136aa4beb9f5e76b4548dd5c33df8 (diff)
Use double colons for psuedo elements
Fix #17052
Diffstat (limited to 'scss/_type.scss')
-rw-r--r--scss/_type.scss6
1 files changed, 3 insertions, 3 deletions
diff --git a/scss/_type.scss b/scss/_type.scss
index 3d349e6442..2d2de68ec1 100644
--- a/scss/_type.scss
+++ b/scss/_type.scss
@@ -143,7 +143,7 @@ mark,
line-height: $line-height;
color: $blockquote-small-color;
- &:before {
+ &::before {
content: "\2014 \00A0"; // em dash, nbsp
}
}
@@ -159,8 +159,8 @@ mark,
// Account for citation
footer {
- &:before { content: ""; }
- &:after {
+ &::before { content: ""; }
+ &::after {
content: "\00A0 \2014"; // nbsp, em dash
}
}