Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(173)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/elements/elementsTreeOutline.css

Issue 2404533002: DevTools: render element tree hover as a block. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 li.hovered:not(.always-parent) + ol.children, .elements-tree-outline ol.shadow-r oot, li.selected:not(.always-parent) + ol.children { 357
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 {
358 margin-left: 5px; 369 margin-left: 5px;
359 -webkit-padding-start: 6px; 370 -webkit-padding-start: 6px;
360 border-width: 1px; 371 border-width: 1px;
361 border-left-style: solid; 372 border-left-style: solid;
362 } 373 }
363 374
364 li.hovered:not(.always-parent) + ol.children:not(.shadow-root) { 375 li.hovered:not(.always-parent) + ol.children:not(.shadow-root) {
365 border-color: hsla(0,0%,0%,0.1); 376 border-color: hsla(0,0%,0%,0.1);
366 } 377 }
367 378
368 .elements-tree-outline ol.shadow-root { 379 .elements-tree-outline ol.shadow-root {
369 border-color: hsla(0,0%,80%,1); 380 border-color: hsla(0,0%,80%,1);
370 } 381 }
371 382
372 li.selected:not(.always-parent) + ol.children { 383 li.selected:not(.always-parent) + ol.children {
373 border-color: hsla(216,68%,80%,1) !important; 384 border-color: hsla(216,68%,80%,1) !important;
374 } 385 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698