There is 1 comment.
 
 
XWiki Platform / cid:jira-generated-image-avatar-36173f39-3ac1-4316-b2af-75b77b192eb0 XWIKI-23132 Open

Document tabs have border between tab label and content

 
View issue   ยท   Add comment
 

1 comment

 
cid:jira-generated-image-avatar-d6b72ca3-c5e0-46e5-8fc1-8a50e6d5b1ca Michael Hamann on 23/Apr/25 14:55
 

The tab content wasn't using position: relative before this change but the tab label was. Therefore, the tab label was in front of the tab content as all positioned elements are above non-positioned elements, and it was hiding the border. Now, the tab content is also relatively positioned, meaning that is now above the tab label (and thus the border is visible) as the default stacking order within positioned elements follows the source order. See also https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_positioned_layout/Stacking_without_z-index