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; | |
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 Loading... | |
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 } |
OLD | NEW |