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

Unified Diff: chrome/browser/resources/options/password_manager_list.css

Issue 1823423002: [Password Manager] Changes implementation of left elided origins (Relanding) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add the check that columnWidth > 0 Created 4 years, 9 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/options/password_manager_list.css
diff --git a/chrome/browser/resources/options/password_manager_list.css b/chrome/browser/resources/options/password_manager_list.css
index 1673233d21c923c8042198c007ae4ee259491392..43f7d607304d0efb3d9caaa7dc86871070b72a8a 100644
--- a/chrome/browser/resources/options/password_manager_list.css
+++ b/chrome/browser/resources/options/password_manager_list.css
@@ -42,7 +42,8 @@ input.inactive-item {
width: 30%;
}
-#saved-passwords-list .name {
+#saved-passwords-list .url,
+#password-exceptions-list .url {
-webkit-user-select: text;
}
@@ -70,22 +71,3 @@ input.inactive-item {
overflow: hidden;
text-overflow: ellipsis;
}
-
-/* To elide URLs from the left, sets unicode-bidi=bidi-override and
- * direction=rtl. */
-.left-elided-url {
- direction: rtl;
- unicode-bidi: bidi-override;
-}
-
-/* RTL direction in left-elided-url changes text-align to right, but URLs for
- * left-to-right locales should still be left aligned.
- * Since the direction is changed to RTL, the icon is at the end (i.e. left),
- * but not at the start. So, swaps start and end margin/padding. */
-html[dir='ltr'] .left-elided-url {
- -webkit-margin-end: 7px;
- -webkit-margin-start: 0;
- -webkit-padding-end: 26px;
- -webkit-padding-start: 3px;
- text-align: left;
-}
« no previous file with comments | « chrome/browser/resources/options/password_manager.js ('k') | chrome/browser/resources/options/password_manager_list.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698