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

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

Issue 711383002: DevTools: dom nodes rendered in console have huge margins (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebaselined Created 6 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/devtools/front_end/inspectorStyle.css » ('j') | 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 .outline-disclosure { 7 .outline-disclosure {
8 width: 100%; 8 width: 100%;
9 display: inline-block; 9 display: inline-block;
10 line-height: normal; 10 line-height: normal;
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 margin-left: -12px; 93 margin-left: -12px;
94 } 94 }
95 95
96 .outline-disclosure > ol { 96 .outline-disclosure > ol {
97 position: relative; 97 position: relative;
98 margin: 0; 98 margin: 0;
99 cursor: default; 99 cursor: default;
100 min-width: 100%; 100 min-width: 100%;
101 min-height: 100%; 101 min-height: 100%;
102 -webkit-transform: translateZ(0); 102 -webkit-transform: translateZ(0);
103 padding-left: 2px;
103 } 104 }
104 105
105 .outline-disclosure ol:focus li.selected { 106 .outline-disclosure ol:focus li.selected {
106 color: white; 107 color: white;
107 } 108 }
108 109
109 .outline-disclosure ol:focus li.parent.selected::before { 110 .outline-disclosure ol:focus li.parent.selected::before {
110 background-color: white; 111 background-color: white;
111 } 112 }
112 113
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 @-webkit-keyframes dom-update-highlight-animation { 278 @-webkit-keyframes dom-update-highlight-animation {
278 from { background-color: rgb(255, 242, 114); } 279 from { background-color: rgb(255, 242, 114); }
279 90% { background-color: rgb(255, 242, 114); } 280 90% { background-color: rgb(255, 242, 114); }
280 to { background-color: inherit; } 281 to { background-color: inherit; }
281 } 282 }
282 283
283 .dom-update-highlight { 284 .dom-update-highlight {
284 -webkit-animation: dom-update-highlight-animation 2s 1; 285 -webkit-animation: dom-update-highlight-animation 2s 1;
285 color: red !important; 286 color: red !important;
286 } 287 }
288
289 .outline-disclosure.single-node li {
290 padding-left: 2px;
291 }
OLDNEW
« no previous file with comments | « no previous file | Source/devtools/front_end/inspectorStyle.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698