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

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

Issue 682133003: [Password Manager] Add link to remotely manage passowrds on desktop (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 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
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 #autofill-options { 5 #autofill-options {
6 width: 550px; 6 width: 550px;
7 } 7 }
8 8
9 #autofill-help {
10 bottom: 18px;
11 position: absolute;
12 }
13
14 #autofill-options list { 9 #autofill-options list {
15 min-height: 172px; 10 min-height: 172px;
16 } 11 }
17 12
18 .autofill-list-item { 13 .autofill-list-item {
19 -webkit-box-flex: 1; 14 -webkit-box-flex: 1;
20 -webkit-padding-start: 8px; 15 -webkit-padding-start: 8px;
21 overflow: hidden; 16 overflow: hidden;
22 text-overflow: ellipsis; 17 text-overflow: ellipsis;
23 } 18 }
(...skipping 19 matching lines...) Expand all
43 38
44 #autofill-options .list-inline-button { 39 #autofill-options .list-inline-button {
45 margin-top: 0; 40 margin-top: 0;
46 vertical-align: top; 41 vertical-align: top;
47 } 42 }
48 43
49 #autofill-options div[role='listitem']:not(:hover):not([selected]) 44 #autofill-options div[role='listitem']:not(:hover):not([selected])
50 .list-inline-button { 45 .list-inline-button {
51 display: none; 46 display: none;
52 } 47 }
48
49 #autofill-options .spacer-div {
Evan Stade 2014/10/29 23:51:57 why two rules for the same thing?
Garrett Casto 2014/10/30 00:14:44 Wasn't sure what the right place to put a shared r
Evan Stade 2014/10/31 18:23:31 seems legit
50 -webkit-box-flex: 1;
51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698