Comparing version 0.9.0 to 0.9.1
0.9.1 / 2012-12-04 | ||
================== | ||
* fix rgba() with arity > 2 | ||
0.9.0 / 2012-11-30 | ||
@@ -3,0 +8,0 @@ ================== |
@@ -48,2 +48,5 @@ | ||
// arity > 2 | ||
if (rgba.split(',').length > 2) continue; | ||
// color | ||
@@ -50,0 +53,0 @@ var c = rgba.slice(rgba.indexOf('(') + 1, rgba.indexOf(',')).trim(); |
{ | ||
"name": "rework", | ||
"version": "0.9.0", | ||
"version": "0.9.1", | ||
"description": "CSS manipulations built on CSSOM", | ||
@@ -5,0 +5,0 @@ "keywords": ["css", "manipulation", "preprocess", "transform"], |
@@ -95,3 +95,3 @@ # rework | ||
'phone': 'only screen and (min-device-width : 320px) and (max-device-width : 480px)', | ||
'phone-landscape': '@media only screen and (min-width : 321px)' | ||
'phone-landscape': 'only screen and (min-width : 321px)' | ||
})) | ||
@@ -123,3 +123,3 @@ ``` | ||
@media @media only screen and (min-width : 321px) { | ||
@media only screen and (min-width : 321px) { | ||
body { | ||
@@ -126,0 +126,0 @@ background: 'red' |
36521
767