1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00

[Sass] [SCSS] Make unicode ranges case-insensitive.

This commit is contained in:
Nathan Weizenbaum 2009-12-27 02:23:24 -08:00
parent 0f04cba862
commit 36edef9b26

View file

@ -48,7 +48,7 @@ module Sass
URI = /url\(#{W}(#{STRING}|#{URL})#{W}\)/i
FUNCTION = /#{IDENT}\(/
UNICODERANGE = /u\+(#{RANGE}|#{H}{1,6}-#{H}{1,6})/
UNICODERANGE = /u\+(#{RANGE}|#{H}{1,6}-#{H}{1,6})/i
# Defined in http://www.w3.org/TR/css3-selectors/#lex
PLUS = /#{W}\+/