| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
| 4 */ | 4 */ |
| 5 html, | 5 html, |
| 6 body { | 6 body { |
| 7 height: 100%; | 7 height: 100%; |
| 8 } | 8 } |
| 9 | 9 |
| 10 body { | 10 body { |
| 11 -webkit-flex-direction: column; | 11 flex-direction: column; |
| 12 display: -webkit-flex; | 12 display: flex; |
| 13 margin: 0; | 13 margin: 0; |
| 14 padding: 0; | 14 padding: 0; |
| 15 } | 15 } |
| 16 | 16 |
| 17 body > x-profiling-view { | 17 body > x-profiling-view { |
| 18 -webkit-flex: 1 1 auto; | 18 flex: 1 1 auto; |
| 19 min-height: 0; | 19 min-height: 0; |
| 20 } | 20 } |
| 21 | 21 |
| 22 body > x-profiling-view > x-timeline-view:focus { | 22 body > x-profiling-view > x-timeline-view:focus { |
| 23 outline: 0 | 23 outline: 0 |
| 24 } | 24 } |
| 25 | 25 |
| OLD | NEW |