Commit 4a2c5001 authored by rkc@chromium.org's avatar rkc@chromium.org

Reduce the height of the feedback page.

The current height of the feedback page is causing the bottom of the page to get pushed off the boundary on certain screen sizes. The problem is now worse on other platforms due to the System Information link also being available there. Decrease some of the unnecessary padding on the feedback page to make sure it fits on the screens of machines with smaller displays.

R=xiyuan@chromium.org
BUG=334235

Review URL: https://codereview.chromium.org/151873002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248598 0039d316-1c4b-4281-b951-d872f2087c98
parent 0545d08c
...@@ -84,7 +84,7 @@ body { ...@@ -84,7 +84,7 @@ body {
} }
#screenshot-container { #screenshot-container {
margin-top: 30px; margin-top: 10px;
} }
.content #screenshot-image { .content #screenshot-image {
...@@ -117,7 +117,7 @@ body { ...@@ -117,7 +117,7 @@ body {
font-size: 10px; font-size: 10px;
line-height: 15px; line-height: 15px;
margin-bottom: 20px; margin-bottom: 20px;
margin-top: 40px; margin-top: 20px;
} }
.content .buttons-pane { .content .buttons-pane {
......
...@@ -11,7 +11,7 @@ var FEEDBACK_WIDTH = 500; ...@@ -11,7 +11,7 @@ var FEEDBACK_WIDTH = 500;
* @type {number} * @type {number}
* @const * @const
*/ */
var FEEDBACK_HEIGHT = 625; var FEEDBACK_HEIGHT = 585;
var initialFeedbackInfo = null; var initialFeedbackInfo = null;
......
...@@ -21,7 +21,7 @@ var FEEDBACK_MIN_WIDTH = 500; ...@@ -21,7 +21,7 @@ var FEEDBACK_MIN_WIDTH = 500;
* @type {number} * @type {number}
* @const * @const
*/ */
var FEEDBACK_MIN_HEIGHT = 625; var FEEDBACK_MIN_HEIGHT = 585;
/** @type {number} /** @type {number}
* @const * @const
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment