the extentions owners must start with -moz or -op ....
but csseditor not like this ;)
I propose a patch for the CssTextUtils in internal folder.
replace
public static boolean isCssIdentifierStart(char c) {
return ((c == '_') || Character.isLetter(c));
}
by
public static boolean isCssIdentifierStart(char c) {
return ((c == '_') || Character.isLetter(c) || (c == '-'));
}
but with this pacth csseditor accept that
-lulu {
}
it's not correct but when use
lulu {
-moz-border-radius: 1,5;
}
I do not have any more an error...
it's not very correct but that run ;)
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
the extentions owners must start with -moz or -op ....
but csseditor not like this ;)
I propose a patch for the CssTextUtils in internal folder.
replace
public static boolean isCssIdentifierStart(char c) {
return ((c == '_') || Character.isLetter(c));
}
by
public static boolean isCssIdentifierStart(char c) {
return ((c == '_') || Character.isLetter(c) || (c == '-'));
}
but with this pacth csseditor accept that
-lulu {
}
it's not correct but when use
lulu {
-moz-border-radius: 1,5;
}
I do not have any more an error...
it's not very correct but that run ;)