1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-21 03:39:43 +00:00

Fix overflow in table and table-of-contents (#8608)

Another approach fix overflow.
This commit is contained in:
Leilei332 2024-09-16 20:24:58 +08:00 committed by GitHub
parent 19990802fa
commit 6dbdbfbe82
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2779,6 +2779,20 @@ a.tc-tiddlylink.tc-plugin-info:hover > .tc-plugin-info-chunk .tc-plugin-info-sta
display: table;
}
/* Fix overflow in table and toc */
.tc-tiddler-body .tc-tabbed-table-of-contents {
overflow-x: auto;
}
.tc-tiddler-body > table {
display: block;
overflow: auto;
}
.tc-tiddler-body > table tbody {
display: table;
width: 100%;
}
/*
** Chooser
*/