OLD | NEW |
1 .data-grid { | 1 .data-grid { |
2 position: relative; | 2 position: relative; |
3 border: 1px solid #aaa; | 3 border: 1px solid #aaa; |
4 font-size: 11px; | 4 font-size: 11px; |
5 line-height: 120%; | 5 line-height: 120%; |
6 } | 6 } |
7 | 7 |
8 .data-grid .highlight { | 8 .data-grid .highlight { |
9 background-color: rgb(255, 230, 179); | 9 background-color: rgb(255, 230, 179); |
10 } | 10 } |
(...skipping 10 matching lines...) Expand all Loading... |
21 } | 21 } |
22 | 22 |
23 .data-grid .data-container { | 23 .data-grid .data-container { |
24 position: absolute; | 24 position: absolute; |
25 top: 17px; | 25 top: 17px; |
26 bottom: 0; | 26 bottom: 0; |
27 left: 0; | 27 left: 0; |
28 right: 0; | 28 right: 0; |
29 overflow-x: hidden; | 29 overflow-x: hidden; |
30 overflow-y: overlay; | 30 overflow-y: overlay; |
| 31 -webkit-transform: translateZ(0); |
31 } | 32 } |
32 | 33 |
33 .data-grid.inline { | 34 .data-grid.inline { |
34 border-left: none; | 35 border-left: none; |
35 } | 36 } |
36 | 37 |
37 .data-grid.inline .data-container { | 38 .data-grid.inline .data-container { |
38 position: static; | 39 position: static; |
39 } | 40 } |
40 | 41 |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 text-indent: 10px; | 239 text-indent: 10px; |
239 } | 240 } |
240 | 241 |
241 .data-grid-resizer { | 242 .data-grid-resizer { |
242 position: absolute; | 243 position: absolute; |
243 top: 0; | 244 top: 0; |
244 bottom: 0; | 245 bottom: 0; |
245 width: 5px; | 246 width: 5px; |
246 z-index: 500; | 247 z-index: 500; |
247 } | 248 } |
OLD | NEW |