Author mode CSS extensions
Posted: Mon Feb 02, 2009 12:16 am
				
				I can't get the CSS extensions that allow you to show things like XML comments and processing instructions in author mode to work.  Here's the start of my .css file:
The rest of the selectors in the file pertain to the default namespace and work just fine.  But these don't seem to ever show up.  The above is almost cut-n-paste from the documentation.
I also note that even though I set my preferences to do CSS 3.0 validation, it still marks these lines as invalid. For example, the first line is marked: "Sorry, the at-rule @namespace is not implemented."
I'm running 9.3, build 2008092518) under Mac OS X 10.5.6, java.vm.version is 1.5.0_16-133. Any help on this would be greatly appreciated.
			Code: Select all
@namespace oxy url('http://www.oxygenxml.com/extensions/author');
* {
    margin:0;
    padding:0;
}
oxy|document {
    display:block;
}
oxy|processing-instruction {
    display:block;
    color:red;
    background-color:inherit;
    font-size:smaller;
}
oxy|comment {
    display:block;
    color:red;
    background-color:#eee;
    margin-left: 3em;
}
oxy|cdata{
    display:inherit;
}
I also note that even though I set my preferences to do CSS 3.0 validation, it still marks these lines as invalid. For example, the first line is marked: "Sorry, the at-rule @namespace is not implemented."
I'm running 9.3, build 2008092518) under Mac OS X 10.5.6, java.vm.version is 1.5.0_16-133. Any help on this would be greatly appreciated.