diff options
author | craigdh@chromium.org <craigdh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-05 18:31:14 +0000 |
---|---|---|
committer | craigdh@chromium.org <craigdh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-05 18:31:14 +0000 |
commit | 67d972d00c480c86ebc9620a5bd253a001257ad0 (patch) | |
tree | f7353ee06e99b70b16d8c3728bacec3b5d13e631 | |
parent | 6768763ed80e114f74b914d1c4a89c88c32ba0e9 (diff) | |
download | chromium_src-67d972d00c480c86ebc9620a5bd253a001257ad0.zip chromium_src-67d972d00c480c86ebc9620a5bd253a001257ad0.tar.gz chromium_src-67d972d00c480c86ebc9620a5bd253a001257ad0.tar.bz2 |
[ISpy] Fix layout issues with large landscape screenshots.
BUG=None
TEST=Manual
NOTRY=True
Review URL: https://codereview.chromium.org/183063008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@255090 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/test/functional/ispy/server/views/main_view.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/test/functional/ispy/server/views/main_view.html b/chrome/test/functional/ispy/server/views/main_view.html index ca80c9e..d722c6a 100644 --- a/chrome/test/functional/ispy/server/views/main_view.html +++ b/chrome/test/functional/ispy/server/views/main_view.html @@ -4,12 +4,14 @@ <title>{{ test_run }} failures</title> <style> .image { - height: 325px; + max-height: 325px; + max-width: 325px; } .cell { padding-right: 25px; padding-left: 25px; float: left; + width: 20%; } .imagelink { border-width: 0px; |