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:
authorMark Otto <markdotto@gmail.com>2017-07-01 00:22:11 +0300
committerMark Otto <markd.otto@gmail.com>2017-07-01 01:04:56 +0300
commit45722e94acdffc314d7f835ed8a73cd0d56d879a (patch)
treeb3e737c620028a8ac60b7e95fba71251a119fc2e /scss/_type.scss
parent4554d7422119e929e971eaa53835c786cc11ec0e (diff)
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 5ecc336aef..8928341da8 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
- }
-}