OLD | NEW |
(Empty) | |
| 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 |
| 6 .destination-search { |
| 7 z-index: 3; |
| 8 } |
| 9 |
| 10 .destination-search-page { |
| 11 width: 700px; |
| 12 height: 640px; |
| 13 } |
| 14 |
| 15 .destination-search-user-info { |
| 16 white-space: nowrap; |
| 17 position: absolute; |
| 18 right: 80px; |
| 19 top: 16px; |
| 20 } |
| 21 |
| 22 .destination-search-search-box-container { |
| 23 margin: 14px; |
| 24 } |
| 25 |
| 26 .destination-search-lists { |
| 27 -webkit-box-flex: 1; |
| 28 overflow-y: auto; |
| 29 } |
| 30 |
| 31 .destination-search-recent-list, |
| 32 .destination-search-local-list, |
| 33 .destination-search-cloud-list { |
| 34 padding: 0 14px 18px; |
| 35 } |
| 36 |
| 37 .destination-search-cloudprint-promo { |
| 38 background-color: #F9EDBE; |
| 39 padding: 12px 14px; |
| 40 text-align: center; |
| 41 } |
| 42 |
| 43 .destination-search-cloudprint-promo > * { |
| 44 vertical-align: middle; |
| 45 } |
| 46 |
| 47 .destination-search-cloud-icon { |
| 48 background-color: purple; |
| 49 display: inline-block; |
| 50 width: 24px; |
| 51 height: 24px; |
| 52 margin-right: 4px; |
| 53 } |
OLD | NEW |