From 8ad583063bd11e1b8841e1f27207660e0181df19 Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Tue, 24 Jun 2014 18:30:24 +0200 Subject: [PATCH] Move variable declaration before its use for Sass 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 | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/less/variables.less b/less/variables.less index 2f339fb41b..582f0f8d30 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; +