OLD | NEW |
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 #advanced-settings { | 5 #advanced-settings { |
6 z-index: 3; | 6 z-index: 3; |
7 } | 7 } |
8 | 8 |
9 #advanced-settings.transparent { | 9 #advanced-settings.transparent { |
10 opacity: 0; | 10 opacity: 0; |
(...skipping 18 matching lines...) Expand all Loading... |
29 } | 29 } |
30 | 30 |
31 #advanced-settings .settings-area { | 31 #advanced-settings .settings-area { |
32 overflow-y: auto; | 32 overflow-y: auto; |
33 padding: 0 17px; | 33 padding: 0 17px; |
34 } | 34 } |
35 | 35 |
36 #advanced-settings .settings { | 36 #advanced-settings .settings { |
37 border-spacing: 0; | 37 border-spacing: 0; |
38 display: table; | 38 display: table; |
| 39 position: relative; |
39 width: 100%; | 40 width: 100%; |
40 } | 41 } |
| 42 |
| 43 .advanced-settings-item-extra-padding { |
| 44 display: table-row; |
| 45 height: 15px; |
| 46 } |
OLD | NEW |