From d7ec79785f502cc557a88b366b0d3eea052f3267 Mon Sep 17 00:00:00 2001 From: Erik Bernhardson Date: Thu, 13 Sep 2018 11:49:59 -0700 Subject: [PATCH] Give search results a consistent css class to select Results with and without thumbnails only share an li, and that li cannot be specifically targeted. Add a class to the li so anything that wants to deal with individual results can target them. Bug: T189242 Change-Id: I9b19c5e3d7d72d4be3a5ffdf280bf07b870ff3c0 --- includes/widget/search/FullSearchResultWidget.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/widget/search/FullSearchResultWidget.php b/includes/widget/search/FullSearchResultWidget.php index af1e02754c..66fc030ca4 100644 --- a/includes/widget/search/FullSearchResultWidget.php +++ b/includes/widget/search/FullSearchResultWidget.php @@ -107,7 +107,7 @@ class FullSearchResultWidget implements SearchResultWidget { ""; } - return "
  • {$html}
  • "; + return "
  • {$html}
  • "; } /** -- 2.20.1