diff --git a/docs/_includes/customizer-variables.html b/docs/_includes/customizer-variables.html index 4dde831cb1..c260b90d26 100644 --- a/docs/_includes/customizer-variables.html +++ b/docs/_includes/customizer-variables.html @@ -1878,6 +1878,11 @@

Width of horizontal description list titles

+
+ + +

Point at which .dl-horizontal becomes horizontal

+
diff --git a/less/type.less b/less/type.less index 68ba6017bf..0d4fee4848 100644 --- a/less/type.less +++ b/less/type.less @@ -211,7 +211,7 @@ dd { &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present } - @media (min-width: @grid-float-breakpoint) { + @media (min-width: @dl-horizontal-breakpoint) { dt { float: left; width: (@dl-horizontal-offset - 20); diff --git a/less/variables.less b/less/variables.less index c1861a8e01..b057ef5bf9 100644 --- a/less/variables.less +++ b/less/variables.less @@ -863,5 +863,7 @@ @page-header-border-color: @gray-lighter; //** Width of horizontal description list titles @dl-horizontal-offset: @component-offset-horizontal; +//** Point at which .dl-horizontal becomes horizontal +@dl-horizontal-breakpoint: @grid-float-breakpoint; //** Horizontal line color. @hr-border: @gray-lighter;