| 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 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 display: none; | 331 display: none; |
| 332 transform: rotate(-90deg) scale(0.8); | 332 transform: rotate(-90deg) scale(0.8); |
| 333 background-color: white; | 333 background-color: white; |
| 334 position: relative; | 334 position: relative; |
| 335 left: -7px; | 335 left: -7px; |
| 336 top: -3px; | 336 top: -3px; |
| 337 } | 337 } |
| 338 | 338 |
| 339 .elements-disclosure li.selected .gutter-container:not(.has-decorations) .gutter
-menu-icon { | 339 .elements-disclosure li.selected .gutter-container:not(.has-decorations) .gutter
-menu-icon { |
| 340 display: block; | 340 display: block; |
| 341 pointer-events: none; |
| 341 } | 342 } |
| 342 | 343 |
| 343 /** Guide line */ | 344 /** Guide line */ |
| 344 li.selected { | 345 li.selected { |
| 345 z-index: 0; | 346 z-index: 0; |
| 346 } | 347 } |
| 347 | 348 |
| 348 li.hovered:not(.always-parent) + ol.children, .elements-tree-outline ol.shadow-r
oot, li.selected:not(.always-parent) + ol.children { | 349 li.hovered:not(.always-parent) + ol.children, .elements-tree-outline ol.shadow-r
oot, li.selected:not(.always-parent) + ol.children { |
| 349 margin-left: 5px; | 350 margin-left: 5px; |
| 350 -webkit-padding-start: 6px; | 351 -webkit-padding-start: 6px; |
| 351 border-width: 1px; | 352 border-width: 1px; |
| 352 border-left-style: solid; | 353 border-left-style: solid; |
| 353 } | 354 } |
| 354 | 355 |
| 355 li.hovered:not(.always-parent) + ol.children:not(.shadow-root) { | 356 li.hovered:not(.always-parent) + ol.children:not(.shadow-root) { |
| 356 border-color: hsla(0,0%,0%,0.1); | 357 border-color: hsla(0,0%,0%,0.1); |
| 357 } | 358 } |
| 358 | 359 |
| 359 .elements-tree-outline ol.shadow-root { | 360 .elements-tree-outline ol.shadow-root { |
| 360 border-color: hsla(0,0%,80%,1); | 361 border-color: hsla(0,0%,80%,1); |
| 361 } | 362 } |
| 362 | 363 |
| 363 li.selected:not(.always-parent) + ol.children { | 364 li.selected:not(.always-parent) + ol.children { |
| 364 border-color: hsla(216,68%,80%,1) !important; | 365 border-color: hsla(216,68%,80%,1) !important; |
| 365 } | 366 } |
| OLD | NEW |