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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 } | 77 } |
78 | 78 |
79 .data-grid table.data { | 79 .data-grid table.data { |
80 position: absolute; | 80 position: absolute; |
81 left: 0; | 81 left: 0; |
82 top: 0; | 82 top: 0; |
83 right: 0; | 83 right: 0; |
84 bottom: 0; | 84 bottom: 0; |
85 height: 100%; | 85 height: 100%; |
86 border-top: 0 none transparent; | 86 border-top: 0 none transparent; |
87 background-image: linear-gradient(linear, to bottom, white, white 50%, rgb(2
34, 243, 255) 50%, rgb(234, 243, 255)); | 87 background-image: linear-gradient(to bottom, white, white 50%, rgb(234, 243,
255) 50%, rgb(234, 243, 255)); |
88 background-size: 128px 32px; | 88 background-size: 128px 32px; |
89 table-layout: fixed; | 89 table-layout: fixed; |
90 } | 90 } |
91 | 91 |
92 .data-grid.inline table.data { | 92 .data-grid.inline table.data { |
93 position: static; | 93 position: static; |
94 } | 94 } |
95 | 95 |
96 .data-grid table.data tr { | 96 .data-grid table.data tr { |
97 display: none; | 97 display: none; |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 text-indent: 10px; | 238 text-indent: 10px; |
239 } | 239 } |
240 | 240 |
241 .data-grid-resizer { | 241 .data-grid-resizer { |
242 position: absolute; | 242 position: absolute; |
243 top: 0; | 243 top: 0; |
244 bottom: 0; | 244 bottom: 0; |
245 width: 5px; | 245 width: 5px; |
246 z-index: 500; | 246 z-index: 500; |
247 } | 247 } |
OLD | NEW |