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

Unified Diff: chrome/browser/resources/print_preview/settings/destination_settings.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/settings/destination_settings.css
diff --git a/chrome/browser/resources/print_preview/settings/destination_settings.css b/chrome/browser/resources/print_preview/settings/destination_settings.css
new file mode 100644
index 0000000000000000000000000000000000000000..9d732d8c216d7daf606422f183e3b2622dfbbb80
--- /dev/null
+++ b/chrome/browser/resources/print_preview/settings/destination_settings.css
@@ -0,0 +1,61 @@
+/* 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-settings-box {
+ display: -webkit-box;
+}
+
+.destination-settings-icon {
+ -webkit-margin-end: 8px;
+ height: 32px;
+ opacity: 0.4;
+ width: 32px;
+}
+
+.destination-settings-icon-local {
+ background-image: url(images/classic_printer_32.png);
+}
+
+.destination-settings-icon-cloud {
+ background-image: url(images/cloud_printer_32.png);
+}
+
+.destination-settings-icon-cloud-shared {
+ background-image: url(images/cloud_printer_shared_32.png);
+}
+
+.destination-settings-icon-google-promoted {
+ background-image: url(images/google_promoted_printer_32.png);
+}
+
+.destination-settings-icon-mobile {
+ background-image: url(images/mobile_32.png);
+}
+
+.destination-settings-icon-mobile-shared {
+ background-image: url(images/mobile_shared_32.png);
+}
+
+.destination-settings-info {
+ -webkit-box-flex: 1;
+ position: relative;
+ white-space: nowrap;
+}
+
+.destination-settings-name {
+ font-size: 110%;
+ overflow: hidden;
+ position: absolute;
+ text-overflow: ellipsis;
+ width: 100%;
+}
+
+.destination-settings-location {
+ color: gray;
+ overflow: hidden;
+ position: absolute;
+ text-overflow: ellipsis;
+ top: 1.5em;
+ width: 100%;
+}

Powered by Google App Engine
This is Rietveld 408576698