There are 5 updates, 1 comment.
 
 
XWiki Platform / cid:jira-generated-image-avatar-c2aa5407-9815-44a0-9b9a-bbb4cf9d1ca2 XWIKI-20654 Closed

Maximize link on description mess up the editor

 
View issue   ยท   Add comment
 

5 updates

 
cid:jira-generated-image-avatar-329da7f9-4e71-4bc8-8603-8d621bc10144 Changes by Simon Urli on 28/Oct/25 17:02
 
Fix Version: 17.4.7
Documentation in Release Notes: N/A
Documentation: N/A
Resolution: Fixed
Status: In Progress Closed
 
 

1 comment

 
cid:jira-generated-image-avatar-329da7f9-4e71-4bc8-8603-8d621bc10144 Simon Urli on 28/Oct/25 17:08
 

The root cause of this issue is that the ExtensionSheet puts textarea as siblings of some content of the sheet providing other content explanation, without having a dedicated wrapper around the textarea. And the script in fullscreen.js responsible for handling the fullscreen is currently using the parent of the textarea to put the elements in absolute position for creating the fullscreen. So the simplest fix is to only provide a wrapper for the textarea that are messing up the sheet: providing a generic fix in fullscreen.js is not easy as dynamically inserting a wrapper around the textarea might mess up with other mechanism such as CodeMirror which also inject elements in the DOM and notably another textarea...