| 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 .security-property { |
| 8 background-size: cover; | 8 background-size: cover; |
| 9 height: 16px; | 9 height: 16px; |
| 10 width: 16px; | 10 width: 16px; |
| 11 } | 11 } |
| 12 | 12 |
| 13 .lock-icon-unknown { | 13 .lock-icon-unknown { |
| 14 background-image: url(Images/securityStateNeutral.png); | 14 background-image: url(Images/securityStateNeutral.svg); |
| 15 } | 15 } |
| 16 | 16 |
| 17 .lock-icon-neutral { | 17 .lock-icon-neutral { |
| 18 background-image: url(Images/securityStateNeutral.png); | 18 background-image: url(Images/securityStateNeutral.svg); |
| 19 } | 19 } |
| 20 | 20 |
| 21 .lock-icon-insecure { | 21 .lock-icon-insecure { |
| 22 background-image: url(Images/securityStateInsecure.png); | 22 background-image: url(Images/securityStateInsecure.svg); |
| 23 } | |
| 24 | |
| 25 .lock-icon-warning { | |
| 26 background-image: url(Images/securityStateWarning.png); | |
| 27 } | 23 } |
| 28 | 24 |
| 29 .lock-icon-secure { | 25 .lock-icon-secure { |
| 30 background-image: url(Images/securityStateSecure.png); | 26 background-image: url(Images/securityStateSecure.svg); |
| 31 } | |
| 32 | |
| 33 | |
| 34 @media (-webkit-min-device-pixel-ratio: 1.5) { | |
| 35 .lock-icon-unknown { | |
| 36 background-image: url(Images/securityStateNeutral_2x.png); | |
| 37 } | |
| 38 | |
| 39 .lock-icon-neutral { | |
| 40 background-image: url(Images/securityStateNeutral_2x.png); | |
| 41 } | |
| 42 | |
| 43 .lock-icon-insecure { | |
| 44 background-image: url(Images/securityStateInsecure_2x.png); | |
| 45 } | |
| 46 | |
| 47 .lock-icon-warning { | |
| 48 background-image: url(Images/securityStateWarning_2x.png); | |
| 49 } | |
| 50 | |
| 51 .lock-icon-secure { | |
| 52 background-image: url(Images/securityStateSecure_2x.png); | |
| 53 } | |
| 54 } | 27 } |
| 55 | 28 |
| 56 .security-property-insecure { | 29 .security-property-insecure { |
| 57 background-image: url(Images/securityPropertyInsecure.svg); | 30 background-image: url(Images/securityPropertyInsecure.svg); |
| 58 } | 31 } |
| 59 | 32 |
| 60 .security-property-neutral { | 33 .security-property-neutral { |
| 61 background-image: url(Images/securityPropertyWarning.svg); | 34 background-image: url(Images/securityPropertyWarning.svg); |
| 62 } | 35 } |
| 63 | 36 |
| 64 .security-property-warning { | 37 .security-property-warning { |
| 65 background-image: url(Images/securityPropertyWarning.svg); | 38 background-image: url(Images/securityPropertyWarning.svg); |
| 66 } | 39 } |
| 67 | 40 |
| 68 .security-property-secure { | 41 .security-property-secure { |
| 69 background-image: url(Images/securityPropertySecure.svg); | 42 background-image: url(Images/securityPropertySecure.svg); |
| 70 } | 43 } |
| OLD | NEW |