mirror of
https://github.com/zadam/trilium.git
synced 2025-10-03 03:57:44 +08:00
client/quick search results: fix overflowing snippets
This commit is contained in:
parent
43caadc472
commit
5f39a314b5
1 changed files with 3 additions and 1 deletions
|
@ -23,7 +23,7 @@ const TPL = /*html*/`
|
|||
|
||||
.quick-search .dropdown-menu {
|
||||
--quick-search-item-delimiter-color: var(--dropdown-border-color);
|
||||
|
||||
|
||||
max-height: 80vh;
|
||||
min-width: 400px;
|
||||
max-width: 720px;
|
||||
|
@ -94,6 +94,8 @@ const TPL = /*html*/`
|
|||
background-color: var(--accented-background-color);
|
||||
color: var(--main-text-color);
|
||||
font-size: .85em;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
/* Search result highlighting */
|
||||
|
|
Loading…
Add table
Reference in a new issue