Hi,
Since a few hours, I can effectively no longer review my changes before publishing them.
Specifically, in edit mode, when I select "View changes" from the "..." menu, I see the "unpublished changes modal, but the changes are no longer highlighted, i.e. the different background colors are missing.
(The key at the top of the modal, which explains the different highlighting styles, is still present, but missing highlights as well.)
The version comparison in the version history still appears to work.
I need to review my changes before publishing, this is breaking my workflow.
ciao
Martina
I encounter the same issue (Mac Vivaldi browser). It seems the css is missing for the diff-html classes.
A potential workaround is to add a custom stylesheet e.g. with local overrides (see https://developer.chrome.com/blog/new-in-devtools-65/#overrides , and similar for other browsers). The following stylesheet does the trick:
.diff-html-added {
color: red;
background-color: yellow
}
.diff-html-changed {
color: green;
background-color: yellow
}
.diff-html-removed {
text-decoration: line-through;
background-color: yellow
}
However, a solution by Atlassian would be more than welcome!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.