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

Unified Diff: chrome/browser/resources/tracing/timeline.css

Issue 9706010: about:tracing support for TRACE_ASYNC_START/FINISH events. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: try again Created 8 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/tracing/timeline.css
diff --git a/chrome/browser/resources/tracing/timeline.css b/chrome/browser/resources/tracing/timeline.css
index 5af88fd605453b61819a1c39640afd399f89f687..a0c73247d80393081157d65ccfd2380d9138ad4b 100644
--- a/chrome/browser/resources/tracing/timeline.css
+++ b/chrome/browser/resources/tracing/timeline.css
@@ -1,8 +1,13 @@
/*
-Copyright (c) 2012 The Chromium Authors. All rights reserved.
-Use of this source code is governed by a BSD-style license that can be
-found in the LICENSE file.
-*/
+ * Copyright (c) 2012 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+.timeline * {
+ -webkit-user-select: none;
+ cursor: default;
+}
.timeline-drag-box {
background-color: rgba(0, 0, 255, 0.25);
@@ -15,6 +20,27 @@ found in the LICENSE file.
-webkit-box-orient: vertical;
display: -webkit-box;
padding: 1px 0;
+ position: relative;
+}
+
+.timeline-track-close-button {
+ left: 0px;
+ position: absolute;
+ top: 0px;
+}
+
+.timeline-track-button {
+ color: rgba(0,0,0,0.1);
+ font-size: 10px;
+ height: 12px;
+ text-align: center;
+ width: 12px;
+}
+.timeline-track-button:hover {
+ border: 1px solid rgba(0, 0, 0, 0.2);
+ border-radius: 25%;
+ box-shadow: 0 0 .05em rgba(0,0,0,0.4);
+ color: rgba(0,0,0,0.5);
}
.timeline-thread-track:not(:first-child) {
@@ -61,4 +87,5 @@ found in the LICENSE file.
.timeline-counter-track {
height: 30px;
+ position: relative;
}
« no previous file with comments | « chrome/browser/resources/tracing/tests/nonnested_trace.json ('k') | chrome/browser/resources/tracing/timeline.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698