Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 3 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 |
| 4 found in the LICENSE file. | 4 found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 .timeline-drag-box { | 7 .timeline-drag-box { |
| 8 background-color: rgba(0, 0, 255, 0.25); | 8 background-color: rgba(0, 0, 255, 0.25); |
| 9 border: 1px solid #000060 | 9 border: 1px solid #000060 |
| 10 font-size: 75%; | 10 font-size: 75%; |
| 11 position: fixed; | 11 position: fixed; |
| 12 } | 12 } |
| 13 | 13 |
| 14 .timeline-thread-track { | 14 .timeline-thread-track { |
| 15 -webkit-box-orient: vertical; | 15 -webkit-box-orient: vertical; |
| 16 display: -webkit-box; | 16 display: -webkit-box; |
| 17 padding: 1px 0; | 17 padding: 1px 0; |
| 18 } | 18 } |
| 19 | 19 |
| 20 .timeline-thread-track:not(:first-child) { | 20 .timeline-thread-track:not(:first-child) { |
| 21 border-top: 1px solid #D0D0D0; | 21 border-top: 1px solid #D0D0D0; |
| 22 } | 22 } |
| 23 | 23 |
| 24 .timeline-slice-track { | 24 .timeline-canvas-based-track { |
|
James Hawkins
2011/11/16 17:41:38
What canvas are you referring to?
nduca
2011/11/16 19:03:56
There is a TimelineCanvasBasedTrack class introduc
| |
| 25 -webkit-box-orient: horizontal; | 25 -webkit-box-orient: horizontal; |
| 26 -webkit-box-align: stretch; | 26 -webkit-box-align: stretch; |
| 27 background-color: white; | 27 background-color: white; |
| 28 display: -webkit-box; | 28 display: -webkit-box; |
| 29 height: 18px; | |
| 30 margin: 0; | 29 margin: 0; |
| 31 padding: 0; | 30 padding: 0; |
| 32 padding-right: 5px; | 31 padding-right: 5px; |
| 33 } | 32 } |
| 34 | 33 |
| 35 .timeline-slice-track-title { | 34 .timeline-canvas-based-track-title { |
| 36 overflow: hidden; | 35 overflow: hidden; |
| 37 padding-right: 5px; | 36 padding-right: 5px; |
| 38 text-align: right; | 37 text-align: right; |
| 39 text-overflow: ellipsis; | 38 text-overflow: ellipsis; |
| 40 white-space: nowrap; | 39 white-space: nowrap; |
| 41 } | 40 } |
| 42 | 41 |
| 43 .timeline-slice-track-canvas-container { | 42 .timeline-canvas-based-track-canvas-container { |
| 44 -webkit-box-flex: 1; | 43 -webkit-box-flex: 1; |
| 45 width: 100%; | 44 width: 100%; |
| 46 } | 45 } |
| 47 | 46 |
| 48 .timeline-slice-track-canvas { | 47 .timeline-canvas-based-track-canvas { |
| 49 -webkit-box-flex: 1; | 48 -webkit-box-flex: 1; |
| 50 height: 100%; | 49 height: 100%; |
| 51 width: 100%; | 50 width: 100%; |
| 52 } | 51 } |
| 52 | |
| 53 .timeline-slice-track { | |
| 54 height: 18px; | |
| 55 } | |
| 56 | |
| 57 .timeline-counter-track { | |
| 58 height: 30px; | |
| 59 } | |
| OLD | NEW |