aboutsummaryrefslogtreecommitdiff
path: root/scss/_type.scss
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2017-06-30 14:22:11 -0700
committerMark Otto <[email protected]>2017-06-30 15:04:56 -0700
commit45722e94acdffc314d7f835ed8a73cd0d56d879a (patch)
treeb3e737c620028a8ac60b7e95fba71251a119fc2e /scss/_type.scss
parent4554d7422119e929e971eaa53835c786cc11ec0e (diff)
downloadbootstrap-45722e94acdffc314d7f835ed8a73cd0d56d879a.tar.xz
bootstrap-45722e94acdffc314d7f835ed8a73cd0d56d879a.zip
Drop .blockquote-reverse, replace with text utils, and redesign blockquote to not have a border
Diffstat (limited to 'scss/_type.scss')
-rw-r--r--scss/_type.scss20
1 files changed, 0 insertions, 20 deletions
diff --git a/scss/_type.scss b/scss/_type.scss
index 5ecc336ae..8928341da 100644
--- a/scss/_type.scss
+++ b/scss/_type.scss
@@ -108,10 +108,8 @@ mark,
// Blockquotes
.blockquote {
- padding: ($spacer / 2) $spacer;
margin-bottom: $spacer;
font-size: $blockquote-font-size;
- border-left: $blockquote-border-width solid $blockquote-border-color;
}
.blockquote-footer {
@@ -123,21 +121,3 @@ mark,
content: "\2014 \00A0"; // em dash, nbsp
}
}
-
-// Opposite alignment of blockquote
-.blockquote-reverse {
- padding-right: $spacer;
- padding-left: 0;
- text-align: right;
- border-right: $blockquote-border-width solid $blockquote-border-color;
- border-left: 0;
-}
-
-.blockquote-reverse .blockquote-footer {
- &::before {
- content: "";
- }
- &::after {
- content: "\00A0 \2014"; // nbsp, em dash
- }
-}