Make ellipsized unified search results visible on hover

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
Christoph Wurst 2020-08-25 14:57:26 +02:00
parent df99d8f0e0
commit 06f8c54386
No known key found for this signature in database
GPG Key ID: CC42AC2A7F0E56D8
3 changed files with 4 additions and 4 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -30,10 +30,10 @@
<!-- Title and sub-title --> <!-- Title and sub-title -->
<span class="unified-search__result-content"> <span class="unified-search__result-content">
<h3 class="unified-search__result-line-one"> <h3 class="unified-search__result-line-one" :title="title">
<Highlight :text="title" :search="query" /> <Highlight :text="title" :search="query" />
</h3> </h3>
<h4 v-if="subline" class="unified-search__result-line-two">{{ subline }}</h4> <h4 v-if="subline" class="unified-search__result-line-two" :title="subline">{{ subline }}</h4>
</span> </span>
</a> </a>
</template> </template>