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

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

Issue 2892333002: DevTools: Render third-party badges in timeline tree view (Closed)
Patch Set: 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) 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 525 matching lines...) Expand 10 before | Expand all | Expand 10 after
536 display: inline-block; 536 display: inline-block;
537 } 537 }
538 538
539 .timeline-tree-view .data-grid tr.selected span { 539 .timeline-tree-view .data-grid tr.selected span {
540 color: inherit; 540 color: inherit;
541 } 541 }
542 542
543 .timeline-tree-view .data-grid .name-container { 543 .timeline-tree-view .data-grid .name-container {
544 display: flex; 544 display: flex;
545 align-items: center; 545 align-items: center;
546 padding-left: 2px;
546 } 547 }
547 548
548 .timeline-tree-view .data-grid .name-container div { 549 .timeline-tree-view .data-grid .name-container div {
549 flex: none; 550 flex: none;
550 } 551 }
551 552
552 .timeline-tree-view .data-grid .name-container .activity-icon { 553 .timeline-tree-view .data-grid .name-container .activity-icon {
553 width: 10px; 554 width: 12px;
554 height: 10px; 555 height: 12px;
555 margin: 0 4px 0 2px;
556 border: 1px solid rgba(0, 0, 0, 0.05); 556 border: 1px solid rgba(0, 0, 0, 0.05);
557 } 557 }
558 558
559 .timeline-tree-view .data-grid .name-container .activity-icon-container {
560 margin-right: 3px;
561 display: flex;
562 flex-wrap: wrap;
563 align-items: center;
564 justify-content: center;
565 width: 17px;
566 height: 18px;
567 overflow: hidden;
568 }
569
559 .timeline-tree-view .data-grid .name-container .activity-warning::after { 570 .timeline-tree-view .data-grid .name-container .activity-warning::after {
560 content: "[deopt]"; 571 content: "[deopt]";
561 margin: 0 4px; 572 margin: 0 4px;
562 line-height: 12px; 573 line-height: 12px;
563 font-size: 10px; 574 font-size: 10px;
564 color: #777; 575 color: #777;
565 } 576 }
566 577
567 .timeline-tree-view .data-grid tr.selected .name-container .activity-warning::af ter { 578 .timeline-tree-view .data-grid tr.selected .name-container .activity-warning::af ter {
568 color: white; 579 color: white;
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
648 659
649 .timeline-landing-warning-close { 660 .timeline-landing-warning-close {
650 float: right; 661 float: right;
651 margin-top: -10px; 662 margin-top: -10px;
652 margin-right: -13px; 663 margin-right: -13px;
653 } 664 }
654 665
655 .timeline-landing-warning span[is=ui-icon] { 666 .timeline-landing-warning span[is=ui-icon] {
656 margin: -8px; 667 margin: -8px;
657 } 668 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698