From 47e771d5729b06c7a70e0c18c60b6066cf2ed657 Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Wed, 9 Mar 2011 12:30:08 +0000 Subject: [PATCH] Fix r74388: CSS for IE7 and below was put in a selector that only applies it for IE7 and *above*, causing bug 27547 (Text excerpt doesn't start on a new line in file search results) in other browsers. Fixed this by replacing the selector hack with !ie , a hack that we use to target IE7 and below with our data URL embedding fallback as well --- skins/common/search.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skins/common/search.css b/skins/common/search.css index 22c3ca4a5b..89d55b0b5b 100644 --- a/skins/common/search.css +++ b/skins/common/search.css @@ -9,6 +9,6 @@ * * This will only affect IE 7 and lower */ -html > body .searchresult { - display: inline; +.searchresult { + display: inline !ie; } -- 2.20.1