| Index: chrome/browser/resources/print_preview/search/destination_search.css
|
| diff --git a/chrome/browser/resources/print_preview/search/destination_search.css b/chrome/browser/resources/print_preview/search/destination_search.css
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2a93e687afa90a9ae39fd99f213ccb46a581f32c
|
| --- /dev/null
|
| +++ b/chrome/browser/resources/print_preview/search/destination_search.css
|
| @@ -0,0 +1,91 @@
|
| +/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| + * Use of this source code is governed by a BSD-style license that can be
|
| + * found in the LICENSE file. */
|
| +
|
| +.destination-search {
|
| + z-index: 3;
|
| +}
|
| +
|
| +.destination-search.transparent {
|
| + opacity: 0;
|
| + pointer-events: none;
|
| +}
|
| +
|
| +.destination-search-page {
|
| + height: 640px;
|
| + width: 700px;
|
| +}
|
| +
|
| +.destination-search-user-info {
|
| + -webkit-user-select: none;
|
| + position: absolute;
|
| + right: 80px;
|
| + top: 16px;
|
| + white-space: nowrap;
|
| +}
|
| +
|
| +[dir='rtl'] .destination-search-user-info {
|
| + left: 80px;
|
| + right: auto;
|
| +}
|
| +
|
| +.destination-search-search-box-container {
|
| + -webkit-user-select: none;
|
| + margin: 14px;
|
| +}
|
| +
|
| +.destination-search-lists {
|
| + -webkit-box-flex: 1;
|
| + overflow-y: auto;
|
| +}
|
| +
|
| +.destination-search-recent-list,
|
| +.destination-search-local-list,
|
| +.destination-search-cloud-list {
|
| + -webkit-user-select: none;
|
| + padding: 0 14px 18px;
|
| +}
|
| +
|
| +.destination-search-cloudprint-promo {
|
| + -webkit-padding-end: 44px;
|
| + -webkit-padding-start: 12px;
|
| + -webkit-user-select: none;
|
| + background-color: rgb(249, 237, 190);
|
| + padding-bottom: 12px;
|
| + padding-top: 12px;
|
| + position: relative;
|
| +}
|
| +
|
| +.destination-search-cloudprint-promo > * {
|
| + vertical-align: middle;
|
| +}
|
| +
|
| +.destination-search-sign-in.link-button {
|
| + padding: inherit;
|
| +}
|
| +
|
| +.destination-search-cloud-icon {
|
| + -webkit-margin-end: 4px;
|
| + display: inline-block;
|
| + height: 24px;
|
| + width: 24px;
|
| +}
|
| +
|
| +.destination-search-cloudprint-promo-close-button {
|
| + background-image: url(chrome://resources/images/x.png);
|
| + height: 24px;
|
| + margin-top: -9px;
|
| + position: absolute;
|
| + right: 10px;
|
| + top: 50%;
|
| + width: 24px;
|
| +}
|
| +
|
| +[dir='rtl'] .destination-search-cloudprint-promo-close-button {
|
| + left: 10px;
|
| + right: auto;
|
| +}
|
| +
|
| +.destination-search-cloudprint-promo-close-button:hover {
|
| + background-image: url(chrome://resources/images/x-hover.png);
|
| +}
|
|
|