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 .security-property { |
7 background-size: cover; | 8 background-size: cover; |
8 height: 16px; | 9 height: 16px; |
9 width: 16px; | 10 width: 16px; |
10 } | 11 } |
11 | 12 |
12 .lock-icon-unknown { | 13 .lock-icon-unknown { |
13 background-image: url(Images/securityStateNeutral.png); | 14 background-image: url(Images/securityStateNeutral.png); |
14 } | 15 } |
15 | 16 |
16 .lock-icon-neutral { | 17 .lock-icon-neutral { |
(...skipping 28 matching lines...) Expand all Loading... |
45 | 46 |
46 .lock-icon-warning { | 47 .lock-icon-warning { |
47 background-image: url(Images/securityStateWarning_2x.png); | 48 background-image: url(Images/securityStateWarning_2x.png); |
48 } | 49 } |
49 | 50 |
50 .lock-icon-secure { | 51 .lock-icon-secure { |
51 background-image: url(Images/securityStateSecure_2x.png); | 52 background-image: url(Images/securityStateSecure_2x.png); |
52 } | 53 } |
53 } | 54 } |
54 | 55 |
55 .sidebar-tree-item .lock-icon { | 56 .security-property-insecure { |
56 float: left; | 57 background-image: url(Images/securityPropertyInsecure.svg); |
57 margin-right: 2px; | 58 } |
58 } | 59 |
| 60 .security-property-neutral { |
| 61 background-image: url(Images/securityPropertyWarning.svg); |
| 62 } |
| 63 |
| 64 .security-property-warning { |
| 65 background-image: url(Images/securityPropertyWarning.svg); |
| 66 } |
| 67 |
| 68 .security-property-secure { |
| 69 background-image: url(Images/securityPropertySecure.svg); |
| 70 } |
OLD | NEW |