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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/timeline/timelinePanel.css

Issue 2712833002: DevTools: Show decoded body length for network requests on timeline. (Closed)
Patch Set: Created 3 years, 10 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) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 } 285 }
286 286
287 .image-preview-container { 287 .image-preview-container {
288 background: transparent; 288 background: transparent;
289 text-align: left; 289 text-align: left;
290 border-spacing: 0; 290 border-spacing: 0;
291 margin: 4px; 291 margin: 4px;
292 } 292 }
293 293
294 .image-preview-container img { 294 .image-preview-container img {
295 max-width: 100px; 295 max-width: 300px;
caseq 2017/02/23 03:06:00 should this be a part of this change?
296 max-height: 100px; 296 max-height: 150px;
297 background-image: url(Images/checker.png); 297 background-image: url(Images/checker.png);
298 -webkit-user-select: text; 298 -webkit-user-select: text;
299 -webkit-user-drag: auto; 299 -webkit-user-drag: auto;
300 } 300 }
301 301
302 .image-container { 302 .image-container {
303 padding: 0; 303 padding: 0;
304 } 304 }
305 305
306 .timeline-filters-header { 306 .timeline-filters-header {
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after
692 692
693 .timeline-landing-warning-close { 693 .timeline-landing-warning-close {
694 float: right; 694 float: right;
695 margin-top: -10px; 695 margin-top: -10px;
696 margin-right: -13px; 696 margin-right: -13px;
697 } 697 }
698 698
699 .timeline-landing-warning span[is=ui-icon] { 699 .timeline-landing-warning span[is=ui-icon] {
700 margin: -8px; 700 margin: -8px;
701 } 701 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698