I'm starting with SASS/Compass and i'm in trouble right now.
I want to translate this CSS code
-moz-border-top-colors: #c2c2c2 #d3d3d3 #ebebeb
-moz-border-right-colors: #c2c2c2 #d3d3d3 #ebebeb
-moz-border-bottom-colors: #c2c2c2 #d3d3d3 #ebebeb
-moz-border-left-colors: #c2c2c2 #d3d3d3 #ebebeb
Into some SASS/Compass beautiful code. I think that it should be something like
border: 3px solid @inclue linear-gradient(#c2c2c2, #ebebeb)
I've searched the Compass documentation but couldn't find the answer. Anyone?
Thanks!