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

Unified Diff: netlog_viewer/timeline_view.css

Issue 2154753002: Serving version 1 of the web app. All code has been copied from the (Closed) Base URL: https://github.com/catapult-project/catapult.git@gh-pages
Patch Set: Removed some unecessary files. Created 4 years, 5 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
« no previous file with comments | « netlog_viewer/timeline_graph_view.js ('k') | netlog_viewer/timeline_view.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: netlog_viewer/timeline_view.css
diff --git a/netlog_viewer/timeline_view.css b/netlog_viewer/timeline_view.css
new file mode 100644
index 0000000000000000000000000000000000000000..7d9b934e4d7356bdfb8f39dcefa0185c3c571b88
--- /dev/null
+++ b/netlog_viewer/timeline_view.css
@@ -0,0 +1,96 @@
+/* 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-view-selection-div {
+ display: inline-block;
+ overflow-y: auto;
+}
+
+#timeline-view-selection-toggle {
+ background-color: #fff;
+ background-image: url(select.png);
+ border: none;
+ height: 8px;
+ padding: none;
+ width: 19px;
+}
+
+.timeline-view-rotateleft {
+ -webkit-transform: rotate(90deg);
+}
+
+.timeline-view-rotateright {
+ -webkit-transform: rotate(270deg);
+}
+
+#timeline-view-selection-div ul {
+ margin-top: 0;
+ padding-left: 10px;
+}
+
+#timeline-view-selection-div li {
+ list-style: none;
+ white-space: nowrap;
+}
+
+.timeline-view-text {
+ color: black;
+}
+
+#timeline-view-open-sockets {
+ color: rgb(170, 0, 170);
+}
+
+#timeline-view-in-use-sockets {
+ color: rgb(255, 51, 204);
+}
+
+#timeline-view-url-requests {
+ color: black;
+}
+
+#timeline-view-dns-jobs {
+ color: rgb(150, 20, 29);
+}
+
+#timeline-view-bytes-received {
+ color: rgb(0, 187, 0);
+}
+
+#timeline-view-bytes-sent {
+ color: red;
+}
+
+#timeline-view-disk-cache-bytes-read {
+ color: rgb(0, 0, 255);
+}
+
+#timeline-view-disk-cache-bytes-written {
+ color: #999;
+}
+
+/* Need the id in this rule to override the above color rules. */
+#timeline-view-selection-div .timeline-view-hidden {
+ color: white;
+}
+
+#timeline-view-graph-div {
+ background-color: white;
+}
+
+#timeline-view-graph-canvas {
+ cursor: pointer;
+ padding: 10px 10px 2px;
+}
+
+#timeline-view-scrollbar-div {
+ overflow-x: scroll;
+ overflow-y: hidden;
+}
+
+#timeline-view-scrollbar-inner-div {
+ height: 1px;
+}
+
« no previous file with comments | « netlog_viewer/timeline_graph_view.js ('k') | netlog_viewer/timeline_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698