OLD | NEW |
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 Loading... |
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 } | |
OLD | NEW |