On 09/02/2010 04:26 PM, Stefan Klatt wrote: > > > For ergonomic purposes I want to change the background color of > xincluded fragments. I can change the foreground color via CSS, but the > background color seems fixed. Any Idea? > >
This CSS rule is found in the *built-in* CSS stylesheet, which is automatically prepended to all the user-level CSS stylesheets: --- @namespace prop "http://www.xmlmind.com/xmleditor/namespace/property"; *:property(prop|readOnly, "true") { background-color: #E0F0F0; } --- (any included content is automatically marked read-only. That's why this rule applies to ``xincluded fragments''.) Suffice to redefine it in your own CSS stylesheet. -- XMLmind XML Editor Support List [email protected] http://www.xmlmind.com/mailman/listinfo/xmleditor-support

