| 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}
|
|
|