Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 #manage-passwords-link { | |
| 31 text-decoration: none; | |
|
Evan Stade
2014/10/28 22:50:48
pretty sure this rule should not be here. Links to
Garrett Casto
2014/10/28 23:18:55
Okay. Mocks had this without the underline and I s
| |
| 32 } | |
| 33 | |
| 34 #manage-passwords-span { | |
|
Evan Stade
2014/10/28 22:50:48
don't think you need this either. The span should
Garrett Casto
2014/10/28 23:18:55
To be clear, are you saying that this isn't necess
Evan Stade
2014/10/28 23:26:01
both places should add a spacer div right after th
Garrett Casto
2014/10/29 20:25:46
Sounds good. Unfortunately this fails in PRESUBMIT
Evan Stade
2014/10/29 21:28:28
I think it's ok to ignore this PRESUBMIT check.
| |
| 35 bottom: 18px; | |
| 36 position: absolute; | |
| 37 } | |
| OLD | NEW |