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

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

Issue 1193143003: Enable import/export of passwords into/from Password Manager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing comments Created 5 years, 5 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
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 5
6 #password-manager > div.content-area { 6 #password-manager > div.content-area {
7 width: 600px; 7 width: 600px;
8 } 8 }
9 9
10 #password-search-column { 10 #password-search-column {
11 bottom: 10px; 11 bottom: 10px;
12 position: absolute; 12 position: absolute;
13 right: 0; 13 right: 0;
14 } 14 }
15 15
16 html[dir=rtl] #password-search-column { 16 html[dir=rtl] #password-search-column {
17 left: 0; 17 left: 0;
18 right: auto; 18 right: auto;
19 } 19 }
20 20
21 #password-list-headers { 21 #password-list-headers {
22 position: relative; 22 position: relative;
23 width: 100%; 23 width: 100%;
24 } 24 }
25 25
26 #passwords-title { 26 #passwords-title {
27 display: inline-block; 27 display: inline-block;
28 } 28 }
29
30 #import-complete-header {
31 font-size: 1.2em;
32 }
33
34 #import-complete-image {
35 margin: 20px;
36 text-align: center;
37 }
38
39 .import-password-complete {
40 display: none;
41 }
Evan Stade 2015/07/13 23:32:43 whitespace in this file is off here and at the end
xunlu 2015/07/14 00:47:24 Done.
42 #password-manager.importing .import-password-complete {
43 display: inline;
Evan Stade 2015/07/13 23:32:43 slightly nicer, I think (one rule instead of two):
xunlu 2015/07/14 00:47:24 Done.
44 }
45
46 #password-manager.importing .password-manager-home {
47 display: none;
48 }
49
50 #password-manager-import[disabled] {
51 display: none;
52 }
53
54 #password-manager-export[disabled] {
55 display: none;
56 }
57
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/options/password_manager.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698