clarin-eric / VLO

Virtual Language Observatory
GNU General Public License v3.0
14 stars 6 forks source link

Style: Search terms are not highlighted in results #49

Closed twagoo closed 7 years ago

twagoo commented 7 years ago

See e.g this record page. The search term light is marked with a special CSS class:

<li>
  Darkness and <span class="searchword">Light</span>
</li>

but no styling seems to be attached, therefore no actual visual highlighting takes place.

twagoo commented 7 years ago

Proposal that seems to work well both in search results and record page:

span.searchword {
    font-weight: bold;
    background-color: #eee;
}

note: maybe better to use a (modified, e.g. darkened or lightened) colour from the theme by means of a variable rather than a hardcoded hex value