Created
August 8, 2013 22:39
-
-
Save BenjaminPoulain/6189494 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: Websites/webkit.org/ChangeLog | |
=================================================================== | |
--- Websites/webkit.org/ChangeLog (revision 153851) | |
+++ Websites/webkit.org/ChangeLog (working copy) | |
@@ -1,3 +1,19 @@ | |
+2013-08-08 Benjamin Poulain <[email protected]> | |
+ | |
+ Give a smaller viewport to webkit.org on devices | |
+ | |
+ Reviewed by NOBODY (OOPS!). | |
+ | |
+ The CSS of WebKit.org layout the content on 615px + a right margin of | |
+ 215px + a left margin of 20px. The total layout width is 850px. | |
+ | |
+ The standard viewport size on mobile devices is 980px. This leaves a gap | |
+ on the right side of the content when opening the size on iPhone/iPad. | |
+ | |
+ This patch changes the layout width to be 860 to display more content on devices. | |
+ | |
+ * header.inc: | |
+ | |
2013-08-08 Cosmin Truta <[email protected]> | |
SunSpider: Move the 3d-morph fix from version 1.0 to version 1.0.1 | |
Index: Websites/webkit.org/header.inc | |
=================================================================== | |
--- Websites/webkit.org/header.inc (revision 153850) | |
+++ Websites/webkit.org/header.inc (working copy) | |
@@ -3,6 +3,7 @@ | |
<head> | |
<meta charset="utf-8"> | |
<meta name="robots" content="noodp"> | |
+ <meta name="viewport" content="width=860"> | |
<title>The WebKit Open Source Project<?php if (isset($title)) { echo " - " . $title; } ?></title> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment