OLD | NEW |
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 } |
OLD | NEW |