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

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

Issue 6364014: DOMUI: Fix password list items from showing password input field. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 10 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2011 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 6
7 button.password-button { 7 button.password-button {
8 background: #8aaaed; 8 background: #8aaaed;
9 color: #fff; 9 color: #fff;
10 display: inline; 10 display: inline;
11 font-size: 90%; 11 font-size: 90%;
12 font-weight: bold; 12 font-weight: bold;
13 height: 18px; 13 height: 18px;
14 padding: 0 2px; 14 padding: 0 2px;
15 position: absolute; 15 position: absolute;
16 top: 5px; 16 top: 5px;
17 width: 50px; 17 width: 50px;
18 } 18 }
19 19
20 html[dir='ltr'] button.password-button { 20 html[dir='ltr'] button.password-button {
21 right: 50px; 21 right: 50px;
22 } 22 }
23 23
24 html[dir='rtl'] button.password-button { 24 html[dir='rtl'] button.password-button {
25 left: 50px; 25 left: 50px;
26 } 26 }
27 27
28 .inactive-password { 28 input[type="password"].inactive-password {
29 background: transparent; 29 background: transparent;
30 border: none; 30 border: none;
31 } 31 }
32 32
33 #saved-passwords-list .url { 33 #saved-passwords-list .url {
34 box-sizing: border-box; 34 box-sizing: border-box;
35 width: 40%; 35 width: 40%;
36 } 36 }
37 37
38 #saved-passwords-list .name { 38 #saved-passwords-list .name {
39 -webkit-box-flex: 1; 39 -webkit-box-flex: 1;
40 width: 20%; 40 width: 20%;
41 } 41 }
42 42
43 #saved-passwords-list .password { 43 #saved-passwords-list .password {
44 -webkit-box-flex: 1; 44 -webkit-box-flex: 1;
45 position: relative; 45 position: relative;
46 } 46 }
47 47
48 #saved-passwords-list .url, 48 #saved-passwords-list .url,
49 #saved-passwords-list .name, 49 #saved-passwords-list .name,
50 #password-exceptions-list .url { 50 #password-exceptions-list .url {
51 overflow: hidden; 51 overflow: hidden;
52 text-overflow: ellipsis; 52 text-overflow: ellipsis;
53 } 53 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698