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

Unified Diff: chrome/browser/resources/settings/privacy_page/privacy_page.html

Issue 1465393002: [MD settings] small change to privacy page to better match UI mocks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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/settings/privacy_page/privacy_page.css ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/privacy_page/privacy_page.html
diff --git a/chrome/browser/resources/settings/privacy_page/privacy_page.html b/chrome/browser/resources/settings/privacy_page/privacy_page.html
index a679f1aa2e0e97e75f784d182715d7787aec2c4f..410da507778857bad162157f8438075b425a5c5a 100644
--- a/chrome/browser/resources/settings/privacy_page/privacy_page.html
+++ b/chrome/browser/resources/settings/privacy_page/privacy_page.html
@@ -3,6 +3,7 @@
<link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-animatable.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper-icon-button.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item-body.html">
<link rel="import" href="chrome://md-settings/certificate_manager_page/certificate_manager_page.html">
<link rel="import" href="chrome://md-settings/clear_browsing_data_page/clear_browsing_data_page.html">
<link rel="import" href="chrome://md-settings/controls/settings_checkbox.html">
@@ -68,18 +69,23 @@
</settings-checkbox>
</if>
</div>
- <div class="settings-box end-justified">
- <paper-button
- on-tap="onManageCertificatesTap_"
- i18n-content="manageCertificates">
- </paper-button>
- <paper-button
- on-tap="onSiteSettingsTap_"
- i18n-content="siteSettings">
- </paper-button>
- <paper-button
- on-tap="onClearBrowsingDataTap_"
- raised i18n-content="clearBrowsingData">
+ <div class="settings-box" on-tap="onManageCertificatesTap_">
+ <paper-item>
+ <paper-item-body>
+ <div i18n-content="manageCertificates"></div>
+ </paper-item-body>
+ </paper-item>
+ </div>
stevenjb 2015/11/24 16:51:12 Is this a style that we will be using elsewhere? I
dschuyler 2015/11/24 17:37:26 That makes sense. I'll keep an eye out and add th
+ <div class="settings-box" on-tap="onSiteSettingsTap_">
+ <paper-item>
+ <paper-item-body>
+ <div i18n-content="siteSettings"></div>
+ </paper-item-body>
+ </paper-item>
+ </div>
+ <div class="settings-box">
+ <paper-button on-tap="onClearBrowsingDataTap_"
+ i18n-content="clearBrowsingData">
</paper-button>
</div>
</neon-animatable>
« no previous file with comments | « chrome/browser/resources/settings/privacy_page/privacy_page.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698