@@ -1177,9 +1177,9 @@ defineExpose({ loadChildren, loadLinkedOrganizations, loadLinkedMembers, loadLin
11771177 @apply- improvement= " onAIImproveNotes"
11781178 / >
11791179 < div class = " tab-buttons" >
1180- < button : class = " { active: activeTab === 'edit' }" @click= " activeTab = 'edit'" > Edit< / button>
1181- < button : class = " { active: activeTab === 'preview' }" @click= " activeTab = 'preview'" > Preview< / button>
1182- < button : class = " { active: activeTab === 'split' }" @click= " activeTab = 'split'" > Split< / button>
1180+ < button : class = " { active: activeTab === 'edit' }" @click= " activeTab = 'edit'" title = " Edit notes (markdown source) " > Edit< / button>
1181+ < button : class = " { active: activeTab === 'preview' }" @click= " activeTab = 'preview'" title = " Preview rendered markdown " > Preview< / button>
1182+ < button : class = " { active: activeTab === 'split' }" @click= " activeTab = 'split'" title = " Side-by-side edit and preview " > Split< / button>
11831183 < / div>
11841184 < / div>
11851185 < / div>
@@ -1506,7 +1506,7 @@ defineExpose({ loadChildren, loadLinkedOrganizations, loadLinkedMembers, loadLin
15061506 : value= " editedNode.start_date?.split('T')[0] || ''"
15071507 @change= " updateDate('start_date', $event.target.value)"
15081508 / >
1509- < button v- if = " editedNode.start_date" class = " clear-btn" @click= " clearDate('start_date')" > x< / button>
1509+ < button v- if = " editedNode.start_date" class = " clear-btn" @click= " clearDate('start_date')" title = " Clear start date " > x< / button>
15101510 < / div>
15111511 < / div>
15121512
@@ -1519,7 +1519,7 @@ defineExpose({ loadChildren, loadLinkedOrganizations, loadLinkedMembers, loadLin
15191519 : value= " editedNode.due_date?.split('T')[0] || ''"
15201520 @change= " updateDate('due_date', $event.target.value)"
15211521 / >
1522- < button v- if = " editedNode.due_date" class = " clear-btn" @click= " clearDate('due_date')" > x< / button>
1522+ < button v- if = " editedNode.due_date" class = " clear-btn" @click= " clearDate('due_date')" title = " Clear due date " > x< / button>
15231523 < / div>
15241524 < / div>
15251525
@@ -1532,7 +1532,7 @@ defineExpose({ loadChildren, loadLinkedOrganizations, loadLinkedMembers, loadLin
15321532 : value= " editedNode.end_date?.split('T')[0] || ''"
15331533 @change= " updateDate('end_date', $event.target.value)"
15341534 / >
1535- < button v- if = " editedNode.end_date" class = " clear-btn" @click= " clearDate('end_date')" > x< / button>
1535+ < button v- if = " editedNode.end_date" class = " clear-btn" @click= " clearDate('end_date')" title = " Clear end date " > x< / button>
15361536 < / div>
15371537 < / div>
15381538
@@ -1549,6 +1549,7 @@ defineExpose({ loadChildren, loadLinkedOrganizations, loadLinkedMembers, loadLin
15491549 v- if = " editedNode.color && editedNode.color !== '#0f4c75'"
15501550 class = " clear-btn"
15511551 @click= " editedNode.color = '#0f4c75'; saveChanges()"
1552+ title= " Reset to default color"
15521553 > x< / button>
15531554 < / div>
15541555 < / div>
@@ -1564,7 +1565,7 @@ defineExpose({ loadChildren, loadLinkedOrganizations, loadLinkedMembers, loadLin
15641565 @blur= " saveChanges"
15651566 class = " location-input"
15661567 / >
1567- < button class = " clear-btn" @click= " editedNode.location = null; saveChanges()" > x< / button>
1568+ < button class = " clear-btn" @click= " editedNode.location = null; saveChanges()" title = " Clear location " > x< / button>
15681569 < / div>
15691570 < button v- else class = " add-field-btn compact" @click= " editedNode.location = ' '" title= " Add location" > + Location < / button>
15701571
@@ -1627,11 +1628,11 @@ defineExpose({ loadChildren, loadLinkedOrganizations, loadLinkedMembers, loadLin
16271628
16281629 <!-- Actions -->
16291630 < div class = " detail-actions" >
1630- < button @click= " wrapWithParent" > Wrap with Parent< / button>
1631- < button @click= " moveToRoot" > Move to Root< / button>
1632- < button @click= " copyNodeContent" > Export< / button>
1631+ < button @click= " wrapWithParent" title = " Create a new parent node and make this node its child " > Wrap with Parent< / button>
1632+ < button @click= " moveToRoot" title = " Move this node to the root level " > Move to Root< / button>
1633+ < button @click= " copyNodeContent" title = " Copy node content as markdown " > Export< / button>
16331634 < span class = " spacer" >< / span>
1634- < button class = " danger" @click= " deleteNode" > Delete< / button>
1635+ < button class = " danger" @click= " deleteNode" title = " Delete this node " > Delete< / button>
16351636 < / div>
16361637 < / div>
16371638 < / aside>
0 commit comments