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

Unified Diff: chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html

Issue 1652553002: [MD settings] adjusting heights of settings rows; removing two .css files; unifying settings layout (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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/settings/passwords_and_forms_page/passwords_section.html
diff --git a/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html b/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html
index 47d9d61565d0206582bc26b577fbd7fd584e7336..29545426aa7b3beeb69f493e9dcae764c2cdf77b 100644
--- a/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html
+++ b/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.html
@@ -6,19 +6,20 @@
<dom-module id="passwords-section">
<link rel="import" type="css" href="chrome://md-settings/site_settings_page/site_settings_page.css">
<link rel="import" type="css" href="chrome://md-settings/passwords_and_forms_page/passwords_section.css">
+ <link rel="import" type="css" href="chrome://md-settings/settings_shared.css">
<template>
- <div class="section">
- <div class="heading" i18n-content="savedPasswordsHeading"></div>
- <iron-list id="passwordList" class="list-section"
+ <div class="list-frame">
+ <div class="secondary" i18n-content="savedPasswordsHeading"></div>
+ <iron-list id="passwordList" class="vertical-list list-section"
items="{{savedPasswords}}">
<template>
- <paper-item class="separator">
- <paper-item-body two-line>
+ <div class="list-item two-line">
+ <div class="start">
<div id="origin">[[item.origin]]</div>
- <div id="username"secondary>[[item.username]]</div>
- </paper-item-body>
+ <div id="username" class="secondary">[[item.username]]</div>
+ </div>
<div id="password">[[item.password]]</div>
- </paper-item>
+ </div>
</template>
</iron-list>
</div>

Powered by Google App Engine
This is Rietveld 408576698