Skip to content

Commit

Permalink
Further fix content overflow. (#8682)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Leilei332 authored Oct 18, 2024
1 parent 060cfd4 commit e25ab77
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 14 deletions.
4 changes: 1 addition & 3 deletions core/ui/TagManager.tid
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ color: #bbb
\end

\whitespace trim
<div class="tc-table-wrapper">
<table class="tc-tag-manager-table">
<tbody>
<tr>
Expand Down Expand Up @@ -116,5 +115,4 @@ color: #bbb
<td></td>
</tr>
</tbody>
</table>
</div>
</table>
13 changes: 2 additions & 11 deletions themes/tiddlywiki/vanilla/base.tid
Original file line number Diff line number Diff line change
Expand Up @@ -2793,20 +2793,11 @@ 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 {
/* Fix overflow toc, manager and testcase output */
.tc-tiddler-body .tc-tabbed-table-of-contents, .tc-manager-list-item-content, .tc-test-case-output {
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 */

.tc-table-wrapper {
Expand Down

0 comments on commit e25ab77

Please sign in to comment.