mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-10 20:09:57 +00:00
Fix overflow in table and table-of-contents (#8608)
Another approach fix overflow.
This commit is contained in:
parent
19990802fa
commit
6dbdbfbe82
@ -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
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user