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

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

Issue 1461783003: [DevTools] Get rid of floats in treeoutline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebaseline Created 5 years 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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2015 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 .computed-properties { 7 .computed-properties {
8 -webkit-user-select: text; 8 -webkit-user-select: text;
9 } 9 }
10 10
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 /* FIXME: Patch TreeElement styles to use flex for title layout. */ 82 /* FIXME: Patch TreeElement styles to use flex for title layout. */
83 83
84 .tree-outline li { 84 .tree-outline li {
85 display: flex; 85 display: flex;
86 align-items: baseline; 86 align-items: baseline;
87 } 87 }
88 88
89 .tree-outline li::before { 89 .tree-outline li::before {
90 float: none; 90 float: none;
91 flex: none; 91 flex: none;
92 -webkit-mask-position: -3px -97px;
93 background-color: rgb(110, 110, 110); 92 background-color: rgb(110, 110, 110);
94 margin-left: 4px; 93 margin-left: 4px;
95 } 94 }
96
97 .tree-outline li.parent.expanded::before {
98 -webkit-mask-position: -19px -97px;
99 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698