aboutsummaryrefslogtreecommitdiff
path: root/scss/_type.scss
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2016-02-06 20:01:37 -0800
committerMark Otto <[email protected]>2016-02-06 20:01:37 -0800
commitccf971d860a164e6c110bda012a7577d807ad7af (patch)
treed995f09deeb2103a161c5d4de498d3e6704f8214 /scss/_type.scss
parentf3802a839b7e3b0a153c1ad08122444bf17e4ecc (diff)
downloadbootstrap-ccf971d860a164e6c110bda012a7577d807ad7af.tar.xz
bootstrap-ccf971d860a164e6c110bda012a7577d807ad7af.zip
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 9fe8194db..f29ef493d 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