mirror of
https://github.com/ccmdi/obsidian-map-plus.git
synced 2026-07-22 06:43:14 +00:00
feat: fadein search results
This commit is contained in:
parent
750725ee4e
commit
335c39d1b7
1 changed files with 7 additions and 2 deletions
|
|
@ -598,16 +598,21 @@
|
|||
}
|
||||
|
||||
.map-search-results {
|
||||
display: none;
|
||||
margin-top: 4px;
|
||||
max-height: 200px;
|
||||
overflow-y: auto;
|
||||
border-radius: 6px;
|
||||
background: var(--background-secondary);
|
||||
opacity: 0;
|
||||
transform: translateY(-8px);
|
||||
pointer-events: none;
|
||||
transition: opacity 0.2s ease, transform 0.2s ease;
|
||||
}
|
||||
|
||||
.map-search-results.visible {
|
||||
display: block;
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
pointer-events: all;
|
||||
}
|
||||
|
||||
.map-search-result-item {
|
||||
|
|
|
|||
Loading…
Reference in a new issue