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

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

Issue 5935003: DOMUI: Implement new-style password manager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove cruft. Created 10 years 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 .list-title {
2 font-weight: bold;
3 margin: 20px 0 10px 0;
4 }
5
6 .passwords-list {
7 border: 1px solid #d9d9d9;
8 border-radius: 2px;
9 height: auto;
10 padding-bottom: 1px;
stuartmorgan 2010/12/17 00:40:21 Remove this; it's no longer necessary after my rec
James Hawkins 2010/12/17 02:33:57 Done.
11 }
12
13 #saved-passwords-list .url {
14 box-sizing: border-box;
15 width: 40%;
16 }
17
18 #saved-passwords-list .name {
19 -webkit-box-flex: 1;
20 width: 20%;
stuartmorgan 2010/12/17 00:40:21 Why both a width a flex? Which one wins?
James Hawkins 2010/12/17 02:33:57 No, they're both important and affect the layout,
21 }
22
23 #saved-passwords-list .password {
24 -webkit-box-flex: 1;
25 position: relative;
26 }
27
28 #saved-passwords-list .password span {
29 position: absolute;
30 top: 5px;
31 right: 50px;
stuartmorgan 2010/12/17 00:40:21 This needs to be different for ltr vs rtl; see the
James Hawkins 2010/12/17 02:33:57 Done.
32 width: 40px;
33 height: 18px;
34 background: url('show_password.png');
35 cursor: pointer;
36 }
37
38 #saved-passwords-list .url,
39 #saved-passwords-list .name,
40 #password-exceptions-list .url {
41 overflow: hidden;
42 text-overflow: ellipsis;
43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698