Chromium Code Reviews| 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.transparent { | |
| 11 opacity: 0; | |
| 12 pointer-events: none; | |
| 13 } | |
| 14 | |
| 15 .destination-search-page { | |
| 16 height: 640px; | |
| 17 width: 700px; | |
| 18 } | |
| 19 | |
| 20 .destination-search-user-info { | |
| 21 -webkit-user-select: none; | |
| 22 position: absolute; | |
| 23 right: 80px; | |
| 24 top: 16px; | |
| 25 white-space: nowrap; | |
| 26 } | |
| 27 | |
| 28 .destination-search-search-box-container { | |
| 29 -webkit-user-select: none; | |
| 30 margin: 14px; | |
| 31 } | |
| 32 | |
| 33 .destination-search-lists { | |
| 34 -webkit-box-flex: 1; | |
| 35 overflow-y: auto; | |
| 36 } | |
| 37 | |
| 38 .destination-search-recent-list, | |
| 39 .destination-search-local-list, | |
| 40 .destination-search-cloud-list { | |
| 41 -webkit-user-select: none; | |
| 42 padding: 0 14px 18px; | |
| 43 } | |
| 44 | |
| 45 .destination-search-cloudprint-promo { | |
| 46 -webkit-user-select: none; | |
| 47 background-color: rgb(249, 237, 190); | |
| 48 padding: 12px 44px 12px 12px; | |
|
Dan Beam
2012/05/29 21:25:50
rtl
Robert Toscano
2012/05/30 21:08:00
Done.
| |
| 49 position: relative; | |
| 50 } | |
| 51 | |
| 52 .destination-search-cloudprint-promo > * { | |
| 53 vertical-align: middle; | |
| 54 } | |
| 55 | |
| 56 .destination-search-sign-in.link-button { | |
| 57 padding: inherit; | |
| 58 } | |
| 59 | |
| 60 .destination-search-cloud-icon { | |
| 61 display: inline-block; | |
| 62 height: 24px; | |
| 63 margin-right: 4px; | |
|
Dan Beam
2012/05/29 21:25:50
rtl
Robert Toscano
2012/05/30 21:08:00
Done.
| |
| 64 width: 24px; | |
| 65 } | |
| 66 | |
| 67 .destination-search-cloudprint-promo-close-button { | |
|
Dan Beam
2012/05/29 21:25:50
really long class
Robert Toscano
2012/05/29 22:17:36
See css-paranoia
| |
| 68 background-image: url('chrome://resources/images/x.png'); | |
|
Dan Beam
2012/05/29 21:25:50
nit: btw, you don't need ' inside of url()s, just
Robert Toscano
2012/05/29 22:17:36
Done.
| |
| 69 height: 24px; | |
| 70 margin-top: -9px; | |
| 71 position: absolute; | |
| 72 right: 10px; | |
| 73 top: 50%; | |
| 74 width: 24px; | |
| 75 } | |
| 76 | |
| 77 .destination-search-cloudprint-promo-close-button:hover { | |
| 78 background-image: url('chrome://resources/images/x-hover.png'); | |
| 79 } | |
| OLD | NEW |