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

Unified Diff: chrome/browser/resources/options2/autofill_options_list.js

Issue 9706036: settings - share inline list button style between different list types (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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: chrome/browser/resources/options2/autofill_options_list.js
diff --git a/chrome/browser/resources/options2/autofill_options_list.js b/chrome/browser/resources/options2/autofill_options_list.js
index 0b6899d9fdde6129abcb263ac7aea5323461dce2..422545a14e371329ba21e25537e9f06e55ca40d5 100644
--- a/chrome/browser/resources/options2/autofill_options_list.js
+++ b/chrome/browser/resources/options2/autofill_options_list.js
@@ -10,9 +10,8 @@ cr.define('options.autofillOptions', function() {
function AutofillEditProfileButton(guid, edit) {
var editButtonEl = document.createElement('button');
- editButtonEl.className = 'raw-button custom-appearance';
- editButtonEl.textContent =
- templateData.autofillEditProfileButton;
+ editButtonEl.className = 'list-inline-button custom-appearance';
+ editButtonEl.textContent = templateData.autofillEditProfileButton;
editButtonEl.onclick = function(e) { edit(guid); };
// Don't select the row when clicking the button.

Powered by Google App Engine
This is Rietveld 408576698