From: Mark Otto Date: Sun, 7 Feb 2016 04:02:39 +0000 (-0800) Subject: only do it for non-flex version X-Git-Tag: v4.0.0-alpha.3~288^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eee0a685a496e5158380e6fc841caad9d5f0f5dc;p=thirdparty%2Fbootstrap.git only do it for non-flex version --- 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 `
`s built with grids -// scss-lint:disable QualifyingElement -dl.row { - > dd + dt { - clear: left; +@if not $enable-flex { + // Clean up some horizontal `
`s built with grids + // scss-lint:disable QualifyingElement + dl.row { + > dd + dt { + clear: left; + } } + // scss-lint:enable QualifyingElement } -// scss-lint:enable QualifyingElement