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

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

Issue 10108001: Refactor print preview web ui (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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..1a88f57e103045406732952728dcbcf9c3248eec
--- /dev/null
+++ b/chrome/browser/resources/print_preview/search/destination_search.css
@@ -0,0 +1,53 @@
+/* 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-page {
+ width: 700px;
+ height: 640px;
+}
+
+.destination-search-user-info {
+ white-space: nowrap;
+ position: absolute;
+ right: 80px;
+ top: 16px;
+}
+
+.destination-search-search-box-container {
+ margin: 14px;
+}
+
+.destination-search-lists {
+ -webkit-box-flex: 1;
+ overflow-y: auto;
+}
+
+.destination-search-recent-list,
+.destination-search-local-list,
+.destination-search-cloud-list {
+ padding: 0 14px 18px;
+}
+
+.destination-search-cloudprint-promo {
+ background-color: #F9EDBE;
+ padding: 12px 14px;
+ text-align: center;
+}
+
+.destination-search-cloudprint-promo > * {
+ vertical-align: middle;
+}
+
+.destination-search-cloud-icon {
+ background-color: purple;
+ display: inline-block;
+ width: 24px;
+ height: 24px;
+ margin-right: 4px;
+}

Powered by Google App Engine
This is Rietveld 408576698