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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 } | 65 } |
66 | 66 |
67 .profiles-toolbar { | 67 .profiles-toolbar { |
68 display: flex; | 68 display: flex; |
69 background-color: #f3f3f3; | 69 background-color: #f3f3f3; |
70 flex: 0 0 25px; | 70 flex: 0 0 25px; |
71 flex-direction: row; | 71 flex-direction: row; |
72 border-bottom: 1px solid rgb(202, 202, 202); | 72 border-bottom: 1px solid rgb(202, 202, 202); |
73 } | 73 } |
74 | 74 |
75 .profile-launcher-view-tree-item > .icon { | |
76 width: 4px !important; | |
77 visibility: hidden; | |
78 } | |
79 | |
80 .profiles-sidebar-tree-box { | 75 .profiles-sidebar-tree-box { |
81 overflow: auto; | 76 overflow: auto; |
82 flex: auto; | 77 flex: auto; |
83 } | 78 } |
84 | 79 |
85 .profiles-sidebar-tree-box > ol { | |
86 overflow: auto; | |
87 flex: auto; | |
88 } | |
89 | |
90 .profile-sidebar-tree-item .icon { | |
91 content: url(Images/profileIcon.png); | |
92 } | |
93 | |
94 .profile-sidebar-tree-item.small .icon { | |
95 content: url(Images/profileSmallIcon.png); | |
96 } | |
97 | |
98 .profile-group-sidebar-tree-item .icon { | |
99 content: url(Images/profileGroupIcon.png); | |
100 } | |
101 | |
102 .sidebar-tree-item .title-container > .save-link { | |
103 text-decoration: underline; | |
104 margin-left: auto; | |
105 display: none; | |
106 } | |
107 | |
108 .sidebar-tree-item.selected .title-container > .save-link { | |
109 display: block; | |
110 } | |
111 | |
112 .profile-view { | 80 .profile-view { |
113 display: flex; | 81 display: flex; |
114 overflow: hidden; | 82 overflow: hidden; |
115 } | 83 } |
116 | 84 |
117 .profile-view .data-grid { | 85 .profile-view .data-grid { |
118 border: none; | 86 border: none; |
119 flex: auto; | 87 flex: auto; |
120 } | 88 } |
121 | 89 |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 bottom: 0; | 218 bottom: 0; |
251 } | 219 } |
252 | 220 |
253 #cpu-profile-flame-chart-overview-grid .resources-dividers-label-bar { | 221 #cpu-profile-flame-chart-overview-grid .resources-dividers-label-bar { |
254 pointer-events: auto; | 222 pointer-events: auto; |
255 } | 223 } |
256 | 224 |
257 .cpu-profile-flame-chart-overview-pane { | 225 .cpu-profile-flame-chart-overview-pane { |
258 flex: 0 0 80px !important; | 226 flex: 0 0 80px !important; |
259 } | 227 } |
OLD | NEW |