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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/text_editor/cmdevtools.css

Issue 2331053002: DevTools: Implement the console prompt with CodeMirror (Closed)
Patch Set: Merge with PageUp fix 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 .CodeMirror { 1 .CodeMirror {
2 line-height: 1.2em !important; 2 line-height: 1.2em !important;
3 background-color: transparent !important; 3 background-color: transparent !important;
4 color: #222; 4 color: #222;
5 } 5 }
6 6
7 .CodeMirror-linewidget { 7 .CodeMirror-linewidget {
8 overflow: visible !important; 8 overflow: visible !important;
9 } 9 }
10 10
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 } 350 }
351 351
352 .CodeMirror-activeline .cm-trailing-whitespace { 352 .CodeMirror-activeline .cm-trailing-whitespace {
353 background-color: transparent; 353 background-color: transparent;
354 } 354 }
355 355
356 .-theme-with-dark-background .CodeMirror .CodeMirror-selected { 356 .-theme-with-dark-background .CodeMirror .CodeMirror-selected {
357 background-color: #454545; 357 background-color: #454545;
358 } 358 }
359 359
360 .CodeMirror .auto-complete-text{ 360 .CodeMirror .auto-complete-text {
361 color: rgb(128,128,128); 361 color: rgb(128,128,128);
362 } 362 }
363
364 /** Prevent the codemirror textarea from stealing PageUp events **/
365 .CodeMirror textarea {
366 resize: none;
367 overflow: hidden;
368 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698