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>2016-02-07 07:02:39 +0300
committerMark Otto <markdotto@gmail.com>2016-02-07 07:02:39 +0300
commiteee0a685a496e5158380e6fc841caad9d5f0f5dc (patch)
treec744f9684e357795117c1090e01c8da6ca946c29 /scss/_type.scss
parentccf971d860a164e6c110bda012a7577d807ad7af (diff)
only do it for non-flex version
Diffstat (limited to 'scss/_type.scss')
-rw-r--r--scss/_type.scss14
1 files changed, 8 insertions, 6 deletions
diff --git a/scss/_type.scss b/scss/_type.scss
index f29ef493d6..1075757795 100644
--- a/scss/_type.scss
+++ b/scss/_type.scss
@@ -138,11 +138,13 @@ mark,
}
}
-// Clean up some horizontal `<dl>`s built with grids
-// scss-lint:disable QualifyingElement
-dl.row {
- > dd + dt {
- clear: left;
+@if not $enable-flex {
+ // Clean up some horizontal `<dl>`s built with grids
+ // scss-lint:disable QualifyingElement
+ dl.row {
+ > dd + dt {
+ clear: left;
+ }
}
+ // scss-lint:enable QualifyingElement
}
-// scss-lint:enable QualifyingElement