Deprecation Warning - Compass Unsemantic

0

I'm having a problem compiling some SASS + Compass + Unsemantic code that generates the following warning:

DEPRECATION WARNING on line 17 of /Library/Ruby/Gems/2.0.0/gems/compass-unsemantic-0.1.5/stylesheets/compass-unsemantic/_unsemantic-grid-desktop.sass:
  @extending an outer selector from within @media is deprecated.
  You may only @extend selectors within the same directive.
  This will be an error in Sass 3.3.
  It can only work once @extend is supported natively in the browser.

This warning always appears when I compile the code, and actually generates dozens of them, filling the whole terminal. Unfortunately I did not find anything about it.

    
asked by anonymous 01.02.2014 / 03:57

1 answer

1

It seems that there is a compatibility problem between Unsemantic and SASS 3.3. In the link below, the author of Unsemantic states that the warning can be ignored without any problem.

When SASS supports the @at-root operator, Unsemantic will be updated and the warning will be corrected.

It seems that for now, using SASS 3.2 can resolve the warning.

Source: Unsemantic Issue: deprecation warning upon compile # 3

    
01.02.2014 / 11:39