There is 1 comment.
 
 
XWiki Platform / cid:jira-generated-image-avatar-6295d565-9ece-408f-b853-d77f1f77f31f XWIKI-21958 Closed

Add static scrollbar to top of pages (supports display and nav for large tables)

 
View issue   ยท   Add comment
 

1 comment

 
cid:jira-generated-image-avatar-4711fe11-9e6d-4437-ae4b-7ed364c2a029 Julia Gilmore on 06/Nov/24 21:54
 

Thanks Charpentier Lucas!

I've added the following code to our Advanced CSS in our theme, so the bottom scrollbar appears for all tables in our wiki, regardless of whether the sorteable tables macro is used. 
 

table {    
display: block;    
overflow-x: auto;    
width: 100%; 
}

It looks more complicated to add a top scrollbar, but I'll keep investigating. 

Moving forward, could this be added by default to the Advanced CSS? It would improve the table viewing experience considerably. 

Thanks again smile.png