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

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

Issue 6241010: DOMUI: Use a styled button instead of an image for the password list show/hide (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fixes. Created 9 years, 11 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 #saved-passwords-list .url {
2 box-sizing: border-box;
3 width: 40%;
4 }
5
6 #saved-passwords-list .name {
7 -webkit-box-flex: 1;
8 width: 20%;
9 }
10
11 #saved-passwords-list .password {
12 -webkit-box-flex: 1;
13 position: relative;
14 }
15
16 #saved-passwords-list .password > span {
17 background: url('show_password.png');
18 cursor: pointer;
19 height: 18px;
20 position: absolute;
21 top: 5px;
22 width: 40px;
23 }
24
25 html[dir='ltr'] #saved-passwords-list .password > span {
26 right: 50px;
27 }
28
29 html[dir='rtl'] #saved-passwords-list .password > span {
30 left: 50px;
31 }
32
33 #saved-passwords-list .url,
34 #saved-passwords-list .name,
35 #password-exceptions-list .url {
36 overflow: hidden;
37 text-overflow: ellipsis;
38 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/options_page.css ('k') | chrome/browser/resources/options/password_manager_list.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698