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

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: 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 display: block; 167 display: block;
168 margin-top: -2px; 168 margin-top: -2px;
169 border-top: 2px solid rgb(56, 121, 217); 169 border-top: 2px solid rgb(56, 121, 217);
170 } 170 }
171 171
172 .elements-disclosure li.in-clipboard .highlight { 172 .elements-disclosure li.in-clipboard .highlight {
173 outline: 1px dotted darkgrey; 173 outline: 1px dotted darkgrey;
174 } 174 }
175 175
176 .CodeMirror { 176 .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; 177 background-color: white;
178 height: 300px;
181 } 179 }
182 180
183 .CodeMirror-lines { 181 .CodeMirror-lines {
184 padding: 0; 182 padding: 0;
185 } 183 }
186 184
187 .CodeMirror pre { 185 .CodeMirror pre {
188 padding: 0; 186 padding: 0;
189 } 187 }
190 188
(...skipping 22 matching lines...) Expand all
213 .editing, 211 .editing,
214 .editing * { 212 .editing * {
215 color: #222 !important; 213 color: #222 !important;
216 text-decoration: none !important; 214 text-decoration: none !important;
217 } 215 }
218 216
219 .editing br { 217 .editing br {
220 display: none; 218 display: none;
221 } 219 }
222 220
221 .multiline-editor {
222 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2),
223 0 2px 4px rgba(0, 0, 0, 0.2),
224 0 2px 6px rgba(0, 0, 0, 0.1);
225 margin-right:4px;
lushnikov 2016/09/27 18:28:41 nit: space
einbinder 2016/09/29 17:36:51 Done.
226 }
227
223 .elements-gutter-decoration { 228 .elements-gutter-decoration {
224 position: absolute; 229 position: absolute;
225 left: 2px; 230 left: 2px;
226 margin-top: 2px; 231 margin-top: 2px;
227 height: 9px; 232 height: 9px;
228 width: 9px; 233 width: 9px;
229 border-radius: 5px; 234 border-radius: 5px;
230 border: 1px solid orange; 235 border: 1px solid orange;
231 background-color: orange; 236 background-color: orange;
232 cursor: pointer; 237 cursor: pointer;
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 border-color: hsla(0,0%,0%,0.1); 370 border-color: hsla(0,0%,0%,0.1);
366 } 371 }
367 372
368 .elements-tree-outline ol.shadow-root { 373 .elements-tree-outline ol.shadow-root {
369 border-color: hsla(0,0%,80%,1); 374 border-color: hsla(0,0%,80%,1);
370 } 375 }
371 376
372 li.selected:not(.always-parent) + ol.children { 377 li.selected:not(.always-parent) + ol.children {
373 border-color: hsla(216,68%,80%,1) !important; 378 border-color: hsla(216,68%,80%,1) !important;
374 } 379 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698