Browse Source
Make ellipsized unified search results visible on hover
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
pull/22420/head
Christoph Wurst
5 years ago
No known key found for this signature in database
GPG Key ID: CC42AC2A7F0E56D8
3 changed files with
4 additions and
4 deletions
-
core/js/dist/unified-search.js
-
core/js/dist/unified-search.js.map
-
core/src/components/UnifiedSearch/SearchResult.vue
|
|
|
@ -30,10 +30,10 @@ |
|
|
|
|
|
|
|
<!-- Title and sub-title --> |
|
|
|
<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" /> |
|
|
|
</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> |
|
|
|
</a> |
|
|
|
</template> |
|
|
|
|