r83583 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r83582‎ | r83583 | r83584 >
Date:12:30, 9 March 2011
Author:catrope
Status:ok
Tags:
Comment:
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) (history)

Diff [purge]

Index: trunk/phase3/skins/common/search.css
@@ -9,6 +9,6 @@
1010 *
1111 * This will only affect IE 7 and lower
1212 */
13 -html > body .searchresult {
14 - display: inline;
 13+.searchresult {
 14+ display: inline !ie;
1515 }

Follow-up revisions

RevisionCommit summaryAuthorDate
r839321.17wmf1: MFT r78990, r79844, r81548, r82022, r82193, r83061, r83067, r83583,...catrope17:59, 14 March 2011

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r74388* Moved search/IE7 specific CSS rule into search.css with a CSS hack, which i...tparscal20:42, 6 October 2010

Status & tagging log