http://www.mediawiki.org/wiki/Special:Code/MediaWiki/83583

Revision: 83583
Author:   catrope
Date:     2011-03-09 12:30:08 +0000 (Wed, 09 Mar 2011)
Log Message:
-----------
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

Modified Paths:
--------------
    trunk/phase3/skins/common/search.css

Modified: trunk/phase3/skins/common/search.css
===================================================================
--- trunk/phase3/skins/common/search.css        2011-03-09 12:15:06 UTC (rev 
83582)
+++ trunk/phase3/skins/common/search.css        2011-03-09 12:30:08 UTC (rev 
83583)
@@ -9,6 +9,6 @@
  *
  * This will only affect IE 7 and lower
  */
-html > body .searchresult {
-       display: inline;
+.searchresult {
+       display: inline !ie;
 }


_______________________________________________
MediaWiki-CVS mailing list
MediaWiki-CVS@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to