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 { | |
9 background-color: rgb(255, 230, 179); | |
10 } | |
11 | |
12 .data-grid tr.selected .highlight { | |
13 background-color: transparent; | |
14 } | |
15 | |
16 .data-grid table { | 8 .data-grid table { |
17 table-layout: fixed; | 9 table-layout: fixed; |
18 border-spacing: 0; | 10 border-spacing: 0; |
19 border-collapse: separate; | 11 border-collapse: separate; |
20 height: 100%; | 12 height: 100%; |
21 width: 100%; | 13 width: 100%; |
22 } | 14 } |
23 | 15 |
24 .data-grid .header-container, | 16 .data-grid .header-container, |
25 .data-grid .data-container { | 17 .data-grid .data-container { |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 text-indent: 10px; | 249 text-indent: 10px; |
258 } | 250 } |
259 | 251 |
260 .data-grid-resizer { | 252 .data-grid-resizer { |
261 position: absolute; | 253 position: absolute; |
262 top: 0; | 254 top: 0; |
263 bottom: 0; | 255 bottom: 0; |
264 width: 5px; | 256 width: 5px; |
265 z-index: 500; | 257 z-index: 500; |
266 } | 258 } |
OLD | NEW |