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 786 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
797 overflow: hidden; | 797 overflow: hidden; |
798 } | 798 } |
799 | 799 |
800 .timeline-flamechart-view #timeline-overview-grid { | 800 .timeline-flamechart-view #timeline-overview-grid { |
801 display: none; | 801 display: none; |
802 } | 802 } |
803 | 803 |
804 .timeline-flamechart-view .flame-chart-main-pane .resources-divider-label { | 804 .timeline-flamechart-view .flame-chart-main-pane .resources-divider-label { |
805 text-align: center; | 805 text-align: center; |
806 } | 806 } |
807 | |
808 .timeline-flamechart-selected-element { | |
809 position: absolute; | |
810 opacity: 0.5; | |
811 pointer-events: none; | |
812 border-color: red; | |
alph
2014/03/05 12:41:10
May I take a look at a screenshot? Might that happ
| |
813 border-width: 2px; | |
814 border-style: solid; | |
815 } | |
816 | |
817 .timeline-flamechart { | |
818 overflow: hidden; | |
819 } | |
OLD | NEW |