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

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: Code review fix. 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
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;
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;
53 -webkit-box-align: center;
James Hawkins 2011/11/30 16:10:52 -webkit properties go at the top.
SeRya 2011/12/01 12:57:42 Done.
52 } 54 }
53 55
54 .table-header { 56 .table-header {
55 position: relative; 57 position: relative;
56 overflow: hidden; 58 overflow: hidden;
57 background-color: rgb(220, 220, 220); 59 background-color: rgb(220, 220, 220);
58 } 60 }
59 61
60 .table-header-inner { 62 .table-header-inner {
61 position: relative; 63 position: relative;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 102
101 .table-header-splitter { 103 .table-header-splitter {
102 position: absolute; 104 position: absolute;
103 top: 0px; 105 top: 0px;
104 cursor: col-resize; 106 cursor: col-resize;
105 width: 5px; 107 width: 5px;
106 -webkit-margin-start: -1px; 108 -webkit-margin-start: -1px;
107 height: 100%; 109 height: 100%;
108 background-color: black; 110 background-color: black;
109 } 111 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698