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 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 .elements-disclosure li.selected .gutter-container:not(.has-decorations) { | 347 .elements-disclosure li.selected .gutter-container:not(.has-decorations) { |
348 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); | 348 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); |
349 } | 349 } |
350 } /* media */ | 350 } /* media */ |
351 | 351 |
352 /** Guide line */ | 352 /** Guide line */ |
353 li.selected { | 353 li.selected { |
354 z-index: 0; | 354 z-index: 0; |
355 } | 355 } |
356 | 356 |
357 | 357 li.hovered:not(.always-parent) + ol.children, .elements-tree-outline ol.shadow-r
oot, li.selected:not(.always-parent) + ol.children { |
358 li.hovered:not(.always-parent) + ol.children::before { | |
359 background-color: rgba(56, 121, 217, 0.1); | |
360 content: "a"; | |
361 position: absolute; | |
362 top: -1px; | |
363 bottom: 0; | |
364 left: -10000px; | |
365 right: 0; | |
366 } | |
367 | |
368 .elements-tree-outline ol.shadow-root, li.selected:not(.always-parent) + ol.chil
dren { | |
369 margin-left: 5px; | 358 margin-left: 5px; |
370 -webkit-padding-start: 6px; | 359 -webkit-padding-start: 6px; |
371 border-width: 1px; | 360 border-width: 1px; |
372 border-left-style: solid; | 361 border-left-style: solid; |
373 } | 362 } |
374 | 363 |
375 li.hovered:not(.always-parent) + ol.children:not(.shadow-root) { | 364 li.hovered:not(.always-parent) + ol.children:not(.shadow-root) { |
376 border-color: hsla(0,0%,0%,0.1); | 365 border-color: hsla(0,0%,0%,0.1); |
377 } | 366 } |
378 | 367 |
379 .elements-tree-outline ol.shadow-root { | 368 .elements-tree-outline ol.shadow-root { |
380 border-color: hsla(0,0%,80%,1); | 369 border-color: hsla(0,0%,80%,1); |
381 } | 370 } |
382 | 371 |
383 li.selected:not(.always-parent) + ol.children { | 372 li.selected:not(.always-parent) + ol.children { |
384 border-color: hsla(216,68%,80%,1) !important; | 373 border-color: hsla(216,68%,80%,1) !important; |
385 } | 374 } |
OLD | NEW |