OLD | NEW |
(Empty) | |
| 1 /* Copyright (c) 2014 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ |
| 4 |
| 5 #advanced-settings { |
| 6 z-index: 3; |
| 7 } |
| 8 |
| 9 #advanced-settings.transparent { |
| 10 opacity: 0; |
| 11 overflow: hidden; |
| 12 pointer-events: none; |
| 13 } |
| 14 |
| 15 #advanced-settings .page { |
| 16 width: 640px; |
| 17 } |
| 18 |
| 19 #advanced-settings > .page > .close-button { |
| 20 top: 9px; |
| 21 } |
| 22 |
| 23 #advanced-settings .search-box { |
| 24 -webkit-user-select: none; |
| 25 margin: 14px; |
| 26 } |
| 27 |
| 28 #advanced-settings .lists { |
| 29 flex: 1; |
| 30 overflow-y: auto; |
| 31 } |
| 32 |
| 33 #advanced-settings .lists > * { |
| 34 -webkit-user-select: none; |
| 35 padding: 0 14px 18px; |
| 36 } |
OLD | NEW |