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

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

Issue 9958101: [WebUI] Fix rest of CSS style nits in misc. dirs so I can turn on CSS checker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: estade review Created 8 years, 8 months 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 3 * found in the LICENSE file. */
5 */
6 4
7 .timeline * { 5 .timeline * {
8 -webkit-user-select: none; 6 -webkit-user-select: none;
9 cursor: default; 7 cursor: default;
10 } 8 }
11 9
12 .timeline-drag-box { 10 .timeline-drag-box {
13 background-color: rgba(0, 0, 255, 0.25); 11 background-color: rgba(0, 0, 255, 0.25);
14 border: 1px solid #000060 12 border: 1px solid rgb(0, 0, 96);
15 font-size: 75%; 13 font-size: 75%;
16 position: fixed; 14 position: fixed;
17 } 15 }
18 16
19 .timeline-thread-track { 17 .timeline-thread-track {
20 -webkit-box-orient: vertical; 18 -webkit-box-orient: vertical;
21 display: -webkit-box; 19 display: -webkit-box;
22 padding: 1px 0; 20 padding: 1px 0;
23 position: relative; 21 position: relative;
24 } 22 }
25 23
26 .timeline-track-button { 24 .timeline-track-button {
27 background-color: rgba(255, 255, 255, 0.5); 25 background-color: rgba(255, 255, 255, 0.5);
28 border: 1px solid rgba(0, 0, 0, 0.1); 26 border: 1px solid rgba(0, 0, 0, 0.1);
29 color: rgba(0,0,0,0.2); 27 color: rgba(0,0,0,0.2);
30 font-size: 10px; 28 font-size: 10px;
31 height: 12px; 29 height: 12px;
32 text-align: center; 30 text-align: center;
33 width: 12px; 31 width: 12px;
34 } 32 }
35 33
36 .timeline-track-button:hover { 34 .timeline-track-button:hover {
37 background-color: rgba(255, 255, 255, 1.0); 35 background-color: rgba(255, 255, 255, 1.0);
38 border: 1px solid rgba(0, 0, 0, 0.5); 36 border: 1px solid rgba(0, 0, 0, 0.5);
39 border-radius: 25%; 37 border-radius: 25%;
40 box-shadow: 0 0 .05em rgba(0,0,0,0.4); 38 box-shadow: 0 0 .05em rgba(0, 0, 0, 0.4);
41 color: rgba(0,0,0,1); 39 color: rgba(0, 0, 0, 1);
42 } 40 }
43 41
44 .timeline-track-close-button { 42 .timeline-track-close-button {
45 left: 0px; 43 left: 0;
46 position: absolute; 44 position: absolute;
47 top: 0px; 45 top: 0;
48 } 46 }
49 47
50 .timeline-track-collapse-button { 48 .timeline-track-collapse-button {
51 left: 15px; 49 left: 15px;
52 position: absolute; 50 position: absolute;
53 top: 0px; 51 top: 0;
54 } 52 }
55 53
56 .timeline-thread-track:not(:first-child) { 54 .timeline-thread-track:not(:first-child) {
57 border-top: 1px solid #D0D0D0; 55 border-top: 1px solid #D0D0D0;
58 } 56 }
59 57
60 .timeline-canvas-based-track { 58 .timeline-canvas-based-track {
59 -webkit-box-align: stretch;
61 -webkit-box-orient: horizontal; 60 -webkit-box-orient: horizontal;
62 -webkit-box-align: stretch;
63 background-color: white; 61 background-color: white;
64 display: -webkit-box; 62 display: -webkit-box;
65 margin: 0; 63 margin: 0;
66 padding: 0; 64 padding: 0 5px 0 0;
67 padding-right: 5px;
68 } 65 }
69 66
70 .timeline-canvas-based-track-title { 67 .timeline-canvas-based-track-title {
71 overflow: hidden; 68 overflow: hidden;
72 padding-right: 5px; 69 padding-right: 5px;
73 text-align: right; 70 text-align: right;
74 text-overflow: ellipsis; 71 text-overflow: ellipsis;
75 white-space: nowrap; 72 white-space: nowrap;
76 } 73 }
77 74
(...skipping 14 matching lines...) Expand all
92 } 89 }
93 90
94 .timeline-slice-track { 91 .timeline-slice-track {
95 height: 18px; 92 height: 18px;
96 } 93 }
97 94
98 .timeline-counter-track { 95 .timeline-counter-track {
99 height: 30px; 96 height: 30px;
100 position: relative; 97 position: relative;
101 } 98 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698