Skip to content

Commit

Permalink
Add color-stop as a recognized function.
Browse files Browse the repository at this point in the history
  • Loading branch information
eevee committed Feb 13, 2013
1 parent dee6d88 commit cb32682
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scss/__init__.py
Expand Up @@ -223,7 +223,7 @@
# http://www.w3.org/TR/css3-animations/ # http://www.w3.org/TR/css3-animations/
FUNCTIONS_ANIMATIONS = '' # has 'from' and 'to' block selectors, but no new function FUNCTIONS_ANIMATIONS = '' # has 'from' and 'to' block selectors, but no new function
FUNCTIONS_FILTER = 'grayscale blur sepia saturate opacity brightness contrast hue-rotate invert' FUNCTIONS_FILTER = 'grayscale blur sepia saturate opacity brightness contrast hue-rotate invert'
FUNCTIONS_OTHERS = 'from to mask' FUNCTIONS_OTHERS = 'from to color-stop mask'
VENDORS = '-[^-]+-.+' VENDORS = '-[^-]+-.+'


_css_functions_re = re.compile(r'^(%s)$' % ( _css_functions_re = re.compile(r'^(%s)$' % (
Expand Down

0 comments on commit cb32682

Please sign in to comment.