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

Unified Diff: netlog_viewer/events_view.css

Issue 2162963002: [polymer] Merge of master into polymer10-migration (Closed) Base URL: git@github.com:catapult-project/catapult.git@polymer10-migration
Patch Set: Merge polymer10-migration int polymer10-merge 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/events_tracker.js ('k') | netlog_viewer/events_view.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: netlog_viewer/events_view.css
diff --git a/netlog_viewer/events_view.css b/netlog_viewer/events_view.css
new file mode 100644
index 0000000000000000000000000000000000000000..cac54d3d79eaaa5679c2318f9b5232187d38f950
--- /dev/null
+++ b/netlog_viewer/events_view.css
@@ -0,0 +1,105 @@
+/* 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.
+ */
+
+#events-view-filter-box {
+ background: #efefef;
+ border-bottom: 1px solid #aaa;
+ overflow: hidden;
+ padding: 5px;
+ white-space: nowrap;
+}
+
+#events-view-filter-box input {
+ width: 100%;
+}
+
+#events-view-action-box {
+ background: #efefef;
+ border-top: 1px solid gray;
+ overflow: hidden;
+ white-space: nowrap;
+}
+
+#events-view-source-list {
+ overflow-x: hidden;
+ overflow-y: auto
+}
+
+#events-view-source-list-table {
+ cursor: pointer;
+}
+
+#events-view-source-list-table thead td {
+ background: rgb(229, 236, 249);
+ font-weight: bold;
+ text-align: left;
+}
+
+#events-view-source-list-table td {
+ border-bottom: 1px solid #afafaf;
+ border-left: 1px solid #afafaf;
+ padding: 3px;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+
+#events-view-source-list-tbody .mouseover {
+ background: rgb(244,244,255);
+}
+
+#events-view-source-list-tbody .selected {
+ background: rgb(195, 217, 255);
+}
+
+#events-view-source-list-tbody .error {
+ background: rgb(255, 245, 245);
+}
+
+#events-view-source-list-tbody .inactive {
+ background: rgb(245, 255, 245);
+}
+
+#events-view-source-list-tbody .source-connect-job {
+ color: blue;
+}
+
+#events-view-source-list-tbody .source-host-resolver-impl-job,
+#events-view-source-list-tbody .source-host-resolver-impl-request {
+ color: rgb(32, 96, 96);
+}
+
+#events-view-source-list-tbody .source-disk-cache-entry,
+#events-view-source-list-tbody .source-memory-cache-entry {
+ color: #707070;
+}
+
+#events-view-source-list-tbody .source-socket {
+ color: purple;
+}
+
+#events-view-source-list-tbody .source-udp-socket {
+ color: rgb(128, 48, 48);
+}
+
+#events-view-source-list-tbody .source-proxy-script-decider {
+ color: green;
+}
+
+#events-view-source-list-tbody .source-download {
+ color: rgb(112, 112, 0);
+}
+
+#events-view-source-list-tbody .source-filestream {
+ color: rgb(112, 0, 112);
+}
+
+#events-view-source-list-tbody .source-ipv6-probe-job {
+ color: rgb(235, 0, 0);
+}
+
+#events-view-source-list-tbody .source-none {
+ color: rgb(235, 0, 0);
+}
+
« no previous file with comments | « netlog_viewer/events_tracker.js ('k') | netlog_viewer/events_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698