DescriptionStarting with Confluence 5.0-rc1, a compatibility bug (CONF-28098) was introduced that overrides attempts by users and macros to provide row level background setting. For instances, this impacts table based macros including: This impacts at least the following: - Row highlighting on mouse-over
- Customized row styles like table stripping - see How to control table display characteristics for instance
It also impacts users using more advanced table producing techniques that use the confluenceTable style. CONF-28098 will be fixed at some point after in 5.1.2 and 5.02, until then the following work around can be used to revert the error to the previous state. Steps- Go to Confluence administration -> Look and Feel -> Custom HTML
- Edit
Add the following to the *At end of the HEAD* section and save: Code Block |
---|
| <style type="text/css">
.confluenceTable .confluenceTd
{ background-color: transparent; }
</style> |
|