Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(277)

Side by Side Diff: Source/devtools/front_end/heapProfiler.css

Issue 181433002: DevTools: Replace Apple styled spinner icon with Chromium one. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: removed ::before and ::after pseudos box-sizing change Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/devtools/front_end/canvasProfiler.css ('k') | Source/devtools/front_end/inspector.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2010 Apple Inc. All rights reserved. 3 * Copyright (C) 2010 Apple Inc. All rights reserved.
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 are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * 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 15 matching lines...) Expand all
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31 31
32 .heap-snapshot-sidebar-tree-item .icon { 32 .heap-snapshot-sidebar-tree-item .icon {
33 content: url(Images/profileIcon.png); 33 content: url(Images/profileIcon.png);
34 } 34 }
35 35
36 .heap-snapshot-sidebar-tree-item.wait .icon {
37 content: url(Images/spinner.gif);
38 }
39
40 .heap-snapshot-sidebar-tree-item.wait.selected .icon {
41 content: url(Images/spinnerSelected.gif);
42 }
43
44 .heap-snapshot-sidebar-tree-item.small .icon { 36 .heap-snapshot-sidebar-tree-item.small .icon {
45 content: url(Images/profileSmallIcon.png); 37 content: url(Images/profileSmallIcon.png);
46 } 38 }
47 39
48 .heap-snapshot-view { 40 .heap-snapshot-view {
49 display: none; 41 display: none;
50 overflow: hidden; 42 overflow: hidden;
51 position: absolute; 43 position: absolute;
52 top: 0; 44 top: 0;
53 left: 0; 45 left: 0;
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 .heap-snapshot-stats-name, 235 .heap-snapshot-stats-name,
244 .heap-snapshot-stats-size { 236 .heap-snapshot-stats-size {
245 display: inline-block; 237 display: inline-block;
246 margin-left: 6px; 238 margin-left: 6px;
247 } 239 }
248 240
249 .heap-snapshot-stats-size { 241 .heap-snapshot-stats-size {
250 float: right; 242 float: right;
251 text-align: right; 243 text-align: right;
252 } 244 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/canvasProfiler.css ('k') | Source/devtools/front_end/inspector.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698