Skip to content

Instantly share code, notes, and snippets.

@BenjaminPoulain
Created August 8, 2013 22:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BenjaminPoulain/6189494 to your computer and use it in GitHub Desktop.
Save BenjaminPoulain/6189494 to your computer and use it in GitHub Desktop.
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 <benjamin@webkit.org>
+
+ 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 <ctruta@blackberry.com>
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