Commit 09f7812b authored by mtomasz@chromium.org's avatar mtomasz@chromium.org

Fix labels' alignment in Files.app's files list.

Before, the labels were not properly aligned. This patch aligns them by simplifying the css.

TEST=Enter Files.app, check carefully the headers. Click on the 'select all' checkbox.
BUG=175962

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@182391 0039d316-1c4b-4281-b951-d872f2087c98
parent 5d2848a7
...@@ -1036,7 +1036,7 @@ input.rename { ...@@ -1036,7 +1036,7 @@ input.rename {
/* Text label in a table header. */ /* Text label in a table header. */
.table-header-label { .table-header-label {
margin: 5px 10px 0 9px; line-height: 27px;
} }
.table-row-cell > * { .table-row-cell > * {
...@@ -1063,13 +1063,11 @@ input.rename { ...@@ -1063,13 +1063,11 @@ input.rename {
} }
#select-all-checkbox { #select-all-checkbox {
-webkit-margin-end: 11px; -webkit-margin-end: 7px;
-webkit-margin-start: 1px; -webkit-margin-start: 2px;
margin-bottom: 0; margin-bottom: 0;
margin-top: 0; margin-top: 0;
/* 1px below text */ vertical-align: middle;
position: relative;
top: 1px;
} }
#list-container li.table-row:hover .file-checkbox, #list-container li.table-row:hover .file-checkbox,
......
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