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