Highlight search results
This is a very simple tweak but does help to highlight search results.
Search results use the highlight CSS class, which only has font-weight:bold applied by default.
You can use that class to style the results to make them stand out more.
Simply add this to EXTRA.css for example to make the matched search result text colour orange:
You can obviously style it to suit.
Before:
This is a very simple tweak but does help to highlight search results.
Search results use the highlight CSS class, which only has font-weight:bold applied by default.
You can use that class to style the results to make them stand out more.
Simply add this to EXTRA.css for example to make the matched search result text colour orange:
Kod:
.highlight
{
color: @secondaryMedium;
}
You can obviously style it to suit.
Before: