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

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: Update per reviewer comments 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 848 matching lines...) Expand 10 before | Expand all | Expand 10 after
859 } 859 }
860 860
861 .timeline-paint-profiler-log-split > div:last-child { 861 .timeline-paint-profiler-log-split > div:last-child {
862 background-color: #eee; 862 background-color: #eee;
863 z-index: 0; 863 z-index: 0;
864 } 864 }
865 865
866 .timeline-gap { 866 .timeline-gap {
867 flex: none; 867 flex: none;
868 } 868 }
869
870 .invalidations-group {
871 margin-top: 4px;
872 line-height: normal;
873 }
874
875 .invalidations-group > .header {
876 padding-left: 0;
877 }
878
879 .invalidations-group > .content {
880 margin-left: 25px;
881 }
882
883 .invalidations-group > .content > .node-list {
884 border-left: 1px solid #e1e1e1;
885 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698