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

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

Issue 2860423002: Fix the alignment on chrome://settings/passwords (Closed)
Patch Set: nits Created 3 years, 7 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
« no previous file with comments | « no previous file | chrome/browser/resources/settings/passwords_and_forms_page/passwords_shared_css.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/passwords_and_forms_page/password_list_item.html
diff --git a/chrome/browser/resources/settings/passwords_and_forms_page/password_list_item.html b/chrome/browser/resources/settings/passwords_and_forms_page/password_list_item.html
index 63248d2eca4f6b2f0eba7a8b6ea05bdca0cf0c5c..8884a9f565674d56ecf0764679391cc8187d4c05 100644
--- a/chrome/browser/resources/settings/passwords_and_forms_page/password_list_item.html
+++ b/chrome/browser/resources/settings/passwords_and_forms_page/password_list_item.html
@@ -8,14 +8,6 @@
<dom-module id="password-list-item">
<template>
<style include="settings-shared passwords-shared">
- #password {
- background-color: transparent;
- border: none;
- flex: 1;
- height: 20px;
- width: 0;
- }
-
#originUrl {
/* The following non-flex directives allow eliding long originUrls from
* the left. Forcing rtl should not cause an issue for right-to-left
@@ -38,20 +30,20 @@
</a>
</div>
<div class="username-column selectable text-elide"
- id="username">[[item.loginPair.username]]</div>
- <div class="password-column text-elide">
- <template is="dom-if" if="[[!item.federationText]]">
- <!-- Password type and disabled in order to match mock. -->
- <input id="password" type="password" disabled
- value="[[getEmptyPassword_(item.numCharactersInPassword)]]">
- </input>
- </template>
- <template is="dom-if" if="[[item.federationText]]">
- <span class="selectable text-elide">
- [[item.federationText]]
- </span>
- </template>
- </div>
+ id="username">[[item.loginPair.username]]</div>
+ <div class="password-column">
+ <template is="dom-if" if="[[!item.federationText]]">
+ <!-- Password type and disabled in order to match mock. -->
+ <input id="password" type="password" class="password-field text-elide"
+ disabled value=
+ "[[getEmptyPassword_(item.numCharactersInPassword)]]">
+ </input>
+ </template>
+ <template is="dom-if" if="[[item.federationText]]">
+ <span class="password-field selectable text-elide">
+ [[item.federationText]]
+ </span>
+ </template>
<paper-icon-button id="passwordMenu" icon="cr:more-vert"
on-tap="onPasswordMenuTap_" title="$i18n{moreActions}"
focus-row-control focus-type="passwordMenu">
« no previous file with comments | « no previous file | chrome/browser/resources/settings/passwords_and_forms_page/passwords_shared_css.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698