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

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

Issue 2372663004: DevTools: Replace multiline InplaceEditor with CodeMirrorTextEditor (Closed)
Patch Set: Remove new css class 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
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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 152
153 .elements-tree-outline ol.shadow-root-depth-1 { 153 .elements-tree-outline ol.shadow-root-depth-1 {
154 background-color: rgba(0, 0, 0, 0.01); 154 background-color: rgba(0, 0, 0, 0.01);
155 } 155 }
156 156
157 .elements-tree-outline ol.shadow-root-deep { 157 .elements-tree-outline ol.shadow-root-deep {
158 background-color: transparent; 158 background-color: transparent;
159 } 159 }
160 160
161 .elements-tree-editor { 161 .elements-tree-editor {
162 -webkit-user-select: text; 162 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2),
163 -webkit-user-modify: read-write-plaintext-only; 163 0 2px 4px rgba(0, 0, 0, 0.2),
164 0 2px 6px rgba(0, 0, 0, 0.1);
165 margin-right: 4px;
164 } 166 }
165 167
166 .elements-disclosure li.elements-drag-over .selection { 168 .elements-disclosure li.elements-drag-over .selection {
167 display: block; 169 display: block;
168 margin-top: -2px; 170 margin-top: -2px;
169 border-top: 2px solid rgb(56, 121, 217); 171 border-top: 2px solid rgb(56, 121, 217);
170 } 172 }
171 173
172 .elements-disclosure li.in-clipboard .highlight { 174 .elements-disclosure li.in-clipboard .highlight {
173 outline: 1px dotted darkgrey; 175 outline: 1px dotted darkgrey;
174 } 176 }
175 177
176 .CodeMirror { 178 .CodeMirror {
177 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2),
178 0 2px 4px rgba(0, 0, 0, 0.2),
179 0 2px 6px rgba(0, 0, 0, 0.1);
180 background-color: white; 179 background-color: white;
180 height: 300px;
181 } 181 }
182 182
183 .CodeMirror-lines { 183 .CodeMirror-lines {
184 padding: 0; 184 padding: 0;
185 } 185 }
186 186
187 .CodeMirror pre { 187 .CodeMirror pre {
188 padding: 0; 188 padding: 0;
189 } 189 }
190 190
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 border-color: hsla(0,0%,0%,0.1); 365 border-color: hsla(0,0%,0%,0.1);
366 } 366 }
367 367
368 .elements-tree-outline ol.shadow-root { 368 .elements-tree-outline ol.shadow-root {
369 border-color: hsla(0,0%,80%,1); 369 border-color: hsla(0,0%,80%,1);
370 } 370 }
371 371
372 li.selected:not(.always-parent) + ol.children { 372 li.selected:not(.always-parent) + ol.children {
373 border-color: hsla(216,68%,80%,1) !important; 373 border-color: hsla(216,68%,80%,1) !important;
374 } 374 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698