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

Unified Diff: third_party/WebKit/Source/devtools/front_end/console/consoleView.css

Issue 2058513003: DevTools: max length limit for formatting commands (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Made const Created 4 years, 6 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/console/consoleView.css
diff --git a/third_party/WebKit/Source/devtools/front_end/console/consoleView.css b/third_party/WebKit/Source/devtools/front_end/console/consoleView.css
index fca30b93a3230b3facc1a9722e339a99c471fcaf..015703d6c1be1d1ae54adcefa2cbb5dd7962dca5 100644
--- a/third_party/WebKit/Source/devtools/front_end/console/consoleView.css
+++ b/third_party/WebKit/Source/devtools/front_end/console/consoleView.css
@@ -56,7 +56,9 @@
#console-prompt {
clear: right;
- position: relative;
+ position: absolute;
dgozman 2016/06/14 08:55:04 I've tried this in canary, and it doesn't have any
luoe 2016/06/14 18:29:54 After checking Canary on Mac, it looks like there
+ left: 0;
+ right: 0;
padding: 3px 22px 1px 0;
margin-left: 24px;
min-height: 18px; /* Sync with ConsoleViewMessage.js */

Powered by Google App Engine
This is Rietveld 408576698