klen / python-scss

Python scss parser.
http://packages.python.org/scss/
GNU Lesser General Public License v3.0
67 stars 12 forks source link

CSS3 transitions #23

Closed mrIntegrator closed 12 years ago

mrIntegrator commented 12 years ago

Support for CSS3 transforms would be nice.

Currently "Unknown declaration" warnings are generated for:

Also a problem occurs during rendering:

{ transition-duration: 1s; } is rendered as { transition-duration: 1 s; } which causes the browser to ignore it due to the added space.

Same problem occurs when specify time values for 'transition-delay' and the shorthand 'transition'.

Possible values are 's' for seconds and 'ms' for milliseconds.

klen commented 12 years ago

Fixed in version 0.8.51.

Also you can use option: '-W' for disable warnings. Or @option warn:false in your source.