stephenlacy / gulp-stylus

Stylus plugin for gulp
MIT License
223 stars 60 forks source link

Text-shadow compiling bug #115

Closed alvik48 closed 9 years ago

alvik48 commented 9 years ago

Hi.

When compiling .styl file, I get error on text-shadow property. Example:

app.styl
.logo
  text-shadow 1px 1px 2px rgba(#000, .6)
app.css
.logo {
  text-shadow: 1px;
}

But if I add ,; in source file or simply add another text-shadow, then first text-shadow will appeared correctly. Example:

app.styl
 .logo
   text-shadow 1px 1px 2px rgba(#000, .6),;
app.css
 .logo {
   text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
 }

This issue reproduces in repo https://github.com/alvik48/speed-markup, look to .logo class.

jescalan commented 9 years ago

This is a stylus error, you can file it in the stylus repo