diff options
author | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-20 08:41:28 +0000 |
---|---|---|
committer | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-20 08:41:28 +0000 |
commit | 4582d0f11a8bb1d284243a6aaad2c81cd7b54989 (patch) | |
tree | 4f6a3fe3741f314c874b6a10086bf342c479cb23 /net/base | |
parent | de857ab1a29970506aaf0e23c79e176fdd3400bc (diff) | |
download | chromium_src-4582d0f11a8bb1d284243a6aaad2c81cd7b54989.zip chromium_src-4582d0f11a8bb1d284243a6aaad2c81cd7b54989.tar.gz chromium_src-4582d0f11a8bb1d284243a6aaad2c81cd7b54989.tar.bz2 |
Don't wrap the Size and Date Modified columns in the directory listing view.
BUG=2795
Review URL: http://codereview.chromium.org/410008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32603 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base')
-rw-r--r-- | net/base/dir_header.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/base/dir_header.html b/net/base/dir_header.html index 5505831..400febe 100644 --- a/net/base/dir_header.html +++ b/net/base/dir_header.html @@ -40,7 +40,7 @@ function addRow(name, url, isdir, size, date_modified) { function createCell(text) { var cell = document.createElement("td"); - cell.setAttribute("class", "sizeColumn"); + cell.setAttribute("class", "detailsColumn"); cell.innerText = text; return cell; } @@ -56,7 +56,7 @@ function start(location) { <title id="title"></title> <style> h1 { white-space: nowrap; } - td.sizeColumn { text-align: right; padding-left: 30px; } + td.detailsColumn { text-align: right; padding-left: 30px; white-space: nowrap; } </style> </head> <body> @@ -66,8 +66,8 @@ function start(location) { <table id="table"> <tr style="font-weight: bold"> <td i18n-content="headerName"></td> - <td class="sizeColumn" i18n-content="headerSize"></td> - <td class="sizeColumn" i18n-content="headerDateModified"></td> + <td class="detailsColumn" i18n-content="headerSize"></td> + <td class="detailsColumn" i18n-content="headerDateModified"></td> </tr> </table> </body> |