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:
parent
060cfd4868
commit
e25ab7777f
@ -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>
|
|
@ -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 {
|
||||||
|
Loading…
Reference in New Issue
Block a user