Commit c7cd6310 authored by Mark Otto's avatar Mark Otto
Browse files

fixes #13346: add a variable for .dl-horizontal's offset

parent f4dd02f5
Showing with 4 additions and 2 deletions
+4 -2
...@@ -219,13 +219,13 @@ dd { ...@@ -219,13 +219,13 @@ dd {
@media (min-width: @grid-float-breakpoint) { @media (min-width: @grid-float-breakpoint) {
dt { dt {
float: left; float: left;
width: (@component-offset-horizontal - 20); width: (@dl-horizontal-offset - 20);
clear: left; clear: left;
text-align: right; text-align: right;
.text-overflow(); .text-overflow();
} }
dd { dd {
margin-left: @component-offset-horizontal; margin-left: @dl-horizontal-offset;
} }
} }
} }
......
...@@ -836,6 +836,8 @@ ...@@ -836,6 +836,8 @@
@blockquote-border-color: @gray-lighter; @blockquote-border-color: @gray-lighter;
//** Page header border color //** Page header border color
@page-header-border-color: @gray-lighter; @page-header-border-color: @gray-lighter;
//** Width of horizontal description list titles
@dl-horizontal-offset: @component-offset-horizontal;
//== Miscellaneous //== Miscellaneous
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment