OLD | NEW |
---|---|
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 Loading... | |
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; | |
Vladislav Kaznacheev
2011/11/29 19:11:59
This file is used by several other Chrome componen
SeRya
2011/11/30 13:04:04
It's also used the Task Manager. Checked and fixed
| |
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 Loading... | |
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 } |
OLD | NEW |