From: Kaldari Date: Fri, 11 May 2012 20:36:25 +0000 (-0700) Subject: Changing HD threshold to 1000px per request. X-Git-Tag: 1.31.0-rc.0~23640 X-Git-Url: http://git.cyclocoop.org/data/Luca_Pacioli_%28Gemaelde%29.jpeg?a=commitdiff_plain;h=e2e1cbe1a455638f9cc00c19efffaf8961dd4bf7;p=lhc%2Fweb%2Fwiklou.git Changing HD threshold to 1000px per request. Apparently iPhone and iPad use 980px width and the new layout doesn't give enough room to the content area according to Heather. Patchset 2: adjusting per comment Change-Id: Ie6b0474f285366d0bfedb6393d1d6f65b55fc604 --- diff --git a/resources/Resources.php b/resources/Resources.php index f1861833b1..34b9be6732 100644 --- a/resources/Resources.php +++ b/resources/Resources.php @@ -76,7 +76,7 @@ return array( 'common/commonContent.css' => array( 'media' => 'screen' ), 'common/commonInterface.css' => array( 'media' => 'screen' ), 'vector/screen.css' => array( 'media' => 'screen' ), - 'vector/screen-hd.css' => array( 'media' => 'screen and (min-width: 900px)' ), + 'vector/screen-hd.css' => array( 'media' => 'screen and (min-width: 982px)' ), ), 'scripts' => 'vector/vector.js', 'remoteBasePath' => $GLOBALS['wgStylePath'],