| OLD | NEW |
| 1 /* | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 Use of this source code is governed by a BSD-style license that can be | 3 * found in the LICENSE file. */ |
| 4 found in the LICENSE file. | 4 |
| 5 */ | |
| 6 .timeline-view { | 5 .timeline-view { |
| 6 -webkit-box-flex: 1; |
| 7 -webkit-box-orient: vertical; |
| 8 display: -webkit-box; |
| 7 padding: 0; | 9 padding: 0; |
| 8 -webkit-box-orient: vertical; | |
| 9 -webkit-box-flex: 1; | |
| 10 display: -webkit-box; | |
| 11 } | 10 } |
| 12 | 11 |
| 13 .timeline-view > .timeline { | 12 .timeline-view > .timeline { |
| 13 -webkit-box-flex: 1; |
| 14 display: -webkit-box; | 14 display: -webkit-box; |
| 15 -webkit-box-flex: 1; | |
| 16 overflow: auto; | 15 overflow: auto; |
| 17 } | 16 } |
| 18 | 17 |
| 19 .timeline-view .timeline-container { | 18 .timeline-view .timeline-container { |
| 20 -webkit-box-flex: 1; | 19 -webkit-box-flex: 1; |
| 21 display: -webkit-box; | 20 display: -webkit-box; |
| 22 overflow: auto; | 21 overflow: auto; |
| 23 } | 22 } |
| 24 | 23 |
| 25 .timeline-view .timeline-container > * { | 24 .timeline-view .timeline-container > * { |
| 26 -webkit-box-flex: 1; | 25 -webkit-box-flex: 1; |
| 27 } | 26 } |
| 28 .timeline-view .summary-container * { | 27 .timeline-view .summary-container * { |
| 29 -webkit-user-select: text; | 28 -webkit-user-select: text; |
| 30 } | 29 } |
| 31 | 30 |
| 32 .timeline-view .summary-container { | 31 .timeline-view .summary-container { |
| 33 border-top: 1px solid black; | 32 border-top: 1px solid black; |
| 33 font-family: monospace; |
| 34 max-height: 250px; | 34 max-height: 250px; |
| 35 min-height: 250px; | 35 min-height: 250px; |
| 36 font-family: monospace; | |
| 37 overflow: auto; | 36 overflow: auto; |
| 38 } | 37 } |
| 39 | 38 |
| 40 .timeline-view .selection { | 39 .timeline-view .selection { |
| 41 margin: 2px; | 40 margin: 2px; |
| 42 } | 41 } |
| 43 | 42 |
| 44 .timeline-view .selection ul { | 43 .timeline-view .selection ul { |
| 45 margin: 0; | 44 margin: 0; |
| 46 } | 45 } |
| OLD | NEW |