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

Side by Side Diff: chrome/browser/resources/options/password_manager_list.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: 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
1 /* 1 /*
2 Copyright (c) 2010 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6
7 button.password-button {
8 background: #8aaaed;
9 color: #fff;
10 display: inline;
11 font-size: 90%;
12 font-weight: bold;
13 height: 18px;
14 padding: 0 2px;
15 position: absolute;
16 top: 5px;
17 width: 50px;
stuartmorgan 2011/01/21 00:05:05 Can you make sure the colors and border radius mat
James Hawkins 2011/01/21 00:34:51 Done.
18 }
19
20 html[dir='ltr'] button.password-button {
21 right: 50px;
22 }
23
24 html[dir='rtl'] button.password-button {
25 left: 50px;
26 }
6 27
7 .inactive-password { 28 .inactive-password {
8 background: transparent; 29 background: transparent;
9 border: none; 30 border: none;
10 } 31 }
32
33 #saved-passwords-list .url {
34 box-sizing: border-box;
35 width: 40%;
36 }
37
38 #saved-passwords-list .name {
39 -webkit-box-flex: 1;
40 width: 20%;
41 }
42
43 #saved-passwords-list .password {
44 -webkit-box-flex: 1;
45 position: relative;
46 }
47
48 #saved-passwords-list .url,
49 #saved-passwords-list .name,
50 #password-exceptions-list .url {
51 overflow: hidden;
52 text-overflow: ellipsis;
53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698