| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
| 4 | 4 |
| 5 #sync-node-main { | 5 #sync-node-main { |
| 6 display: -webkit-box; | 6 display: -webkit-box; |
| 7 /* Should be > #sync-page's min-height. */ | 7 /* Should be > #sync-page's min-height. */ |
| 8 /* TODO(akalin): Find a less hacky way to do this. */ | 8 /* TODO(akalin): Find a less hacky way to do this. */ |
| 9 height: 750px; | 9 height: 750px; |
| 10 } | 10 } |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 min-width: 100%; | 26 min-width: 100%; |
| 27 overflow: visible; /* let the container do the scrolling */ | 27 overflow: visible; /* let the container do the scrolling */ |
| 28 } | 28 } |
| 29 | 29 |
| 30 /* TODO(akalin): Find a better icon to use for leaf nodes. */ | 30 /* TODO(akalin): Find a better icon to use for leaf nodes. */ |
| 31 #sync-node-tree .leaf .tree-label { | 31 #sync-node-tree .leaf .tree-label { |
| 32 background-image: url('../shared/images/star_small.png'); | 32 background-image: url('../shared/images/star_small.png'); |
| 33 } | 33 } |
| 34 | 34 |
| 35 #sync-node-splitter { | 35 #sync-node-splitter { |
| 36 background-color: #ebeff9; | 36 background-color: rgb(235, 239, 249); |
| 37 cursor: col-resize; | 37 cursor: col-resize; |
| 38 width: 5px; | 38 width: 5px; |
| 39 <if expr="is_win"> | 39 <if expr="is_win"> |
| 40 /* TODO(akalin): Make the BMM also use this style. */ | 40 /* TODO(akalin): Make the BMM also use this style. */ |
| 41 cursor: e-resize; | 41 cursor: e-resize; |
| 42 </if> | 42 </if> |
| 43 } | 43 } |
| 44 | 44 |
| 45 #sync-node-browser-container { | 45 #sync-node-browser-container { |
| 46 -webkit-box-flex: 1; | 46 -webkit-box-flex: 1; |
| 47 height: 100%; | 47 height: 100%; |
| 48 overflow: auto; | 48 overflow: auto; |
| 49 } | 49 } |
| 50 | 50 |
| 51 #node-browser { | 51 #node-browser { |
| 52 width: 100%; | 52 width: 100%; |
| 53 } | 53 } |
| 54 | 54 |
| 55 #node-browser td { | 55 #node-browser td { |
| 56 vertical-align: top; | 56 vertical-align: top; |
| 57 } | 57 } |
| 58 | 58 |
| 59 #node-browser tr:nth-child(odd) { | 59 #node-browser tr:nth-child(odd) { |
| 60 background: #eff3ff; | 60 background: rgb(239, 243, 255); |
| 61 } | 61 } |
| OLD | NEW |