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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/text_editor/cmdevtools.css
diff --git a/third_party/WebKit/Source/devtools/front_end/text_editor/cmdevtools.css b/third_party/WebKit/Source/devtools/front_end/text_editor/cmdevtools.css
index b4ac42a33987ed5028159b8fc1a31e1b09aeac51..e3966e7317997e390ff63d691b46a363aead9d35 100644
--- a/third_party/WebKit/Source/devtools/front_end/text_editor/cmdevtools.css
+++ b/third_party/WebKit/Source/devtools/front_end/text_editor/cmdevtools.css
@@ -357,6 +357,12 @@
background-color: #454545;
}
-.CodeMirror .auto-complete-text{
+.CodeMirror .auto-complete-text {
color: rgb(128,128,128);
}
+
+/** Prevent the codemirror textarea from stealing PageUp events **/
+.CodeMirror textarea {
+ resize: none;
+ overflow: hidden;
+}

Powered by Google App Engine
This is Rietveld 408576698