| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2014 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 .elements-disclosure { | 7 .elements-disclosure { |
| 8 width: 100%; | 8 width: 100%; |
| 9 display: inline-block; | 9 display: inline-block; |
| 10 line-height: normal; | 10 line-height: normal; |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 .elements-disclosure li .webkit-html-tag.close { | 110 .elements-disclosure li .webkit-html-tag.close { |
| 111 margin-left: -12px; | 111 margin-left: -12px; |
| 112 } | 112 } |
| 113 | 113 |
| 114 .elements-disclosure > ol { | 114 .elements-disclosure > ol { |
| 115 position: relative; | 115 position: relative; |
| 116 margin: 0; | 116 margin: 0; |
| 117 cursor: default; | 117 cursor: default; |
| 118 min-width: 100%; | 118 min-width: 100%; |
| 119 min-height: 100%; | 119 min-height: 100%; |
| 120 -webkit-transform: translateZ(0); | |
| 121 padding-left: 2px; | 120 padding-left: 2px; |
| 122 } | 121 } |
| 123 | 122 |
| 124 .elements-disclosure ol:focus li.selected { | 123 .elements-disclosure ol:focus li.selected { |
| 125 color: white; | 124 color: white; |
| 126 } | 125 } |
| 127 | 126 |
| 128 .elements-disclosure ol:focus li.parent.selected::before { | 127 .elements-disclosure ol:focus li.parent.selected::before { |
| 129 background-color: white; | 128 background-color: white; |
| 130 } | 129 } |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 border-color: hsla(0,0%,0%,0.1); | 358 border-color: hsla(0,0%,0%,0.1); |
| 360 } | 359 } |
| 361 | 360 |
| 362 .elements-tree-outline ol.shadow-root { | 361 .elements-tree-outline ol.shadow-root { |
| 363 border-color: hsla(0,0%,80%,1); | 362 border-color: hsla(0,0%,80%,1); |
| 364 } | 363 } |
| 365 | 364 |
| 366 li.selected:not(.always-parent) + ol.children { | 365 li.selected:not(.always-parent) + ol.children { |
| 367 border-color: hsla(216,68%,80%,1) !important; | 366 border-color: hsla(216,68%,80%,1) !important; |
| 368 } | 367 } |
| OLD | NEW |