1/* Copyright (c) 2012 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#sync-search-query {
6  width: 20em;
7}
8
9#sync-search-query[error] {
10  background-color: rgb(255,170,170);
11}
12
13#sync-search-status {
14  color: rgb(51,51,51);
15  font-style: italic;
16}
17
18#sync-results-container {
19  display: -webkit-box;
20  /* Should be > #sync-page's min-height. */
21  /* TODO(akalin): Find a less hacky way to do this. */
22  height: 750px;
23}
24
25#sync-results-list {
26  -webkit-padding-start: 10px;
27  box-sizing: border-box;
28  height: 100%;
29  /* min-width and max-width are used by the split pane. */
30  max-width: 50%;
31  min-width: 50px;
32  overflow: auto;
33  padding: 5px;
34  width: 275px;
35}
36
37#sync-results-splitter {
38  background-color: rgb(235, 239, 249);
39  cursor: col-resize;
40<if expr="is_win">
41  /* TODO(akalin): Make the BMM also use this style. */
42  cursor: e-resize;
43</if>
44  width: 5px;
45}
46
47#sync-result-details-container {
48  -webkit-box-flex: 1;
49  height: 100%;
50  overflow: auto;
51  /* TODO(akalin): Figure out why this is needed, even with box-flex: 1. */
52  width: 100%;
53}
54