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

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: resize width Created 3 years, 9 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 150
151 .elements-tree-outline ol.shadow-root-depth-1 { 151 .elements-tree-outline ol.shadow-root-depth-1 {
152 background-color: rgba(0, 0, 0, 0.01); 152 background-color: rgba(0, 0, 0, 0.01);
153 } 153 }
154 154
155 .elements-tree-outline ol.shadow-root-deep { 155 .elements-tree-outline ol.shadow-root-deep {
156 background-color: transparent; 156 background-color: transparent;
157 } 157 }
158 158
159 .elements-tree-editor { 159 .elements-tree-editor {
160 -webkit-user-select: text; 160 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2),
161 -webkit-user-modify: read-write-plaintext-only; 161 0 2px 4px rgba(0, 0, 0, 0.2),
162 0 2px 6px rgba(0, 0, 0, 0.1);
163 margin-right: 4px;
162 } 164 }
163 165
164 .elements-disclosure li.elements-drag-over .selection { 166 .elements-disclosure li.elements-drag-over .selection {
165 display: block; 167 display: block;
166 margin-top: -2px; 168 margin-top: -2px;
167 border-top: 2px solid rgb(56, 121, 217); 169 border-top: 2px solid rgb(56, 121, 217);
168 } 170 }
169 171
170 .elements-disclosure li.in-clipboard .highlight { 172 .elements-disclosure li.in-clipboard .highlight {
171 outline: 1px dotted darkgrey; 173 outline: 1px dotted darkgrey;
172 } 174 }
173 175
174 .CodeMirror { 176 .CodeMirror {
175 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2),
176 0 2px 4px rgba(0, 0, 0, 0.2),
177 0 2px 6px rgba(0, 0, 0, 0.1);
178 background-color: white; 177 background-color: white;
178 height: 300px !important;
179 } 179 }
180 180
181 .CodeMirror-lines { 181 .CodeMirror-lines {
182 padding: 0; 182 padding: 0;
183 } 183 }
184 184
185 .CodeMirror pre { 185 .CodeMirror pre {
186 padding: 0; 186 padding: 0;
187 } 187 }
188 188
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 border-color: hsla(0,0%,0%,0.1); 356 border-color: hsla(0,0%,0%,0.1);
357 } 357 }
358 358
359 .elements-tree-outline ol.shadow-root { 359 .elements-tree-outline ol.shadow-root {
360 border-color: hsla(0,0%,80%,1); 360 border-color: hsla(0,0%,80%,1);
361 } 361 }
362 362
363 li.selected:not(.always-parent) + ol.children { 363 li.selected:not(.always-parent) + ol.children {
364 border-color: hsla(216,68%,80%,1) !important; 364 border-color: hsla(216,68%,80%,1) !important;
365 } 365 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698