diff options
| author | Mark Otto <[email protected]> | 2014-06-24 12:21:10 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-06-24 12:21:10 -0700 |
| commit | dad6d4445cafd09547a6606d8e3a33584c9dad9b (patch) | |
| tree | 2895b58748f89f02a8481eb3f8b3f9a66c89bacb | |
| parent | c975f42e042bd3df11ed574b79eae3e963f9edbb (diff) | |
| parent | 8ad583063bd11e1b8841e1f27207660e0181df19 (diff) | |
| download | bootstrap-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.less | 11 |
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; + |
