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

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

Issue 2686713003: DevTools: Disable timeline network pane resizer when network group is collapsed. (Closed)
Patch Set: make it work for real 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 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 overflow: hidden; 443 overflow: hidden;
444 white-space: nowrap; 444 white-space: nowrap;
445 text-overflow: ellipsis; 445 text-overflow: ellipsis;
446 } 446 }
447 447
448 .timeline-flamechart { 448 .timeline-flamechart {
449 overflow: hidden; 449 overflow: hidden;
450 } 450 }
451 451
452 .timeline-flamechart-resizer { 452 .timeline-flamechart-resizer {
453 height: 7px; 453 height: 8px;
454 background-color: #f3f3f3; 454 background-color: #f3f3f3;
455 border-top: #a3a3a3 1px solid; 455 border: 1px #a3a3a3;
456 border-style: solid none;
456 display: flex; 457 display: flex;
457 flex-direction: row; 458 flex-direction: row;
458 align-items: flex-end; 459 align-items: flex-end;
459 justify-content: center; 460 justify-content: center;
460 } 461 }
461 462
463 .timeline-network-resizer-disabled > .timeline-flamechart-resizer {
464 display: none;
465 }
466
462 .timeline-flamechart-resizer:after { 467 .timeline-flamechart-resizer:after {
463 content: "..."; 468 content: "...";
464 font-size: 14px; 469 font-size: 14px;
465 margin-bottom: -1px; 470 margin-bottom: -1px;
466 } 471 }
467 472
468 .timeline-status-pane.full-widget-dimmed-banner { 473 .timeline-status-pane.full-widget-dimmed-banner {
469 text-align: left !important; 474 text-align: left !important;
470 } 475 }
471 476
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
670 675
671 .timeline-landing-warning-close { 676 .timeline-landing-warning-close {
672 float: right; 677 float: right;
673 margin-top: -10px; 678 margin-top: -10px;
674 margin-right: -13px; 679 margin-right: -13px;
675 } 680 }
676 681
677 .timeline-landing-warning span[is=ui-icon] { 682 .timeline-landing-warning span[is=ui-icon] {
678 margin: -8px; 683 margin: -8px;
679 } 684 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698