-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Low
-
Affects Version/s: 8.8.0
-
Component/s: Content - Inline Comments
-
2
-
Severity 3 - Minor
-
14
Problem
The Author Names against Inline Comments in Confluence Data Center are not displayed properly
Environment
Reproduced in Confluence Data Center 8.8.0
Steps to Reproduce
On a Confluence Data Center 8.8.0 version:
- Create a page
- Publish content
- Add some inline comments
Expected Results
When opening the Inline comments we expect the Author names to be displayed and visible properly ![]()
Actual Results
The author's name on the inline comments appears white/invisible ![]()

Workaround
Workaround 1
Warning
Be mindful that the workaround below has been only unit tested locally by support engineers. We recommend testing the intended behavior in a UAT/staging environment first. We may provide other options/workaround.
To work around this issue, we can add a temporary custom CSS rule to provide the correct styling.
- Navigate to General Configuration > Stylesheet
- Click Edit
- Paste the following code:
/* Applied to mitigate CONFSERVER-94846 */ .ic-author .url{ color: var(--aui-link-color) !important; } /* End fix for CONFSERVER-94846 */
- Click Save
We recommend removing this custom CSS when upgrading to a patched version of Confluence.
Notes
Looking at the CSS for the given element the top-most style rule looks to be the culprit which looks to take precedence over the one below it (intended colour)
.ic-author .url {
color: var(--ds-text, #f5f5f5);
display: inline-block;
max-width: 212px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
a:not(.aui-button,.aui-dialog2-header-close) {
color: var(-{-}confluence-color-scheme-linkColor, var({-}-ds-link));
}
- mentioned in
-
Page Loading...