diff options
| author | Kevin Kirsche <[email protected]> | 2015-08-19 16:31:31 -0400 |
|---|---|---|
| committer | Kevin Kirsche <[email protected]> | 2015-08-24 13:22:10 -0400 |
| commit | d51f0a4f816534e8c39ff58d8d4c562d2dd568fb (patch) | |
| tree | 6adef8240a13f466afbdd4e8e6e05876cd82559b /scss/_type.scss | |
| parent | c8ab0a56c24136aa4beb9f5e76b4548dd5c33df8 (diff) | |
| download | bootstrap-d51f0a4f816534e8c39ff58d8d4c562d2dd568fb.tar.xz bootstrap-d51f0a4f816534e8c39ff58d8d4c562d2dd568fb.zip | |
Use double colons for psuedo elements
Fix #17052
Diffstat (limited to 'scss/_type.scss')
| -rw-r--r-- | scss/_type.scss | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scss/_type.scss b/scss/_type.scss index 3d349e644..2d2de68ec 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 } } |
