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

Unified Diff: chrome/browser/resources/bookmark_manager/js/bmm/bookmark_list.js

Issue 7711019: BMM: Fix for add a page UI has very tiny input fields (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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 | « no previous file | chrome/browser/resources/shared/js/cr/ui/tree.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/bookmark_manager/js/bmm/bookmark_list.js
diff --git a/chrome/browser/resources/bookmark_manager/js/bmm/bookmark_list.js b/chrome/browser/resources/bookmark_manager/js/bmm/bookmark_list.js
index 039bcfed2d7e2f60dc5db41f4a643a0056b6a600..fbce6f4abd7ef9eb3ee924af5542fc0ed93f808f 100644
--- a/chrome/browser/resources/bookmark_manager/js/bmm/bookmark_list.js
+++ b/chrome/browser/resources/bookmark_manager/js/bmm/bookmark_list.js
@@ -495,7 +495,7 @@ cr.define('bmm', function() {
});
labelInput.addEventListener('keydown', handleKeydown);
labelInput.addEventListener('blur', handleBlur);
- cr.ui.limitInputWidth(labelInput, this, 20);
+ cr.ui.limitInputWidth(labelInput, this, 100);
labelInput.focus();
labelInput.select();
@@ -505,7 +505,7 @@ cr.define('bmm', function() {
});
urlInput.addEventListener('keydown', handleKeydown);
urlInput.addEventListener('blur', handleBlur);
- cr.ui.limitInputWidth(urlInput, this, 20);
+ cr.ui.limitInputWidth(urlInput, this, 100);
}
} else {
« no previous file with comments | « no previous file | chrome/browser/resources/shared/js/cr/ui/tree.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698