| 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 567 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 578 background-color: #00a; | 578 background-color: #00a; |
| 579 border: none; | 579 border: none; |
| 580 opacity: 0.3; | 580 opacity: 0.3; |
| 581 min-width: 0; | 581 min-width: 0; |
| 582 } | 582 } |
| 583 | 583 |
| 584 .timeline-utilization-strip.gpu .timeline-graph-bar.gpu-task-foreign { | 584 .timeline-utilization-strip.gpu .timeline-graph-bar.gpu-task-foreign { |
| 585 background-color: #aaa; | 585 background-color: #aaa; |
| 586 } | 586 } |
| 587 | 587 |
| 588 .timeline-cpu-curtain-left, .timeline-cpu-curtain-right { | |
| 589 background-color: rgba(210, 210, 210, 0.5); | |
| 590 position: absolute; | |
| 591 top: 0; | |
| 592 height: 100%; | |
| 593 z-index: 300; | |
| 594 } | |
| 595 | |
| 596 .timeline-cpu-curtain-left { | |
| 597 left: 0; | |
| 598 } | |
| 599 | |
| 600 .timeline-cpu-curtain-right { | |
| 601 right: 0; | |
| 602 } | |
| 603 | |
| 604 .image-preview-container { | 588 .image-preview-container { |
| 605 background: transparent; | 589 background: transparent; |
| 606 text-align: left; | 590 text-align: left; |
| 607 border-spacing: 0; | 591 border-spacing: 0; |
| 608 } | 592 } |
| 609 | 593 |
| 610 .image-preview-container img { | 594 .image-preview-container img { |
| 611 max-width: 100px; | 595 max-width: 100px; |
| 612 max-height: 100px; | 596 max-height: 100px; |
| 613 background-image: url(Images/checker.png); | 597 background-image: url(Images/checker.png); |
| (...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1059 float: right; | 1043 float: right; |
| 1060 height: 15px; | 1044 height: 15px; |
| 1061 background-color: hsla(43, 84%, 64%, 0.2); | 1045 background-color: hsla(43, 84%, 64%, 0.2); |
| 1062 border-bottom: 1px solid hsl(43, 84%, 64%); | 1046 border-bottom: 1px solid hsl(43, 84%, 64%); |
| 1063 } | 1047 } |
| 1064 | 1048 |
| 1065 .timeline-tree-view .data-grid .selected .background-bar { | 1049 .timeline-tree-view .data-grid .selected .background-bar { |
| 1066 background-color: rgba(255, 255, 255, 0.25); | 1050 background-color: rgba(255, 255, 255, 0.25); |
| 1067 border-bottom-color: transparent; | 1051 border-bottom-color: transparent; |
| 1068 } | 1052 } |
| OLD | NEW |