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

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

Issue 2332013002: DevTools: Allow PageUp to fall through text editor (Closed)
Patch Set: 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/text_editor/CodeMirrorTextEditor.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..b39ca7835381d86b97d2d6ac3e35ef88a53157d1 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
@@ -360,3 +360,9 @@
.CodeMirror .auto-complete-text{
color: rgb(128,128,128);
}
+
+/** Prevent the codemirror textarea from stealing PageUp events **/
+.CodeMirror textarea{
pfeldman 2016/09/12 17:15:55 nit: spaces before { here and above.
+ resize:none;
+ overflow:hidden;
+}
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/text_editor/CodeMirrorTextEditor.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698