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

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

Issue 1831903002: [DevTools] Added keyboard search while in sources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed minor changes requested Created 4 years, 8 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-text-interactive-highlight {
130 text-decoration: underline;
131 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698