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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/network/networkLogView.css

Issue 2807823002: [Devtools] Updated format to store product registry data (Closed)
Patch Set: 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 58
59 .network-log-grid .odd { 59 .network-log-grid .odd {
60 background: #f5f5f5; 60 background: #f5f5f5;
61 } 61 }
62 62
63 .network-log-grid .network-navigation-row, 63 .network-log-grid .network-navigation-row,
64 .network-log-grid .network-navigation-row.odd { 64 .network-log-grid .network-navigation-row.odd {
65 background: #def; 65 background: #def;
66 } 66 }
67 67
68 .network-log-grid .product-type .product-extension-column::before {
pfeldman 2017/04/07 23:22:01 Which product? :) You've abstracted from the produ
allada 2017/04/10 22:20:44 I'm not sure what you mean, but product-type only
69 content: "";
70 height: 5px;
71 width: 5px;
72 border-radius: 50%;
73 display: inline-block;
74 margin-right: 2px;
75 margin-bottom: 1px;
76 border: 1px solid rgba(51, 51, 51, 0.3);
77 }
78
79 .network-log-grid .product-type-Tracking .product-extension-column::before {
80 background-color: #FFEB3B;
81 }
82
83 .network-log-grid .product-type-Ad .product-extension-column::before {
84 background-color: #00BCD4;
85 }
86
87 .network-log-grid .product-type-CDN .product-extension-column::before {
88 background-color: #8BC34A;
89 }
90
68 .network-log-grid.data-grid td { 91 .network-log-grid.data-grid td {
69 height: 41px; 92 height: 41px;
70 border-left: 1px solid #e1e1e1; 93 border-left: 1px solid #e1e1e1;
71 vertical-align: middle; 94 vertical-align: middle;
72 } 95 }
73 96
74 .network-log-grid.data-grid .corner { 97 .network-log-grid.data-grid .corner {
75 display: none; 98 display: none;
76 } 99 }
77 100
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 bottom: 1px; 397 bottom: 1px;
375 display: flex; 398 display: flex;
376 align-items: center; 399 align-items: center;
377 } 400 }
378 401
379 .network-waterfall-header .sort-order-icon { 402 .network-waterfall-header .sort-order-icon {
380 align-items: center; 403 align-items: center;
381 margin-right: 4px; 404 margin-right: 4px;
382 margin-bottom: -2px; 405 margin-bottom: -2px;
383 } 406 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698