Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Side by Side Diff: chrome/browser/resources/tracing/timeline.css

Issue 8359025: Tons of timeline tweaks (Closed)
Patch Set: Fixen Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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);
9 border: 1px solid #000060
10 font-size: 75%;
8 position: fixed; 11 position: fixed;
9 background-color: rgba(0, 0, 255, 0.25);
10 border: 1px solid rgb(0, 0, 96);
11 font-size: 75%;
12 } 12 }
13 13
14 .timeline-thread-track { 14 .timeline-thread-track {
15 -webkit-box-orient: vertical;
15 display: -webkit-box; 16 display: -webkit-box;
16 -webkit-box-orient: vertical; 17 padding: 1px 0;
17 padding-top: 1px;
18 padding-bottom: 1px;
19 } 18 }
20 19
21 .timeline-thread-track:not(:first-child) { 20 .timeline-thread-track:not(:first-child) {
22 border-top: 1px solid #D0D0D0; 21 border-top: 1px solid #D0D0D0;
23 } 22 }
24 23
25 .timeline-slice-track { 24 .timeline-slice-track {
26 display: -webkit-box;
27 -webkit-box-orient: horizontal; 25 -webkit-box-orient: horizontal;
28 -webkit-box-align: stretch; 26 -webkit-box-align: stretch;
29 background-color: white; 27 background-color: white;
28 display: -webkit-box;
29 height: 18px;
30 margin: 0;
30 padding-right: 5px; 31 padding-right: 5px;
James Hawkins 2011/11/10 01:06:13 nit: padding-right goes after padding.
nduca 2011/11/10 02:24:35 Done.
31 margin: 0;
32 padding: 0; 32 padding: 0;
33 height: 18px;
34 } 33 }
35 34
36 .timeline-slice-track-title { 35 .timeline-slice-track-title {
36 overflow: hidden;
37 padding-right: 5px;
37 text-align: right; 38 text-align: right;
38 overflow: visible; 39 text-overflow: ellipsis;
39 width: 300px; 40 white-space: nowrap;
40 padding-right: 5px;
41 } 41 }
42 42
43 .timeline-slice-track-canvas-container { 43 .timeline-slice-track-canvas-container {
44 -webkit-box-flex: 1; 44 -webkit-box-flex: 1;
45 width: 100%; 45 width: 100%;
46 } 46 }
47 47
48 .timeline-slice-track-canvas { 48 .timeline-slice-track-canvas {
49 -webkit-box-flex: 1; 49 -webkit-box-flex: 1;
50 height: 100%;
50 width: 100%; 51 width: 100%;
51 height: 100%;
52 } 52 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698