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 position: fixed; | 8 position: fixed; |
James Hawkins
2011/11/05 17:51:37
Alphabetize properties, here and elsewhere.
nduca
2011/11/09 22:52:19
Done.
| |
9 background-color: rgba(0, 0, 255, 0.25); | 9 background-color: rgba(0, 0, 255, 0.25); |
10 border: 1px solid rgb(0, 0, 96); | 10 border: 1px solid rgb(0, 0, 96); |
James Hawkins
2011/11/05 17:51:37
Use hex instead of rgb here.
nduca
2011/11/09 22:52:19
Done.
| |
11 font-size: 75%; | 11 font-size: 75%; |
12 } | 12 } |
13 | 13 |
14 .timeline-thread-track { | 14 .timeline-thread-track { |
15 display: -webkit-box; | 15 display: -webkit-box; |
16 -webkit-box-orient: vertical; | 16 -webkit-box-orient: vertical; |
James Hawkins
2011/11/05 17:51:37
-webkit properties should be at the top of the lis
nduca
2011/11/09 22:52:19
Done.
| |
17 padding-top: 1px; | 17 padding-top: 1px; |
18 padding-bottom: 1px; | 18 padding-bottom: 1px; |
James Hawkins
2011/11/05 17:51:37
padding: 1px 0; ?
nduca
2011/11/09 22:52:19
Done.
| |
19 } | 19 } |
20 | 20 |
21 .timeline-thread-track:not(:first-child) { | 21 .timeline-thread-track:not(:first-child) { |
22 border-top: 1px solid #D0D0D0; | 22 border-top: 1px solid #D0D0D0; |
James Hawkins
2011/11/05 17:51:37
Hex characters should be lowercase.
nduca
2011/11/09 22:52:19
Done.
| |
23 } | 23 } |
24 | 24 |
25 .timeline-slice-track { | 25 .timeline-slice-track { |
26 display: -webkit-box; | 26 display: -webkit-box; |
27 -webkit-box-orient: horizontal; | 27 -webkit-box-orient: horizontal; |
28 -webkit-box-align: stretch; | 28 -webkit-box-align: stretch; |
29 background-color: white; | 29 background-color: white; |
30 padding-right: 5px; | 30 padding-right: 5px; |
31 margin: 0; | 31 margin: 0; |
32 padding: 0; | 32 padding: 0; |
33 height: 18px; | 33 height: 18px; |
34 } | 34 } |
35 | 35 |
36 .timeline-slice-track-title { | 36 .timeline-slice-track-title { |
37 text-align: right; | 37 text-align: right; |
38 overflow: visible; | 38 overflow: hidden; |
39 width: 300px; | 39 white-space: nowrap; |
40 padding-right: 5px; | 40 padding-right: 5px; |
41 text-overflow: ellipsis; | |
41 } | 42 } |
42 | 43 |
43 .timeline-slice-track-canvas-container { | 44 .timeline-slice-track-canvas-container { |
44 -webkit-box-flex: 1; | 45 -webkit-box-flex: 1; |
45 width: 100%; | 46 width: 100%; |
46 } | 47 } |
47 | 48 |
48 .timeline-slice-track-canvas { | 49 .timeline-slice-track-canvas { |
49 -webkit-box-flex: 1; | 50 -webkit-box-flex: 1; |
50 width: 100%; | 51 width: 100%; |
51 height: 100%; | 52 height: 100%; |
52 } | 53 } |
OLD | NEW |