Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2724)

Unified Diff: chrome/browser/resources/print_preview/search/destination_search.css

Issue 10450022: Print Preview Print Destination Search Widget (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Set --bary flag Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
+}

Powered by Google App Engine
This is Rietveld 408576698