On 7/20/11 4:58 PM, Wes Gamble wrote:
On 7/20/11 4:32 PM, Wes Gamble wrote:
Does anyone know if there is a version of Compass that's compatible
with using Radiant 0.9.1 as a gem?
Radiant 0.9.1 packages haml as a plugin (and hence Sass).
Thanks,
Wes
FWIW, I vendor'ed radiant, removed the haml plugin and seem to be
successfully running off the latest compass, haml, and sass gems.
Wes
OK, I inadvertently lied, I had to make changes to the following Sass
files to make them conform to the new Sass syntax.
public/stylesheets/sass/admin/modules
_opacity.sass
_rounded.sass
_shadow.sass
(these files are sourced from
<RADIANT_GEM_ROOT>/public/stylesheets/sass/admin/modules as well).
This includes:
* changing all !x var declarations to $x
* changing all $x ||= 5px !default to $x: 5px !default
* changing all variable assignments from $x = to $x:
Wes