diff options
author | beaufort.francois@gmail.com <beaufort.francois@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-12 21:41:10 +0000 |
---|---|---|
committer | beaufort.francois@gmail.com <beaufort.francois@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-12 21:41:10 +0000 |
commit | 69eed56841712daa764d31a39017c8e8fb3d5d54 (patch) | |
tree | b1b1eb86727f58910be271dd31c3b66fcee1728d | |
parent | cf9e7e4c21bbefb00c6567ba9568c2bef83db76e (diff) | |
download | chromium_src-69eed56841712daa764d31a39017c8e8fb3d5d54.zip chromium_src-69eed56841712daa764d31a39017c8e8fb3d5d54.tar.gz chromium_src-69eed56841712daa764d31a39017c8e8fb3d5d54.tar.bz2 |
Fix me2mom background gradient
BUG=109705
TEST=Load me2mom app and confirm background gradient appears only once
Review URL: http://codereview.chromium.org/9187052
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@117515 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | remoting/webapp/choice.css | 10 |
2 files changed, 10 insertions, 1 deletions
@@ -156,4 +156,5 @@ Junmin Zhu <junmin.zhu@intel.com> Cem Kocagil <cem.kocagil@gmail.com> Simon Hong <simon.hong81@gmail.com> Lu Guanqun <guanqun.lu@gmail.com> +François Beaufort <beaufort.francois@gmail.com> Eriq Augustine <eriq.augustine@gmail.com> diff --git a/remoting/webapp/choice.css b/remoting/webapp/choice.css index 4c75c89..82acab0 100644 --- a/remoting/webapp/choice.css +++ b/remoting/webapp/choice.css @@ -1,4 +1,4 @@ -/* Copyright (c) 2011 The Chromium Authors. All rights reserved. +/* Copyright (c) 2012 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ @@ -58,6 +58,14 @@ h1 { font-weight: normal; } +html { + /* + Used to force background gradient to center correctly. + http://crbug.com/109705 + */ + height: 100%; +} + label { color: black; font-weight: bold; |