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

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

Issue 2839273003: [Devtools] New structure and colorize rows for network products (Closed)
Patch Set: Merge remote-tracking branch 'origin/master' into NEW_DEPENDENCY_PRODUCTS Created 3 years, 7 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 } 154 }
155 155
156 @-webkit-keyframes network-row-highlight-fadeout { 156 @-webkit-keyframes network-row-highlight-fadeout {
157 from {background-color: rgba(255, 255, 120, 1); } 157 from {background-color: rgba(255, 255, 120, 1); }
158 to { background-color: rgba(255, 255, 120, 0); } 158 to { background-color: rgba(255, 255, 120, 0); }
159 } 159 }
160 160
161 .network-header-subtitle { 161 .network-header-subtitle {
162 color: gray; 162 color: gray;
163 } 163 }
164 .network-log-grid.data-grid .product-ad::before,
165 .network-log-grid.data-grid .product-tracking::before,
166 .network-log-grid.data-grid .product-cdn::before {
167 content: "";
168 border-radius: 5px;
169 height: 5px;
170 width: 5px;
171 margin-right: 3px;
172 display: inline-block;
173 vertical-align: middle;
174 }
175
176 .network-log-grid.data-grid .product-ad::before {
177 background-color: #00BCD4;
178 }
179
180 .network-log-grid.data-grid .product-tracking::before {
181 background-color: #FF9800;
182 }
183
184 .network-log-grid.data-grid .product-cdn::before {
185 background-color: #4CAF50;
186 }
164 187
165 .network-log-grid.data-grid.small .network-cell-subtitle, 188 .network-log-grid.data-grid.small .network-cell-subtitle,
166 .network-log-grid.data-grid.small .network-header-subtitle { 189 .network-log-grid.data-grid.small .network-header-subtitle {
167 display: none; 190 display: none;
168 } 191 }
169 192
170 /* Resource preview icons */ 193 /* Resource preview icons */
171 194
172 .network-log-grid.data-grid .icon { 195 .network-log-grid.data-grid .icon {
173 content: url(Images/resourcePlainIcon.png); 196 content: url(Images/resourcePlainIcon.png);
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 bottom: 1px; 375 bottom: 1px;
353 display: flex; 376 display: flex;
354 align-items: center; 377 align-items: center;
355 } 378 }
356 379
357 .network-waterfall-header .sort-order-icon { 380 .network-waterfall-header .sort-order-icon {
358 align-items: center; 381 align-items: center;
359 margin-right: 4px; 382 margin-right: 4px;
360 margin-bottom: -2px; 383 margin-bottom: -2px;
361 } 384 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698