1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-30 05:19:57 +00:00

Further fix content overflow. (#8682)

This reverts fix for all tables. It should fix #8617.

It also adds fix for overflow in $:/Manager 's content page, testcase
widget output. The fix for overflow $:/TagManager is reverted since it
caused the dropdown not to display properly.
This commit is contained in:
Leilei332 2024-10-18 20:16:50 +08:00 committed by GitHub
parent 060cfd4868
commit e25ab7777f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 14 deletions

View File

@ -62,7 +62,6 @@ color: #bbb
\end \end
\whitespace trim \whitespace trim
<div class="tc-table-wrapper">
<table class="tc-tag-manager-table"> <table class="tc-tag-manager-table">
<tbody> <tbody>
<tr> <tr>
@ -116,5 +115,4 @@ color: #bbb
<td></td> <td></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
</div>

View File

@ -2793,20 +2793,11 @@ a.tc-tiddlylink.tc-plugin-info:hover > .tc-plugin-info-chunk .tc-plugin-info-sta
display: table; display: table;
} }
/* Fix overflow in table and toc */ /* Fix overflow toc, manager and testcase output */
.tc-tiddler-body .tc-tabbed-table-of-contents { .tc-tiddler-body .tc-tabbed-table-of-contents, .tc-manager-list-item-content, .tc-test-case-output {
overflow-x: auto; overflow-x: auto;
} }
.tc-tiddler-body > table {
display: block;
overflow: auto;
}
.tc-tiddler-body > table tbody {
display: table;
width: 100%;
}
/* A wrapper to fix table overflow */ /* A wrapper to fix table overflow */
.tc-table-wrapper { .tc-table-wrapper {