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:01:37 +0300
committerMark Otto <markdotto@gmail.com>2016-02-07 07:01:37 +0300
commitccf971d860a164e6c110bda012a7577d807ad7af (patch)
treed995f09deeb2103a161c5d4de498d3e6704f8214 /scss/_type.scss
parentf3802a839b7e3b0a153c1ad08122444bf17e4ecc (diff)
Fixes #17969: Clear horizontal dls
- Using the grid classes, they still need clearfixes since rows aren't injected between them all - Update docs to fix broken classes
Diffstat (limited to 'scss/_type.scss')
-rw-r--r--scss/_type.scss9
1 files changed, 9 insertions, 0 deletions
diff --git a/scss/_type.scss b/scss/_type.scss
index 9fe8194db5..f29ef493d6 100644
--- a/scss/_type.scss
+++ b/scss/_type.scss
@@ -137,3 +137,12 @@ mark,
content: "\00A0 \2014"; // nbsp, em dash
}
}
+
+// Clean up some horizontal `<dl>`s built with grids
+// scss-lint:disable QualifyingElement
+dl.row {
+ > dd + dt {
+ clear: left;
+ }
+}
+// scss-lint:enable QualifyingElement