]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Move variable declaration before its use for Sass 13916/head
authorGleb Mazovetskiy <glex.spb@gmail.com>
Tue, 24 Jun 2014 16:30:24 +0000 (18:30 +0200)
committerGleb Mazovetskiy <glex.spb@gmail.com>
Tue, 24 Jun 2014 16:30:24 +0000 (18:30 +0200)
In Sass, variable must be declared before it is used.
This also removes Miscellaneous section, because horizontal line color
and form / list paddings are Typography.

less/variables.less

index 2f339fb41b02ee31682a8626d9567d054fa4d69f..582f0f8d30a1575cce7557556eaa2e63cd85867c 100644 (file)
 //
 //##
 
+//** Horizontal offset for forms and lists.
+@component-offset-horizontal: 180px;
 //** Text muted color
 @text-muted:                  @gray-light;
 //** Abbreviations and acronyms border color
 @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;
+