OLD | NEW |
(Empty) | |
| 1 /* |
| 2 Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. |
| 5 */ |
| 6 |
| 7 #sync-search-query { |
| 8 width: 20em; |
| 9 } |
| 10 |
| 11 #sync-search-status { |
| 12 color: #333; |
| 13 font-style: italic; |
| 14 } |
| 15 |
| 16 #sync-results-container { |
| 17 display: -webkit-box; |
| 18 /* Should be > #sync-page's min-height. */ |
| 19 /* TODO(akalin): Find a less hacky way to do this. */ |
| 20 height: 750px; |
| 21 } |
| 22 |
| 23 #sync-results-list { |
| 24 height: 100%; |
| 25 width: 275px; |
| 26 /* min-width and max-width are used by the split pane. */ |
| 27 min-width: 50px; |
| 28 max-width: 50%; |
| 29 overflow: auto; |
| 30 box-sizing: border-box; |
| 31 padding: 5px; |
| 32 -webkit-padding-start: 10px; |
| 33 } |
| 34 |
| 35 #sync-results-splitter { |
| 36 width: 5px; |
| 37 background-color: #ebeff9; |
| 38 cursor: col-resize; |
| 39 } |
| 40 |
| 41 /* Platform annotations are set in sync_node_browser.js. */ |
| 42 /* TODO(akalin): Make the BMM also use this style. */ |
| 43 html[os=win] #sync-results-splitter { |
| 44 cursor: e-resize; |
| 45 } |
| 46 |
| 47 #sync-result-details-container { |
| 48 height: 100%; |
| 49 overflow: auto; |
| 50 -webkit-box-flex: 1; |
| 51 |
| 52 /* TODO(akalin): Figure out why this is needed, even with box-flex: 1. */ |
| 53 width: 100%; |
| 54 } |
OLD | NEW |