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..4337d77063be4c920f4f94565203d5995398dbdf 100644 |
| --- a/chrome/browser/resources/options/password_manager_list.css |
| +++ b/chrome/browser/resources/options/password_manager_list.css |
| @@ -2,22 +2,38 @@ |
| * 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; |
| +} |
| + |
| +html[dir='rtl'] #saved-passwords-list .list-inline-buttons-container { |
| + left: 0; |
| +} |
| + |
| #saved-passwords-list .list-inline-button { |
|
Dan Beam
2014/08/26 17:39:06
-webkit-margin-end: 2px;
jaekyeom
2014/08/27 12:28:53
Done.
|
| -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; |
| + margin-right: 2px; |
| } |
| html[dir='rtl'] #saved-passwords-list .list-inline-button { |
| - left: 2px; |
| + margin-left: 2px; |
| +} |
|
Dan Beam
2014/08/26 17:39:06
^ and remove these 2 blocks
jaekyeom
2014/08/27 12:28:53
Done.
|
| + |
| +#saved-passwords-list div[role=listitem]:not([selected]) .list-inline-button { |
| + display: none; |
| } |
| input[type='password'].inactive-password { |
| @@ -26,12 +42,14 @@ input[type='password'].inactive-password { |
| } |
| #saved-passwords-list .url { |
| + -webkit-padding-end: 1ex; |
| box-sizing: border-box; |
| width: 40%; |
| } |
| #saved-passwords-list .name { |
| -webkit-box-flex: 1; |
| + -webkit-padding-end: 1ex; |
| width: 20%; |
| } |
| @@ -40,6 +58,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; |