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

Unified Diff: chrome/browser/resources/shared/js/cr/ui/tree.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 | « chrome/browser/resources/bookmark_manager/js/bmm/bookmark_list.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/shared/js/cr/ui/tree.js
diff --git a/chrome/browser/resources/shared/js/cr/ui/tree.js b/chrome/browser/resources/shared/js/cr/ui/tree.js
index da4b0887e09fb7dc02fcfb73b1849064a800b7aa..c1386358ec03028830dca7367e17279597342881 100644
--- a/chrome/browser/resources/shared/js/cr/ui/tree.js
+++ b/chrome/browser/resources/shared/js/cr/ui/tree.js
@@ -571,7 +571,7 @@ cr.define('cr.ui', function() {
function onFocus() {
input.removeEventListener('focus', onFocus);
// 20 = the padding and border of the tree-row
- cr.ui.limitInputWidth(input, rowElement, 20);
+ cr.ui.limitInputWidth(input, rowElement, 100);
}
input.addEventListener('focus', onFocus);
input.focus();
« no previous file with comments | « chrome/browser/resources/bookmark_manager/js/bmm/bookmark_list.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698