Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(786)

Side by Side Diff: chrome/browser/resources/shared/css/table.css

Issue 8720006: Moving file selection checkbox to the field name. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix box layout. Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/file_manager/main.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 html.col-resize * { 1 html.col-resize * {
2 cursor: col-resize !important; 2 cursor: col-resize !important;
3 } 3 }
4 4
5 .table[hasElementFocus] > list > [lead] { 5 .table[hasElementFocus] > list > [lead] {
6 border-color: hsl(214, 91%, 65%); 6 border-color: hsl(214, 91%, 65%);
7 z-index: 2; 7 z-index: 2;
8 } 8 }
9 9
10 .table[hasElementFocus] > list > [selected] { 10 .table[hasElementFocus] > list > [selected] {
(...skipping 24 matching lines...) Expand all
35 } 35 }
36 36
37 .table-row { 37 .table-row {
38 width: 100%; 38 width: 100%;
39 text-align: start; 39 text-align: start;
40 display: -webkit-box; 40 display: -webkit-box;
41 } 41 }
42 42
43 .table-row-cell { 43 .table-row-cell {
44 overflow: hidden; 44 overflow: hidden;
45 display: -webkit-box;
James Hawkins 2011/12/01 17:55:53 nit: Alphabetize properties.
SeRya 2011/12/01 19:35:47 Done.
45 } 46 }
46 47
47 .table-row-cell > * { 48 .table-row-cell > * {
48 overflow: hidden; 49 overflow: hidden;
49 margin: 0 7px; 50 margin: 0 7px;
50 text-overflow: ellipsis; 51 text-overflow: ellipsis;
51 white-space: nowrap; 52 white-space: nowrap;
52 } 53 }
53 54
54 .table-header { 55 .table-header {
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 101
101 .table-header-splitter { 102 .table-header-splitter {
102 position: absolute; 103 position: absolute;
103 top: 0px; 104 top: 0px;
104 cursor: col-resize; 105 cursor: col-resize;
105 width: 5px; 106 width: 5px;
106 -webkit-margin-start: -1px; 107 -webkit-margin-start: -1px;
107 height: 100%; 108 height: 100%;
108 background-color: black; 109 background-color: black;
109 } 110 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/main.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698