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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/perf_ui/timelineGrid.css

Issue 2803413002: DevTools: brush up paint marker rendering, sort experiments, restore event markers on the overview. (Closed)
Patch Set: fixed the test Created 3 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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2015 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 .resources-dividers { 7 .resources-dividers {
8 position: absolute; 8 position: absolute;
9 left: 0; 9 left: 0;
10 right: 0; 10 right: 0;
(...skipping 28 matching lines...) Expand all
39 .resources-divider { 39 .resources-divider {
40 position: absolute; 40 position: absolute;
41 width: 1px; 41 width: 1px;
42 top: 0; 42 top: 0;
43 bottom: 0; 43 bottom: 0;
44 background-color: rgba(0, 0, 0, 0.1); 44 background-color: rgba(0, 0, 0, 0.1);
45 } 45 }
46 46
47 .resources-event-divider { 47 .resources-event-divider {
48 position: absolute; 48 position: absolute;
49 width: 2px; 49 width: 1px;
50 top: 0; 50 top: 0;
51 bottom: 0; 51 bottom: 0;
52 z-index: 300; 52 z-index: 300;
53 } 53 }
54 54
55 .resources-divider-label { 55 .resources-divider-label {
56 position: absolute; 56 position: absolute;
57 top: 4px; 57 top: 4px;
58 right: 3px; 58 right: 3px;
59 font-size: 80%; 59 font-size: 80%;
60 white-space: nowrap; 60 white-space: nowrap;
61 pointer-events: none; 61 pointer-events: none;
62 } 62 }
63 63
64 .timeline-grid-header { 64 .timeline-grid-header {
65 height: 20px; 65 height: 20px;
66 pointer-events: none; 66 pointer-events: none;
67 } 67 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698