aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-06-24 12:21:10 -0700
committerMark Otto <[email protected]>2014-06-24 12:21:10 -0700
commitdad6d4445cafd09547a6606d8e3a33584c9dad9b (patch)
tree2895b58748f89f02a8481eb3f8b3f9a66c89bacb
parentc975f42e042bd3df11ed574b79eae3e963f9edbb (diff)
parent8ad583063bd11e1b8841e1f27207660e0181df19 (diff)
downloadbootstrap-dad6d4445cafd09547a6606d8e3a33584c9dad9b.tar.xz
bootstrap-dad6d4445cafd09547a6606d8e3a33584c9dad9b.zip
Merge pull request #13916 from glebm/variable-order
Move variable declaration before its use (for Sass)
-rw-r--r--less/variables.less11
1 files changed, 3 insertions, 8 deletions
diff --git a/less/variables.less b/less/variables.less
index 2f339fb41..582f0f8d3 100644
--- a/less/variables.less
+++ b/less/variables.less
@@ -822,6 +822,8 @@
//
//##
+//** Horizontal offset for forms and lists.
+@component-offset-horizontal: 180px;
//** Text muted color
@text-muted: @gray-light;
//** Abbreviations and acronyms border color
@@ -838,14 +840,7 @@
@page-header-border-color: @gray-lighter;
//** Width of horizontal description list titles
@dl-horizontal-offset: @component-offset-horizontal;
-
-
-//== Miscellaneous
-//
-//##
-
//** Horizontal line color.
@hr-border: @gray-lighter;
-//** Horizontal offset for forms and lists.
-@component-offset-horizontal: 180px;
+