stylus / nib

Stylus mixins, utilities, components, and gradient image generation
http://stylus.github.io/nib
MIT License
1.91k stars 249 forks source link

Browser-specific expansion truncates some properties #260

Open bperki opened 10 years ago

bperki commented 10 years ago

If I have the following in my stylus file:

@import "nib"
html
    background-clip border-box

My resulting css is:

html {
  -webkit-background-clip: border;
  -moz-background-clip: border;
  background-clip: border-box;
}

Likewise,

@import "nib"
html
    background-clip padding-box

turns into

html {
  -webkit-background-clip: padding;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
notslang commented 10 years ago

is that not the expected behavior?