mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 18:08:33 +02:00
fix long filename overflowing, closes #1052
This commit is contained in:
parent
d4c3f1b3f2
commit
1911d64c1c
@ -5,17 +5,23 @@ import TypeWidget from "./type_widget.js";
|
|||||||
|
|
||||||
const TPL = `
|
const TPL = `
|
||||||
<div class="note-detail-file note-detail-printable">
|
<div class="note-detail-file note-detail-printable">
|
||||||
|
<style>
|
||||||
|
.file-table td {
|
||||||
|
overflow-wrap: anywhere;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
<table class="file-table">
|
<table class="file-table">
|
||||||
<tr>
|
<tr>
|
||||||
<th nowrap>Note ID:</th>
|
<th>Note ID:</th>
|
||||||
<td class="file-note-id"></td>
|
<td class="file-note-id"></td>
|
||||||
<th nowrap>Original file name:</th>
|
<th>Original file name:</th>
|
||||||
<td class="file-filename"></td>
|
<td class="file-filename"></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th nowrap>File type:</th>
|
<th>File type:</th>
|
||||||
<td class="file-filetype"></td>
|
<td class="file-filetype"></td>
|
||||||
<th nowrap>File size:</th>
|
<th>File size:</th>
|
||||||
<td class="file-filesize"></td>
|
<td class="file-filesize"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user