From 2d00d3e07e5c21161ab31cacfaff7c2c81cdf7f5 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Wed, 17 Apr 2013 17:50:51 -0600 Subject: [PATCH] Import variables.less into config.less so it can be compiled alone MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We try to compile all stylesheets across the board, but now many of our stylesheets are imported into a master `atom.less` stylesheet. The config stylesheet would compile fine when included from `atom.less`, but alone it fails because it doesn't have the variables. We should probably only try to pre-compile stylesheets we intend to require directly… using a manifest maybe? --- static/config.less | 2 ++ 1 file changed, 2 insertions(+) diff --git a/static/config.less b/static/config.less index 2fc54252b..d38518481 100644 --- a/static/config.less +++ b/static/config.less @@ -1,3 +1,5 @@ +@import "bootstrap/less/variables.less"; + #config-view { height: 100%; width: 100%;