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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui/treeoutline.css

Issue 2325003002: [DevTools] Migrate RequestHeadersView to TreeOutlineInShadow. (Closed)
Patch Set: Created 4 years, 3 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
OLDNEW
1 /* 1 /*
2 * Copyright 2015 The Chromium Authors. All rights reserved. 2 * Copyright 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 :host { 7 :host {
8 flex: 1 1; 8 flex: 1 1;
9 padding: 2px 0 0 0; 9 padding: 2px 0 0 0;
10 } 10 }
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 -webkit-mask-position: -20px -96px; 118 -webkit-mask-position: -20px -96px;
119 } 119 }
120 120
121 .tree-outline ol.children { 121 .tree-outline ol.children {
122 display: none; 122 display: none;
123 } 123 }
124 124
125 .tree-outline ol.children.expanded { 125 .tree-outline ol.children.expanded {
126 display: block; 126 display: block;
127 } 127 }
128
129 .tree-outline.tree-outline-dense li {
130 margin-top: 1px;
131 min-height: 12px;
132 }
133
134 .tree-outline.tree-outline-dense li.parent {
135 margin-top: 0;
136 }
137
138 .tree-outline.tree-outline-dense li.parent::before {
139 top: 0;
140 }
141
142 .tree-outline.tree-outline-dense ol {
143 padding-left: 10px;
144 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698