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

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

Issue 152493003: Remove all usage of -webkit-*gradient inside blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
OLDNEW
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 29 matching lines...) Expand all
40 height: 18px; 40 height: 18px;
41 white-space: nowrap; 41 white-space: nowrap;
42 } 42 }
43 43
44 .resources.panel .sidebar li.selected { 44 .resources.panel .sidebar li.selected {
45 color: white; 45 color: white;
46 text-shadow: rgba(0, 0, 0, 0.33) 1px 1px 0; 46 text-shadow: rgba(0, 0, 0, 0.33) 1px 1px 0;
47 } 47 }
48 48
49 .resources.panel .sidebar li.selected .selection { 49 .resources.panel .sidebar li.selected .selection {
50 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 62, 177, 207)), to(rgb(120, 138, 177))); 50 background-image: linear-gradient(to bottom, rgb(162, 177, 207), rgb(120, 13 8, 177));
51 border-top: 1px solid #979797; 51 border-top: 1px solid #979797;
52 height: 18px; 52 height: 18px;
53 } 53 }
54 54
55 .resources.panel .sidebar :focus li.selected .selection { 55 .resources.panel .sidebar :focus li.selected .selection {
56 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(9 2, 147, 213)), to(rgb(21, 83, 170))); 56 background-image: linear-gradient(to bottom, rgb(92, 147, 213), rgb(21, 83, 170));
57 border-top: 1px solid rgb(68, 128, 200); 57 border-top: 1px solid rgb(68, 128, 200);
58 } 58 }
59 59
60 body.inactive .resources.panel .sidebar li.selected .selection { 60 body.inactive .resources.panel .sidebar li.selected .selection {
61 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 80, 180, 180)), to(rgb(138, 138, 138))); 61 background-image: linear-gradient(to bottom, rgb(180, 180, 180), rgb(138, 13 8, 138));
62 border-top: 1px solid rgb(151, 151, 151); 62 border-top: 1px solid rgb(151, 151, 151);
63 } 63 }
64 64
65 .resources.panel .sidebar .icon { 65 .resources.panel .sidebar .icon {
66 width: 16px; 66 width: 16px;
67 height: 16px; 67 height: 16px;
68 float: left; 68 float: left;
69 } 69 }
70 70
71 .resources.panel .base-storage-tree-element-title { 71 .resources.panel .base-storage-tree-element-title {
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 content: url(Images/cookie.png); 350 content: url(Images/cookie.png);
351 } 351 }
352 352
353 .application-cache-storage-tree-item .icon { 353 .application-cache-storage-tree-item .icon {
354 content: url(Images/applicationCache.png); 354 content: url(Images/applicationCache.png);
355 } 355 }
356 356
357 .file-system-storage-tree-item .icon { 357 .file-system-storage-tree-item .icon {
358 content: url(Images/fileSystem.png); 358 content: url(Images/fileSystem.png);
359 } 359 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698