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

Unified Diff: third_party/WebKit/Source/devtools/front_end/network_group_lookup/networkProductTypeGroupLookup.css

Issue 2807823002: [Devtools] Updated format to store product registry data (Closed)
Patch Set: [Devtools] Updated format to store product registry data 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/network_group_lookup/networkProductTypeGroupLookup.css
diff --git a/third_party/WebKit/Source/devtools/front_end/network_group_lookup/networkProductTypeGroupLookup.css b/third_party/WebKit/Source/devtools/front_end/network_group_lookup/networkProductTypeGroupLookup.css
new file mode 100644
index 0000000000000000000000000000000000000000..dcb97b16712b8ff6b9d5da5195f3c182b3fc9a80
--- /dev/null
+++ b/third_party/WebKit/Source/devtools/front_end/network_group_lookup/networkProductTypeGroupLookup.css
@@ -0,0 +1,27 @@
+/*
+ * Copyright 2017 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.
+ */
+.product-type .product-extension-column::before {
+ content: "";
+ height: 5px;
+ width: 5px;
+ border-radius: 50%;
+ display: inline-block;
+ margin-right: 2px;
+ margin-bottom: 1px;
+ border: 1px solid rgba(51, 51, 51, 0.3);
+}
+
+.product-type-Tracking .product-extension-column::before {
+ background-color: #FFEB3B;
+}
+
+.product-type-Ad .product-extension-column::before {
+ background-color: #00BCD4;
+}
+
+.product-type-CDN .product-extension-column::before {
+ background-color: #8BC34A;
+}

Powered by Google App Engine
This is Rietveld 408576698