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

Side by Side Diff: chrome/browser/resources/options/password_manager_list.css

Issue 489103004: Allow editing passwords in settings/passwords (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added one more test. Modified the comments and the string. Created 6 years, 3 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 unified diff | Download patch
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 #saved-passwords-list .list-inline-buttons-container {
6 display: flex;
7 position: absolute;
8 top: 3px;
9 }
10
11 html[dir='ltr'] #saved-passwords-list .list-inline-buttons-container {
12 right: 0;
13 }
14
15 html[dir='rtl'] #saved-passwords-list .list-inline-buttons-container {
16 left: 0;
17 }
18
5 #saved-passwords-list .list-inline-button { 19 #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.
6 -webkit-transition: opacity 150ms; 20 -webkit-transition: opacity 150ms;
7 background: rgb(138, 170, 237); 21 background: rgb(138, 170, 237);
8 font-size: 0.9em; 22 font-size: 0.9em;
9 height: 18px; 23 height: 18px;
10 padding: 0 2px; 24 padding: 0 2px;
11 position: absolute;
12 top: 3px;
13 } 25 }
14 26
15 html[dir='ltr'] #saved-passwords-list .list-inline-button { 27 html[dir='ltr'] #saved-passwords-list .list-inline-button {
16 right: 2px; 28 margin-right: 2px;
17 } 29 }
18 30
19 html[dir='rtl'] #saved-passwords-list .list-inline-button { 31 html[dir='rtl'] #saved-passwords-list .list-inline-button {
20 left: 2px; 32 margin-left: 2px;
33 }
Dan Beam 2014/08/26 17:39:06 ^ and remove these 2 blocks
jaekyeom 2014/08/27 12:28:53 Done.
34
35 #saved-passwords-list div[role=listitem]:not([selected]) .list-inline-button {
36 display: none;
21 } 37 }
22 38
23 input[type='password'].inactive-password { 39 input[type='password'].inactive-password {
24 background: transparent; 40 background: transparent;
25 border: none; 41 border: none;
26 } 42 }
27 43
28 #saved-passwords-list .url { 44 #saved-passwords-list .url {
45 -webkit-padding-end: 1ex;
29 box-sizing: border-box; 46 box-sizing: border-box;
30 width: 40%; 47 width: 40%;
31 } 48 }
32 49
33 #saved-passwords-list .name { 50 #saved-passwords-list .name {
34 -webkit-box-flex: 1; 51 -webkit-box-flex: 1;
52 -webkit-padding-end: 1ex;
35 width: 20%; 53 width: 20%;
36 } 54 }
37 55
38 #saved-passwords-list .password { 56 #saved-passwords-list .password {
39 -webkit-box-flex: 1; 57 -webkit-box-flex: 1;
40 position: relative; 58 position: relative;
41 } 59 }
42 60
61 #saved-passwords-list .url input[type='text'],
62 #saved-passwords-list .name input[type='text'],
43 #saved-passwords-list .password input[type='password'], 63 #saved-passwords-list .password input[type='password'],
44 #saved-passwords-list .password input[type='text'] { 64 #saved-passwords-list .password input[type='text'] {
45 box-sizing: border-box; 65 box-sizing: border-box;
46 width: 100%; 66 width: 100%;
47 } 67 }
48 68
49 #password-exceptions-list .url { 69 #password-exceptions-list .url {
50 -webkit-box-flex: 1; 70 -webkit-box-flex: 1;
51 } 71 }
52 72
53 #saved-passwords-list .url, 73 #saved-passwords-list .url,
54 #saved-passwords-list .name, 74 #saved-passwords-list .name,
55 #password-exceptions-list .url { 75 #password-exceptions-list .url {
56 overflow: hidden; 76 overflow: hidden;
57 text-overflow: ellipsis; 77 text-overflow: ellipsis;
58 } 78 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698