unset compass single-text-shadow()

compass-sass, sass

Solution

As in CSS, simply declare `none`:

.specific h2 { @include single-text-shadow(none); }

Problem

Is there a way to unset or remove the text-shadow effect of the compass function ? e.g. i want to set the text shadow globally for all header elements and then eliminate it for certain cases. ``` h2 { @include single-text-shadow($blue, 1px, 1px, 0); } ```

Original source