| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 | 53 |
| 54 .timeline-records-list { | 54 .timeline-records-list { |
| 55 flex: auto; | 55 flex: auto; |
| 56 } | 56 } |
| 57 | 57 |
| 58 #timeline-overview-grid { | 58 #timeline-overview-grid { |
| 59 background-color: rgb(255, 255, 255); | 59 background-color: rgb(255, 255, 255); |
| 60 } | 60 } |
| 61 | 61 |
| 62 .timeline-overview-frames-mode #timeline-overview-grid, | 62 .timeline-overview-frames-mode #timeline-overview-grid, |
| 63 .timeline-overview-frames-mode .overview-grid-window-area, | |
| 64 .timeline-overview-frames-mode .overview-grid-current-position { | 63 .timeline-overview-frames-mode .overview-grid-current-position { |
| 65 display: none; | 64 display: none; |
| 66 } | 65 } |
| 67 | 66 |
| 68 #timeline-overview-grid .resources-dividers-label-bar { | 67 #timeline-overview-grid .resources-dividers-label-bar { |
| 69 pointer-events: auto; | 68 pointer-events: auto; |
| 70 } | 69 } |
| 71 | 70 |
| 72 .timeline-overview-frames-mode .overview-grid-window, | 71 .timeline-overview-frames-mode .overview-grid-window, |
| 73 .timeline-overview-frames-mode .overview-grid-dividers-background { | 72 .timeline-overview-frames-mode .overview-grid-dividers-background { |
| (...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 861 .timeline-gap { | 860 .timeline-gap { |
| 862 flex: none; | 861 flex: none; |
| 863 } | 862 } |
| 864 | 863 |
| 865 .timeline-filmstrip-preview { | 864 .timeline-filmstrip-preview { |
| 866 margin-top: 10px; | 865 margin-top: 10px; |
| 867 max-width: 200px; | 866 max-width: 200px; |
| 868 max-height: 200px; | 867 max-height: 200px; |
| 869 cursor: pointer; | 868 cursor: pointer; |
| 870 } | 869 } |
| 870 |
| 871 .timeline-overview-popover .frame .time { |
| 872 display: none; |
| 873 } |
| 874 |
| 875 .timeline-overview-popover .frame .thumbnail img { |
| 876 max-width: 200px; |
| 877 } |
| OLD | NEW |