| 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 li { | 10 .tree-outline li { |
| 11 display: flex; | 11 display: flex; |
| 12 flex-direction: row; | 12 flex-direction: row; |
| 13 align-items: center; | 13 align-items: center; |
| 14 padding: 2px 5px; | 14 padding: 2px 5px; |
| 15 overflow: hidden; | 15 overflow: hidden; |
| 16 margin: 2px 0; | 16 margin: 2px 0; |
| 17 border-top: 1px solid transparent; | 17 border-top: 1px solid transparent; |
| 18 white-space: nowrap; | 18 white-space: nowrap; |
| 19 } | 19 } |
| 20 | 20 |
| 21 .tree-outline:focus li.selected .lock-icon, | 21 .tree-outline li.selected:focus .lock-icon, |
| 22 .tree-outline:focus .security-sidebar-tree-item.selected .icon | 22 .tree-outline .security-sidebar-tree-item.selected:focus .icon |
| 23 { | 23 { |
| 24 background-color: white; | 24 background-color: white; |
| 25 } | 25 } |
| 26 | 26 |
| 27 .tree-outline .security-main-view-sidebar-tree-item { | 27 .tree-outline .security-main-view-sidebar-tree-item { |
| 28 border-bottom: 1px solid rgb(230, 230, 230); | 28 border-bottom: 1px solid rgb(230, 230, 230); |
| 29 padding: 16px 0; | 29 padding: 16px 0; |
| 30 } | 30 } |
| 31 | 31 |
| 32 .tree-outline li.security-sidebar-origins { | 32 .tree-outline li.security-sidebar-origins { |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 | 65 |
| 66 .security-sidebar-tree-item .title { | 66 .security-sidebar-tree-item .title { |
| 67 overflow: hidden; | 67 overflow: hidden; |
| 68 margin-right: 5px; | 68 margin-right: 5px; |
| 69 } | 69 } |
| 70 | 70 |
| 71 .security-main-view-reload-message .tree-element-title { | 71 .security-main-view-reload-message .tree-element-title { |
| 72 color: rgba(0, 0, 0, 0.5); | 72 color: rgba(0, 0, 0, 0.5); |
| 73 padding-left: 8px; | 73 padding-left: 8px; |
| 74 } | 74 } |
| OLD | NEW |