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

Side by Side Diff: Source/devtools/front_end/security/lockIcon.css

Issue 1300093002: Change security panel overview to support neutral icons. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Optimize .png files. Created 5 years, 4 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
« no previous file with comments | « Source/devtools/front_end/Images/securityStateNeutral_2x.png ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2015 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2015 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 .lock-icon { 6 .lock-icon {
7 background-size: cover; 7 background-size: cover;
8 height: 16px; 8 height: 16px;
9 width: 16px; 9 width: 16px;
10 } 10 }
11 11
12 .lock-icon-unknown { 12 .lock-icon-unknown {
13 background-image: url(Images/securityStateHttp.png); 13 background-image: url(Images/securityStateNeutral.png);
14 } 14 }
15 15
16 .lock-icon-http { 16 .lock-icon-neutral {
17 background-image: url(Images/securityStateHttp.png); 17 background-image: url(Images/securityStateNeutral.png);
18 } 18 }
19 19
20 .lock-icon-insecure { 20 .lock-icon-insecure {
21 background-image: url(Images/securityStateInsecure.png); 21 background-image: url(Images/securityStateInsecure.png);
22 } 22 }
23 23
24 .lock-icon-warning { 24 .lock-icon-warning {
25 background-image: url(Images/securityStateWarning.png); 25 background-image: url(Images/securityStateWarning.png);
26 } 26 }
27 27
28 .lock-icon-secure { 28 .lock-icon-secure {
29 background-image: url(Images/securityStateSecure.png); 29 background-image: url(Images/securityStateSecure.png);
30 } 30 }
31 31
32 32
33 @media (-webkit-min-device-pixel-ratio: 1.5) { 33 @media (-webkit-min-device-pixel-ratio: 1.5) {
34 .lock-icon-unknown { 34 .lock-icon-unknown {
35 background-image: url(Images/securityStateHttp_2x.png); 35 background-image: url(Images/securityStateNeutral_2x.png);
36 } 36 }
37 37
38 .lock-icon-http { 38 .lock-icon-neutral {
39 background-image: url(Images/securityStateHttp_2x.png); 39 background-image: url(Images/securityStateNeutral_2x.png);
40 } 40 }
41 41
42 .lock-icon-insecure { 42 .lock-icon-insecure {
43 background-image: url(Images/securityStateInsecure_2x.png); 43 background-image: url(Images/securityStateInsecure_2x.png);
44 } 44 }
45 45
46 .lock-icon-warning { 46 .lock-icon-warning {
47 background-image: url(Images/securityStateWarning_2x.png); 47 background-image: url(Images/securityStateWarning_2x.png);
48 } 48 }
49 49
50 .lock-icon-secure { 50 .lock-icon-secure {
51 background-image: url(Images/securityStateSecure_2x.png); 51 background-image: url(Images/securityStateSecure_2x.png);
52 } 52 }
53 } 53 }
54 54
55 .sidebar-tree-item .lock-icon { 55 .sidebar-tree-item .lock-icon {
56 float: left; 56 float: left;
57 margin-right: 2px; 57 margin-right: 2px;
58 } 58 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/Images/securityStateNeutral_2x.png ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698