mirror of
https://github.com/zadam/trilium.git
synced 2025-01-10 01:00:43 +08:00
Prevent td text from overlapping th text (#1002)
This makes all of the Note Info sections more consistent with each other. It prevents overlapping of text when the window is displayed in a small-width environment.
This commit is contained in:
parent
2369bcf9fc
commit
54ecd2ee75
1 changed files with 4 additions and 4 deletions
|
@ -21,15 +21,15 @@ const TPL = `
|
|||
</style>
|
||||
|
||||
<tr>
|
||||
<th nowrap>Note ID:</th>
|
||||
<th>Note ID:</th>
|
||||
<td nowrap colspan="3" class="note-info-note-id"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th nowrap>Created:</th>
|
||||
<th>Created:</th>
|
||||
<td nowrap colspan="3" style="overflow: hidden; text-overflow: ellipsis;" class="note-info-date-created"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th nowrap>Modified:</th>
|
||||
<th>Modified:</th>
|
||||
<td nowrap colspan="3" style="overflow: hidden; text-overflow: ellipsis;" class="note-info-date-modified"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -79,4 +79,4 @@ export default class NoteInfoWidget extends CollapsibleWidget {
|
|||
this.refresh();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue