| 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 */ | 5 |
| 6 .timeline-view { | 6 .timeline-view { |
| 7 -webkit-box-flex: 1; |
| 8 -webkit-box-orient: vertical; |
| 9 display: -webkit-box; |
| 7 padding: 0; | 10 padding: 0; |
| 8 -webkit-box-orient: vertical; | |
| 9 -webkit-box-flex: 1; | |
| 10 display: -webkit-box; | |
| 11 } | 11 } |
| 12 | 12 |
| 13 .timeline-view > .timeline { | 13 .timeline-view > .timeline { |
| 14 -webkit-box-flex: 1; |
| 14 display: -webkit-box; | 15 display: -webkit-box; |
| 15 -webkit-box-flex: 1; | |
| 16 overflow: auto; | 16 overflow: auto; |
| 17 } | 17 } |
| 18 | 18 |
| 19 .timeline-view .timeline-container { | 19 .timeline-view .timeline-container { |
| 20 -webkit-box-flex: 1; | 20 -webkit-box-flex: 1; |
| 21 display: -webkit-box; | 21 display: -webkit-box; |
| 22 overflow: auto; | 22 overflow: auto; |
| 23 } | 23 } |
| 24 | 24 |
| 25 .timeline-view .timeline-container > * { | 25 .timeline-view .timeline-container > * { |
| 26 -webkit-box-flex: 1; | 26 -webkit-box-flex: 1; |
| 27 } | 27 } |
| 28 .timeline-view .summary-container * { | 28 .timeline-view .summary-container * { |
| 29 -webkit-user-select: text; | 29 -webkit-user-select: text; |
| 30 } | 30 } |
| 31 | 31 |
| 32 .timeline-view .summary-container { | 32 .timeline-view .summary-container { |
| 33 border-top: 1px solid black; | 33 border-top: 1px solid black; |
| 34 font-family: monospace; |
| 34 max-height: 250px; | 35 max-height: 250px; |
| 35 min-height: 250px; | 36 min-height: 250px; |
| 36 font-family: monospace; | |
| 37 overflow: auto; | 37 overflow: auto; |
| 38 } | 38 } |
| 39 | 39 |
| 40 .timeline-view .selection { | 40 .timeline-view .selection { |
| 41 margin: 2px; | 41 margin: 2px; |
| 42 } | 42 } |
| 43 | 43 |
| 44 .timeline-view .selection ul { | 44 .timeline-view .selection ul { |
| 45 margin: 0; | 45 margin: 0; |
| 46 } | 46 } |
| OLD | NEW |