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

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

Issue 1048663002: [invalidations] Convert invalidations to use TreeOutline (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Use TreeOutlineInShadow Created 5 years, 8 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) 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 845 matching lines...) Expand 10 before | Expand all | Expand 10 after
856 856
857 .timeline-paint-profiler-log-split > div:last-child { 857 .timeline-paint-profiler-log-split > div:last-child {
858 background-color: #eee; 858 background-color: #eee;
859 z-index: 0; 859 z-index: 0;
860 } 860 }
861 861
862 .timeline-gap { 862 .timeline-gap {
863 flex: none; 863 flex: none;
864 } 864 }
865 865
866 .invalidations-group { 866 .invalidations-tree {
pfeldman 2015/04/07 15:02:09 You should instead create a small dedicated css fi
867 margin-top: 4px; 867 border-left: 1px solid #e1e1e1;
868 line-height: normal; 868 padding-left: 5px;
869 width: 100%;
869 } 870 }
870 871
871 .invalidations-group > .header { 872 .invalidations-tree::shadow .children li::before {
872 padding-left: 0; 873 display: none;
873 } 874 }
874 875
875 .invalidations-group > .content { 876 .invalidations-tree::shadow .content {
876 margin-left: 25px; 877 margin-bottom: 4px;
877 } 878 }
878 879
879 .invalidations-group > .content > .node-list { 880 .invalidations-tree::shadow .content .stack-preview-container {
880 border-left: 1px solid #e1e1e1; 881 margin-left: 8px;
882 }
883
884 .invalidations-tree::shadow .content .node-list {
885 margin-left: 10px;
881 } 886 }
882 887
883 .timeline.panel .status-bar::shadow .timeline-status-bar-group-label { 888 .timeline.panel .status-bar::shadow .timeline-status-bar-group-label {
884 margin-left: 12px; 889 margin-left: 12px;
885 margin-right: 6px; 890 margin-right: 6px;
886 color: #888; 891 color: #888;
887 } 892 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698