Skip to content

Commit

Permalink
Allow colors in @at directives
Browse files Browse the repository at this point in the history
  • Loading branch information
mgreter committed Mar 19, 2018
1 parent 0dee7ad commit 1198007
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/parser.cpp
Expand Up @@ -2703,7 +2703,9 @@ namespace Sass {
if ((rv = lex_interp_string())) return rv;
if ((rv = lex_interp_uri())) return rv;
if ((rv = lex_interpolation())) return rv;
return rv;
if (lex< alternatives< hex, hex0 > >())
{ return lexed_hex_color(lexed); }
return rv;
}

String_Schema_Obj Parser::parse_almost_any_value()
Expand Down

0 comments on commit 1198007

Please sign in to comment.