Roll src/third_party/WebKit 9f7fb92:f103b33 (svn 202621:202622)
[chromium-blink-merge.git] / components / sync_driver / resources / sync_search.css
blob24c955b97d6f537da429db90977dc04073948d16
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. */
5 #sync-search-query {
6 width: 16em;
9 #sync-search-query[error] {
10 background-color: rgb(255,170,170);
13 .sync-search-quicklink {
14 background-color: rgb(239,243,255);
15 padding-left: 10px;
16 padding-right: 10px;
19 #sync-search-status {
20 color: rgb(51,51,51);
21 font-style: italic;
24 #sync-results-container {
25 display: -webkit-box;
26 /* Should be > #sync-page's min-height. */
27 /* TODO(akalin): Find a less hacky way to do this. */
28 height: 750px;
31 #sync-results-list {
32 -webkit-padding-start: 10px;
33 box-sizing: border-box;
34 height: 100%;
35 /* min-width and max-width are used by the split pane. */
36 max-width: 50%;
37 min-width: 50px;
38 overflow: auto;
39 padding: 5px;
40 width: 275px;
43 #sync-results-splitter {
44 background-color: rgb(235, 239, 249);
45 cursor: col-resize;
46 <if expr="is_win">
47 /* TODO(akalin): Make the BMM also use this style. */
48 cursor: e-resize;
49 </if>
50 width: 5px;
53 #sync-result-details-container {
54 -webkit-box-flex: 1;
55 height: 100%;
56 overflow: auto;
57 /* TODO(akalin): Figure out why this is needed, even with box-flex: 1. */
58 width: 100%;