Chromium Code Reviews| 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 8688619c287d137d8d3ff26891f32da34d191072..f174a6ba29f78ce294a24247a862b29ea28d1650 100644 |
| --- a/chrome/browser/resources/options/password_manager_list.css |
| +++ b/chrome/browser/resources/options/password_manager_list.css |
| @@ -2,22 +2,31 @@ |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. */ |
| +#saved-passwords-list .list-inline-buttons-container { |
| + display: flex; |
| + position: absolute; |
| + top: 3px; |
| +} |
| + |
| +html[dir='ltr'] #saved-passwords-list .list-inline-buttons-container { |
| + right: 0; |
|
Dan Beam
2014/09/11 05:17:57
nit: just put this in the default rule, e.g.
#sav
jaekyeom
2014/09/12 10:35:57
Done.
|
| +} |
| + |
| +html[dir='rtl'] #saved-passwords-list .list-inline-buttons-container { |
| + left: 0; |
| +} |
| + |
| #saved-passwords-list .list-inline-button { |
| + -webkit-margin-end: 2px; |
| -webkit-transition: opacity 150ms; |
| background: rgb(138, 170, 237); |
| font-size: 0.9em; |
| height: 18px; |
| padding: 0 2px; |
| - position: absolute; |
| - top: 3px; |
| -} |
| - |
| -html[dir='ltr'] #saved-passwords-list .list-inline-button { |
| - right: 2px; |
| } |
| -html[dir='rtl'] #saved-passwords-list .list-inline-button { |
| - left: 2px; |
| +#saved-passwords-list div[role=listitem]:not([selected]) .list-inline-button { |
| + display: none; |
| } |
| input[type='password'].inactive-password { |
| @@ -26,12 +35,14 @@ input[type='password'].inactive-password { |
| } |
| #saved-passwords-list .url { |
| + -webkit-padding-end: 1ex; |
|
Dan Beam
2014/09/11 05:17:57
why ex over em?
jaekyeom
2014/09/12 10:35:57
Done.
|
| box-sizing: border-box; |
| width: 40%; |
| } |
| #saved-passwords-list .name { |
| -webkit-box-flex: 1; |
| + -webkit-padding-end: 1ex; |
| width: 20%; |
| } |
| @@ -40,6 +51,8 @@ input[type='password'].inactive-password { |
| position: relative; |
| } |
| +#saved-passwords-list .url input[type='text'], |
| +#saved-passwords-list .name input[type='text'], |
| #saved-passwords-list .password input[type='password'], |
| #saved-passwords-list .password input[type='text'] { |
| box-sizing: border-box; |