| 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 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 668 .timeline-details-view-body { | 668 .timeline-details-view-body { |
| 669 flex: auto; | 669 flex: auto; |
| 670 overflow: auto; | 670 overflow: auto; |
| 671 position: relative; | 671 position: relative; |
| 672 background-color: #f3f3f3; | 672 background-color: #f3f3f3; |
| 673 } | 673 } |
| 674 | 674 |
| 675 .timeline-details-view-block { | 675 .timeline-details-view-block { |
| 676 flex: none; | 676 flex: none; |
| 677 display: flex; | 677 display: flex; |
| 678 box-shadow: #ccc 1px 1px 3px; |
| 679 background-color: white; |
| 678 flex-direction: column; | 680 flex-direction: column; |
| 681 margin: 3px 4px; |
| 682 padding-bottom: 5px; |
| 679 } | 683 } |
| 680 | 684 |
| 681 .timeline-details-view-row { | 685 .timeline-details-view-row { |
| 686 padding-left: 10px; |
| 687 flex-direction: row; |
| 682 display: flex; | 688 display: flex; |
| 683 box-shadow: #ccc 1px 1px 3px; | 689 line-height: 21px; |
| 684 flex-direction: column; | 690 } |
| 685 background-color: white; | 691 |
| 686 margin: 2px 3px; | 692 .timeline-details-view-block .timeline-details-stack-values { |
| 687 padding: 3px 10px; | 693 flex-direction: column !important; |
| 694 } |
| 695 |
| 696 .timeline-details-chip-title { |
| 697 font-size: 13px; |
| 698 padding: 8px; |
| 699 display: flex; |
| 700 align-items: center; |
| 701 } |
| 702 |
| 703 .timeline-details-chip-title > div { |
| 704 width: 12px; |
| 705 height: 12px; |
| 706 display: inline-block; |
| 707 margin-right: 4px; |
| 708 background-color: red; |
| 709 content: " "; |
| 688 } | 710 } |
| 689 | 711 |
| 690 .timeline-details-view-row-title { | 712 .timeline-details-view-row-title { |
| 691 color: rgb(152, 152, 152); | 713 color: rgb(152, 152, 152); |
| 692 line-height: 21px; | |
| 693 flex: none; | |
| 694 position: relative; | |
| 695 overflow: hidden; | 714 overflow: hidden; |
| 696 } | 715 } |
| 697 | 716 |
| 698 .timeline-details-warning .timeline-details-view-row-title::after { | 717 .timeline-details-warning { |
| 699 width: 16px; | 718 background-color: rgba(250, 209, 209, 0.48); |
| 700 height: 16px; | 719 } |
| 701 background-color: red; | 720 |
| 702 position: absolute; | 721 .timeline-details-warning .timeline-details-view-row-title { |
| 703 right: -8px; | 722 color: rgb(255, 0, 0); |
| 704 top: -8px; | |
| 705 transform: rotate(45deg); | |
| 706 content: ""; | |
| 707 } | 723 } |
| 708 | 724 |
| 709 .timeline-details-warning .timeline-details-view-row-value { | 725 .timeline-details-warning .timeline-details-view-row-value { |
| 710 white-space: nowrap; | 726 white-space: nowrap; |
| 711 overflow: hidden; | 727 overflow: hidden; |
| 712 text-overflow: ellipsis; | 728 text-overflow: ellipsis; |
| 713 } | 729 } |
| 714 | 730 |
| 715 .timeline-details-view-row-value { | 731 .timeline-details-view-row-value { |
| 716 padding-left: 20px; | |
| 717 min-height: 20px; | |
| 718 line-height: 20px; | |
| 719 -webkit-user-select: text; | 732 -webkit-user-select: text; |
| 720 white-space: nowrap; | 733 white-space: nowrap; |
| 721 text-overflow: ellipsis; | 734 text-overflow: ellipsis; |
| 722 overflow: hidden; | 735 overflow: hidden; |
| 723 margin-right: 5px; | 736 padding-left: 10px; |
| 724 } | 737 } |
| 725 | 738 |
| 726 .timeline-details-view-row-value .stack-preview-container { | 739 .timeline-details-view-row-value .stack-preview-container { |
| 727 line-height: 11px; | 740 line-height: 11px; |
| 728 } | 741 } |
| 729 | 742 |
| 730 .timeline-details-view-row-value .timeline-details-warning-marker { | 743 .timeline-details-view-row-value .timeline-details-warning-marker { |
| 731 white-space: nowrap; | 744 white-space: nowrap; |
| 732 text-overflow: ellipsis; | 745 text-overflow: ellipsis; |
| 733 overflow: hidden; | 746 overflow: hidden; |
| 734 } | 747 } |
| 735 | 748 |
| 736 .timeline-details-view-pie-chart-wrapper { | 749 .timeline-details-view-pie-chart-wrapper { |
| 737 margin: 4px 0; | 750 margin: 4px 0; |
| 738 } | 751 } |
| 739 | 752 |
| 740 .timeline-details-view-pie-chart { | 753 .timeline-details-view-pie-chart { |
| 741 margin-top: 5px; | 754 margin-top: 5px; |
| 742 } | 755 } |
| 743 | 756 |
| 744 .timeline-details-view-pie-chart-total { | 757 .timeline-details-view-pie-chart-total { |
| 745 width: 100px; | 758 width: 100px; |
| 746 margin-top: 10px; | 759 margin-top: 10px; |
| 747 text-align: center; | 760 text-align: center; |
| 748 } | 761 } |
| 749 | 762 |
| 750 .timeline-details-view-row-stack-trace { | 763 .timeline-details-view-row-stack-trace { |
| 764 padding: 4px 0; |
| 751 line-height: inherit; | 765 line-height: inherit; |
| 752 } | 766 } |
| 753 | 767 |
| 754 .timeline-details-view-row-stack-trace div { | 768 .timeline-details-view-row-stack-trace div { |
| 755 white-space: nowrap; | 769 white-space: nowrap; |
| 756 text-overflow: ellipsis; | 770 text-overflow: ellipsis; |
| 757 line-height: 12px; | 771 line-height: 12px; |
| 758 } | 772 } |
| 759 | 773 |
| 760 .timeline-aggregated-info-legend > div { | 774 .timeline-aggregated-info-legend > div { |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 896 | 910 |
| 897 .timeline-gap { | 911 .timeline-gap { |
| 898 flex: none; | 912 flex: none; |
| 899 } | 913 } |
| 900 | 914 |
| 901 .timeline-filmstrip-preview { | 915 .timeline-filmstrip-preview { |
| 902 margin-top: 10px; | 916 margin-top: 10px; |
| 903 max-width: 200px; | 917 max-width: 200px; |
| 904 max-height: 200px; | 918 max-height: 200px; |
| 905 cursor: pointer; | 919 cursor: pointer; |
| 920 border: 1px solid #ddd; |
| 906 } | 921 } |
| 907 | 922 |
| 908 .timeline-overview-popover .frame .time { | 923 .timeline-overview-popover .frame .time { |
| 909 display: none; | 924 display: none; |
| 910 } | 925 } |
| 911 | 926 |
| 912 .timeline-overview-popover .frame .thumbnail img { | 927 .timeline-overview-popover .frame .thumbnail img { |
| 913 max-width: 200px; | 928 max-width: 200px; |
| 914 } | 929 } |
| 915 | 930 |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1033 } | 1048 } |
| 1034 | 1049 |
| 1035 .timeline-tree-view .data-grid .data-container { | 1050 .timeline-tree-view .data-grid .data-container { |
| 1036 top: 21px; | 1051 top: 21px; |
| 1037 } | 1052 } |
| 1038 | 1053 |
| 1039 .timeline-tree-view .data-grid th { | 1054 .timeline-tree-view .data-grid th { |
| 1040 border-bottom: 1px solid #ddd; | 1055 border-bottom: 1px solid #ddd; |
| 1041 background-color: #f3f3f3 | 1056 background-color: #f3f3f3 |
| 1042 } | 1057 } |
| OLD | NEW |