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

Unified Diff: chrome/browser/resources/media_router/elements/drop_down_button/drop_down_button.css

Issue 1032533002: Add Media Router drop-down-button. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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/media_router/elements/drop_down_button/drop_down_button.css
diff --git a/chrome/browser/resources/media_router/elements/drop_down_button/drop_down_button.css b/chrome/browser/resources/media_router/elements/drop_down_button/drop_down_button.css
new file mode 100644
index 0000000000000000000000000000000000000000..f8a0f56d563c6c9ace55cbae01b9244cd55702e9
--- /dev/null
+++ b/chrome/browser/resources/media_router/elements/drop_down_button/drop_down_button.css
@@ -0,0 +1,26 @@
+/* Copyright 2015 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. */
+
+#drop-down {
+ background: white;
+ background-image: -webkit-image-set(
+ url(../icon/drop-down-arrow.png) 1x,
+ url(../icon/drop-down-arrow2x.png) 2x);
+ background-repeat: no-repeat;
+ border: 1px solid rgb(192, 195, 198);
+ height: 18px;
+ width: 18px;
+}
+
+#drop-down:hover {
+ background-image: -webkit-image-set(
+ url(../icon/drop-down-arrow-hover.png) 1x,
+ url(../icon/drop-down-arrow-hover2x.png) 2x);
+}
+
+#drop-down.showing {
+ background-image: -webkit-image-set(
+ url(../icon/drop-down-arrow-showing.png) 1x,
+ url(../icon/drop-down-arrow-showing2x.png) 2x);
+}

Powered by Google App Engine
This is Rietveld 408576698