| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2012 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 #advancedPage .section-group:not(:first-child) { | 7 #advancedPage .section-group:not(:first-child) { |
| 8 margin-top: 10px; | 8 margin-top: 10px; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 } | 33 } |
| 34 | 34 |
| 35 /* This is necessary because the fix for correctly wrapping labels | 35 /* This is necessary because the fix for correctly wrapping labels |
| 36 * (crbug.com/109334) requires labels to be display: block; however, this label | 36 * (crbug.com/109334) requires labels to be display: block; however, this label |
| 37 * has a buttom inline after it. | 37 * has a buttom inline after it. |
| 38 */ | 38 */ |
| 39 #autofill-label, | 39 #autofill-label, |
| 40 #password-manager-label { | 40 #password-manager-label { |
| 41 display: inline; | 41 display: inline; |
| 42 } | 42 } |
| 43 |
| 44 #timezone-value { |
| 45 display: inline-block; |
| 46 vertical-align: baseline; |
| 47 } |
| OLD | NEW |