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

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

Issue 2458043002: Fix Password Manager Performance Issues (Closed)
Patch Set: Created 4 years, 1 month 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
« no previous file with comments | « no previous file | chrome/browser/resources/options/password_manager.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #password-manager > div.content-area { 5 #password-manager > div.content-area {
6 width: 600px; 6 width: 600px;
7 } 7 }
8 8
9 #password-search-column { 9 #password-search-column {
10 bottom: 10px; 10 bottom: 10px;
11 position: absolute; 11 position: absolute;
12 right: 0; 12 right: 0;
13 } 13 }
14 14
15 html[dir=rtl] #password-search-column { 15 html[dir=rtl] #password-search-column {
16 left: 0; 16 left: 0;
17 right: auto; 17 right: auto;
18 } 18 }
19 19
20 #password-list-headers { 20 #password-list-headers {
21 position: relative; 21 position: relative;
22 width: 100%; 22 width: 100%;
23 } 23 }
24 24
25 #passwords-title { 25 #passwords-title {
26 display: inline-block; 26 display: inline-block;
27 } 27 }
28
29 #saved-passwords-list,
30 #password-exceptions-list {
31 max-height: 192px; /* For performance (crbug.com/651049). */
32 min-height: 128px; /* Smallest value rendering enough initial list items. */
33 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/options/password_manager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698