Chromium Code Reviews| 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..520fae7ab4eee85d6972d828fc5da255b35020f0 |
| --- /dev/null |
| +++ b/chrome/browser/resources/print_preview/search/destination_search.css |
| @@ -0,0 +1,79 @@ |
| +/* 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; |
| +} |
| + |
| +.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-user-select: none; |
| + background-color: rgb(249, 237, 190); |
| + padding: 12px 44px 12px 12px; |
|
Dan Beam
2012/05/29 21:25:50
rtl
Robert Toscano
2012/05/30 21:08:00
Done.
|
| + position: relative; |
| +} |
| + |
| +.destination-search-cloudprint-promo > * { |
| + vertical-align: middle; |
| +} |
| + |
| +.destination-search-sign-in.link-button { |
| + padding: inherit; |
| +} |
| + |
| +.destination-search-cloud-icon { |
| + display: inline-block; |
| + height: 24px; |
| + margin-right: 4px; |
|
Dan Beam
2012/05/29 21:25:50
rtl
Robert Toscano
2012/05/30 21:08:00
Done.
|
| + width: 24px; |
| +} |
| + |
| +.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
|
| + 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.
|
| + height: 24px; |
| + margin-top: -9px; |
| + position: absolute; |
| + right: 10px; |
| + top: 50%; |
| + width: 24px; |
| +} |
| + |
| +.destination-search-cloudprint-promo-close-button:hover { |
| + background-image: url('chrome://resources/images/x-hover.png'); |
| +} |