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
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: 500px;
17}
18
19#advanced-settings > .page > .close-button {
20  top: 9px;
21}
22
23#advanced-settings .search-box-area {
24  padding: 15px 17px;
25}
26
27#advanced-settings .search-box {
28  -webkit-user-select: none;
29}
30
31#advanced-settings .no-settings-match-hint {
32  -webkit-padding-start: 17px;
33  color: #999;
34  padding-bottom: 8px;
35  padding-top: 8px;
36}
37
38#advanced-settings .settings-area {
39  overflow-y: auto;
40  padding: 0 17px;
41}
42
43#advanced-settings .settings {
44  border-spacing: 0;
45  display: table;
46  position: relative;
47  width: 100%;
48}
49
50.advanced-settings-item-extra-padding {
51  display: table-row;
52  height: 15px;
53}
54