OLD | NEW |
(Empty) | |
| 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 |
| 3 * found in the LICENSE file. |
| 4 */ |
| 5 |
| 6 .lock-icon { |
| 7 background-size: cover; |
| 8 height: 16px; |
| 9 width: 16px; |
| 10 } |
| 11 |
| 12 .lock-icon-unknown { |
| 13 background-image: url(Images/securityStateHttp.png); |
| 14 } |
| 15 |
| 16 .lock-icon-http { |
| 17 background-image: url(Images/securityStateHttp.png); |
| 18 } |
| 19 |
| 20 .lock-icon-insecure { |
| 21 background-image: url(Images/securityStateInsecure.png); |
| 22 } |
| 23 |
| 24 .lock-icon-warning { |
| 25 background-image: url(Images/securityStateWarning.png); |
| 26 } |
| 27 |
| 28 .lock-icon-secure { |
| 29 background-image: url(Images/securityStateSecure.png); |
| 30 } |
| 31 |
| 32 |
| 33 @media (-webkit-min-device-pixel-ratio: 1.5) { |
| 34 .lock-icon-unknown { |
| 35 background-image: url(Images/securityStateHttp_2x.png); |
| 36 } |
| 37 |
| 38 .lock-icon-http { |
| 39 background-image: url(Images/securityStateHttp_2x.png); |
| 40 } |
| 41 |
| 42 .lock-icon-insecure { |
| 43 background-image: url(Images/securityStateInsecure_2x.png); |
| 44 } |
| 45 |
| 46 .lock-icon-warning { |
| 47 background-image: url(Images/securityStateWarning_2x.png); |
| 48 } |
| 49 |
| 50 .lock-icon-secure { |
| 51 background-image: url(Images/securityStateSecure_2x.png); |
| 52 } |
| 53 } |
| 54 |
| 55 .sidebar-tree-item .lock-icon { |
| 56 float: left; |
| 57 margin-right: 2px; |
| 58 } |
OLD | NEW |