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

Unified Diff: chrome/browser/resources/print_preview/search/destination_list_item.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_list_item.css
diff --git a/chrome/browser/resources/print_preview/search/destination_list_item.css b/chrome/browser/resources/print_preview/search/destination_list_item.css
new file mode 100644
index 0000000000000000000000000000000000000000..25d2dc2b25043eddfeb927b2dbd52c828c56efff
--- /dev/null
+++ b/chrome/browser/resources/print_preview/search/destination_list_item.css
@@ -0,0 +1,34 @@
+/* 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-list-item {
+ -webkit-padding-end: 2px;
+ -webkit-padding-start: 18px;
+ -webkit-transition: background-color 150ms;
+ cursor: default;
+ padding-bottom: 3px;
+ padding-top: 3px;
+}
+
+.destination-list-item:hover {
+ background-color: rgb(228, 236, 247);
+}
+
+.destination-list-item-icon {
+ -webkit-margin-end: 8px;
+ -webkit-transition: opacity 150ms;
+ display: inline-block;
+ height: 24px;
+ opacity: 0.4;
+ vertical-align: middle;
+ width: 24px;
+}
+
+.destination-list-item:hover .destination-list-item-icon {
+ opacity: 1;
+}
+
+.destination-list-item-name {
+ vertical-align: middle;
+}

Powered by Google App Engine
This is Rietveld 408576698