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-item {
6  cursor: default;
7  display: table-row;
8}
9
10.advanced-settings-item > * {
11  padding-bottom: 15px;
12  padding-top: 10px;
13}
14
15.advanced-settings-item-label {
16  -webkit-padding-end: 20px;
17  display: table-cell;
18  overflow: hidden;
19  text-overflow: ellipsis;
20  vertical-align: middle;
21  white-space: nowrap;
22  width: 250px;
23}
24
25.advanced-settings-item-name .search-hint {
26  -webkit-margin-start: 1em;
27  color: #999;
28  font-size: 75%;
29}
30
31.advanced-settings-item-query-highlight {
32  background-color: rgba(255, 240, 120, 0.9);
33}
34
35.advanced-settings-item-value {
36  display: table-cell;
37  overflow: hidden;
38  text-overflow: ellipsis;
39  vertical-align: middle;
40  white-space: nowrap;
41  width: 175px;
42}
43
44.advanced-settings-item-value-select-control {
45  line-height: 24px;
46}
47
48.advanced-settings-item-value-text-control {
49  height: 28px;
50  line-height: 24px;
51  width: 175px;
52}
53