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

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

Issue 2668163002: MD Settings: Fix styles in several places. (Closed)
Patch Set: remove ugly for-unit-test-only class Created 3 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 db94005f36632647a0c21ad04ea059af11ab05a7..b857b200c1d148f168526f2bea5c205cc7a1a416 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
@@ -126,23 +126,21 @@
<div class="settings-box block first">
<h2>$i18n{passwordExceptionsHeading}</h2>
</div>
- <div class="list-frame vertical-list">
- <span id="passwordExceptionsList">
- <template is="dom-repeat" items="[[passwordExceptions]]"
- filter="[[passwordExceptionFilter_(filter)]]">
- <div class="list-item two-line">
- <div class="start">
- <a id="exception" href="[[item.linkUrl]]" target="_blank"
- class="selectable">[[item.exceptionUrl]]</a>
- </div>
- <paper-icon-button id="removeExceptionButton"
- icon="cr:close" on-tap="onRemoveExceptionButtonTap_"
- tabindex$="[[tabIndex]]"
- alt="$i18n{deletePasswordException}">
- </paper-icon-button>
+ <div class="list-frame vertical-list" id="passwordExceptionsList">
+ <template is="dom-repeat" items="[[passwordExceptions]]"
+ filter="[[passwordExceptionFilter_(filter)]]">
+ <div class="list-item">
+ <div class="start">
+ <a id="exception" href="[[item.linkUrl]]" target="_blank"
+ class="selectable">[[item.exceptionUrl]]</a>
</div>
- </template>
- </span>
+ <paper-icon-button id="removeExceptionButton"
+ icon="cr:close" on-tap="onRemoveExceptionButtonTap_"
+ tabindex$="[[tabIndex]]"
+ alt="$i18n{deletePasswordException}">
+ </paper-icon-button>
+ </div>
+ </template>
<div id="noExceptionsLabel" class="list-item"
hidden$="[[hasSome_(passwordExceptions)]]">
$i18n{noExceptionsFound}

Powered by Google App Engine
This is Rietveld 408576698