-
Bug
-
Resolution: Unresolved
-
Low
-
None
-
8.6.0, 8.6.1
-
5
-
Severity 3 - Minor
-
6
-
Issue Summary
This is reproducible on Data Center: (yes)
Since Confluence v8.6, the images resized by percentage are displayed as small images on the page.
Steps to Reproduce
- Create a page in Confluence
- Download Confluence Source Editor.
- Go to Settings -> Manage Apps screen and install Confluence Source Editor by selecting Upload app and choosing the Confluence source editor jar file.
- Edit the page and click the <> button
- Insert the storage format below:
<p> <ac:image ac:align="center" ac:width="80%" <ri:attachment ri:filename="image-2023-11-21_11-42-29.png" /> </ac:image> </p>
- Save the page
Expected Results
The image should be displayed as expected:
Actual Results
The. image is displayed as a small image:
Workaround
Use pixel values instead of the percentage:
<p> <ac:image ac:align="center" ac:width="650" <ri:attachment ri:filename="image-2023-11-21_11-42-29.png" /> </ac:image> </p>
Another possible workaround is to use the custom CSS below. This was shown to work in at least two different environments.
.wiki-content .confluence-embedded-file-wrapper.confluence-embedded-manual-size { max-width: none !important; }
- is related to
-
CONFSERVER-99690 Texts with class="confluence-embedded-file-wrapper confluence-embedded-manual-size"are not displayed correctly
-
- Gathering Impact
-