If I\'m using compass for CSS and use a function or mixin like:
@include background-image(linear-gradient(#a3cce0, #fff));
is there any
I had this problem last time and I overrided the compass style with a stronger selector. I just added an ID on my html element
span { @include border-radius(5px);} span#no-radius { @include border-radius(0px); } // override