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

Side by Side Diff: Source/devtools/front_end/networkLogView.css

Issue 448743002: DevTools: Linkify console stacks with blackboxing consideration. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: addressed Created 6 years, 4 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 | Annotate | Revision Log
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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 248
249 .network-log-grid.data-grid.small .image-network-icon-preview { 249 .network-log-grid.data-grid.small .image-network-icon-preview {
250 top: 2px; 250 top: 2px;
251 bottom: 1px; 251 bottom: 1px;
252 left: 3px; 252 left: 3px;
253 right: 3px; 253 right: 3px;
254 max-width: 8px; 254 max-width: 8px;
255 max-height: 11px; 255 max-height: 11px;
256 } 256 }
257 257
258 .network-stack-trace .webkit-html-blackbox-link {
259 opacity: 0.6;
260 }
261
258 .network-async-trace-description { 262 .network-async-trace-description {
259 padding: 3px 0 1px 0; 263 padding: 3px 0 1px 0;
260 font-style: italic; 264 font-style: italic;
261 } 265 }
262 266
263 /* Graph styles */ 267 /* Graph styles */
264 268
265 .network-graph-side { 269 .network-graph-side {
266 position: relative; 270 position: relative;
267 height: 36px; 271 height: 36px;
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
587 } 591 }
588 592
589 #network-container:not(.brief-mode) .data-grid tr.selected { 593 #network-container:not(.brief-mode) .data-grid tr.selected {
590 background-color: transparent; 594 background-color: transparent;
591 color: #222; 595 color: #222;
592 } 596 }
593 597
594 #network-container.brief-mode .data-grid .data-container { 598 #network-container.brief-mode .data-grid .data-container {
595 padding-right: 0; 599 padding-right: 0;
596 } 600 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698