changed expand/collapse folder icons
This commit is contained in:
parent
96f81e1328
commit
39076b480b
|
|
@ -1499,19 +1499,23 @@
|
||||||
<div class="text-xs px-2 py-1 mb-2" style="color: var(--text-tertiary);">
|
<div class="text-xs px-2 py-1 mb-2" style="color: var(--text-tertiary);">
|
||||||
<div class="flex items-center justify-between mb-1">
|
<div class="flex items-center justify-between mb-1">
|
||||||
<span x-text="t('sidebar.folders_and_notes')"></span>
|
<span x-text="t('sidebar.folders_and_notes')"></span>
|
||||||
<div class="flex gap-1">
|
<div class="flex gap-0.5">
|
||||||
<button
|
<button
|
||||||
@click="expandAllFolders()"
|
@click="expandAllFolders()"
|
||||||
class="text-xs px-2 py-0.5 rounded hover:bg-opacity-20"
|
class="text-xs px-1.5 py-0.5 rounded transition-all hover:scale-110"
|
||||||
style="color: var(--text-secondary);"
|
|
||||||
:title="t('sidebar.expand_all')"
|
:title="t('sidebar.expand_all')"
|
||||||
>⊞</button>
|
style="opacity: 0.7;"
|
||||||
|
onmouseover="this.style.opacity='1'"
|
||||||
|
onmouseout="this.style.opacity='0.7'"
|
||||||
|
>📂</button>
|
||||||
<button
|
<button
|
||||||
@click="collapseAllFolders()"
|
@click="collapseAllFolders()"
|
||||||
class="text-xs px-2 py-0.5 rounded hover:bg-opacity-20"
|
class="text-xs px-1.5 py-0.5 rounded transition-all hover:scale-110"
|
||||||
style="color: var(--text-secondary);"
|
|
||||||
:title="t('sidebar.collapse_all')"
|
:title="t('sidebar.collapse_all')"
|
||||||
>⊟</button>
|
style="opacity: 0.7;"
|
||||||
|
onmouseover="this.style.opacity='1'"
|
||||||
|
onmouseout="this.style.opacity='0.7'"
|
||||||
|
>📁</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- Dual-purpose: hint text OR root drop zone when dragging -->
|
<!-- Dual-purpose: hint text OR root drop zone when dragging -->
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue