support @counter-style. Fixes #2204

This commit is contained in:
Luke Page
2014-11-09 14:13:53 +00:00
parent 9017cbe2ad
commit 4dab36dade
3 changed files with 14 additions and 0 deletions

View File

@@ -1290,6 +1290,10 @@ var Parser = function Parser(context, imports, fileInfo) {
hasBlock = true;
break;
*/
case "@counter-style":
hasIdentifier = true;
hasBlock = true;
break;
case "@charset":
hasIdentifier = true;
hasBlock = false;

View File

@@ -142,3 +142,8 @@ body ^^ .shadow {
#issue2066 {
background: url('/images/icon-team.svg') 0 0 / contain;
}
@counter-style triangle {
system: cyclic;
symbols: ;
suffix: " ";
}

View File

@@ -144,3 +144,8 @@ body ^^ .shadow {
#issue2066 {
background: url('/images/icon-team.svg') 0 0 / contain;
}
@counter-style triangle {
system: cyclic;
symbols: ‣;
suffix: " ";
}