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 .tree-outline { | 6 .tree-outline { |
7 padding: 0; | 7 padding: 0; |
8 } | 8 } |
9 | 9 |
10 .tree-outline:focus li.selected .lock-icon-neutral { | 10 .tree-outline:focus li.selected .lock-icon-neutral { |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 .tree-outline .sidebar-tree-section + .children > .sidebar-tree-item { | 42 .tree-outline .sidebar-tree-section + .children > .sidebar-tree-item { |
43 padding-left: 16px; | 43 padding-left: 16px; |
44 } | 44 } |
45 | 45 |
46 .tree-outline .sidebar-tree-item .lock-icon, | 46 .tree-outline .sidebar-tree-item .lock-icon, |
47 .tree-outline .sidebar-tree-item .security-property { | 47 .tree-outline .sidebar-tree-item .security-property { |
48 float: left; | 48 float: left; |
49 margin-right: 2px; | 49 margin-right: 2px; |
50 } | 50 } |
51 | 51 |
52 .tree-outline .security-sidebar-tree-item.selected .icon { | 52 .tree-outline .security-sidebar-tree-item.selected .icon:not(.security-property-
unknown) { |
53 background-image: none; | 53 background-image: none; |
54 background-color: #fff; | 54 background-color: #fff; |
55 } | 55 } |
56 | 56 |
57 .tree-outline li.selected .lock-icon-neutral { | 57 .tree-outline li.selected .lock-icon-neutral { |
58 background-image: none; | 58 background-image: none; |
59 background-color: #5a5a5a; | 59 background-color: #5a5a5a; |
60 -webkit-mask-image: url(Images/securityStateNeutral.svg); | 60 -webkit-mask-image: url(Images/securityStateNeutral.svg); |
61 -webkit-mask-size: cover; | 61 -webkit-mask-size: cover; |
62 } | 62 } |
63 | 63 |
64 .tree-outline .security-sidebar-tree-item.selected .security-property-insecure { | 64 .tree-outline .security-sidebar-tree-item.selected .security-property-insecure { |
65 -webkit-mask-image: url(Images/securityPropertyInsecure.svg); | 65 -webkit-mask-image: url(Images/securityPropertyInsecure.svg); |
66 } | 66 } |
67 | 67 |
68 .security-sidebar-tree-item.selected .security-property-neutral, | 68 .security-sidebar-tree-item.selected .security-property-neutral, |
69 .security-sidebar-tree-item.selected .security-property-warning { | 69 .security-sidebar-tree-item.selected .security-property-warning { |
70 -webkit-mask-image: url(Images/securityPropertyWarning.svg); | 70 -webkit-mask-image: url(Images/securityPropertyWarning.svg); |
71 } | 71 } |
72 | 72 |
73 .security-sidebar-tree-item.selected .security-property-secure { | 73 .security-sidebar-tree-item.selected .security-property-secure { |
74 -webkit-mask-image: url(Images/securityPropertySecure.svg); | 74 -webkit-mask-image: url(Images/securityPropertySecure.svg); |
75 } | 75 } |
OLD | NEW |