From 0bb8e8ad40f7c51cf238c57f321a9dd13c7752cb Mon Sep 17 00:00:00 2001 From: Michael Hellein Date: Wed, 6 Aug 2014 16:22:36 -0400 Subject: [PATCH] Relocated sassscript functions to compass dir. This location seems to provide a better API for imports, even if it does intermingle our changes with Compass a bit. --- README.markdown | 2 +- lib/_compass.scss | 1 + lib/{ => compass}/_functions.scss | 0 lib/{functions/lists.scss => compass/functions/_lists.scss} | 0 4 files changed, 2 insertions(+), 1 deletion(-) rename lib/{ => compass}/_functions.scss (100%) rename lib/{functions/lists.scss => compass/functions/_lists.scss} (100%) diff --git a/README.markdown b/README.markdown index 474435e..12ce385 100644 --- a/README.markdown +++ b/README.markdown @@ -6,7 +6,7 @@ This is a repository to pull SASS style sheets on Bower, and enjoy the compass m This project includes reasonably similar implementations of some of the Ruby functions that Compass provides as Sass extensions. These are used in some Compass mixins, such as `@include background()`. -To make those functions available to your compass mixins, you'll want to import the included `_functions.scss` before `_compass.scss`. +To make those functions available to your compass mixins, you'll want to either `@import "compass";` or `@import "compass/functions"'` before the specific compass scss files you import. ## License Copyright (c) 2008-2009 Christopher M. Eppstein
diff --git a/lib/_compass.scss b/lib/_compass.scss index 9b741c0..f8a53de 100644 --- a/lib/_compass.scss +++ b/lib/_compass.scss @@ -1,3 +1,4 @@ +@import "compass/functions"; @import "compass/utilities"; @import "compass/typography"; @import "compass/css3"; diff --git a/lib/_functions.scss b/lib/compass/_functions.scss similarity index 100% rename from lib/_functions.scss rename to lib/compass/_functions.scss diff --git a/lib/functions/lists.scss b/lib/compass/functions/_lists.scss similarity index 100% rename from lib/functions/lists.scss rename to lib/compass/functions/_lists.scss