| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 The Chromium Authors. All rights reserved. | 2 * Copyright 2015 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 .sidebar-pane.accessibility-computed { | 7 .sidebar-pane.accessibility-computed { |
| 8 background-color: rgba(0, 0, 0, 0.03); | 8 background-color: rgba(0, 0, 0, 0.03); |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 .sidebar-pane-stack .sidebar-pane { | 129 .sidebar-pane-stack .sidebar-pane { |
| 130 padding-left: 4px; | 130 padding-left: 4px; |
| 131 } | 131 } |
| 132 | 132 |
| 133 button.expand-siblings { | 133 button.expand-siblings { |
| 134 border-radius: 1px; | 134 border-radius: 1px; |
| 135 background-color: #f3f3f3; | 135 background-color: #f3f3f3; |
| 136 border: 1px solid #ddd; | 136 border: 1px solid #ddd; |
| 137 margin-left: 5px; | 137 margin-left: 5px; |
| 138 margin-bottom: 1px; | 138 margin-bottom: 1px; |
| 139 font-size: 11px; | |
| 140 } | 139 } |
| 141 | 140 |
| 142 li.siblings-expanded button.expand-siblings { | 141 li.siblings-expanded button.expand-siblings { |
| 143 display: none; | 142 display: none; |
| 144 } | 143 } |
| 145 | 144 |
| 146 .tree-outline li:hover .inspect-dom-node { | 145 .tree-outline li:hover .inspect-dom-node { |
| 147 display: initial; | 146 display: initial; |
| 148 } | 147 } |
| 149 | 148 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 166 background-color: white; | 165 background-color: white; |
| 167 } | 166 } |
| 168 | 167 |
| 169 .tree-outline li.hovered:not(.selected) .selection { | 168 .tree-outline li.hovered:not(.selected) .selection { |
| 170 display: block; | 169 display: block; |
| 171 left: 3px; | 170 left: 3px; |
| 172 right: 3px; | 171 right: 3px; |
| 173 background-color: rgba(56, 121, 217, 0.1); | 172 background-color: rgba(56, 121, 217, 0.1); |
| 174 border-radius: 5px; | 173 border-radius: 5px; |
| 175 } | 174 } |
| OLD | NEW |