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

Unified Diff: ui/file_manager/video_player/css/cast_menu.css

Issue 381073003: Video Player: Add a cast menu (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed the comment Created 6 years, 5 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
« no previous file with comments | « no previous file | ui/file_manager/video_player/css/header.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/file_manager/video_player/css/cast_menu.css
diff --git a/ui/file_manager/video_player/css/cast_menu.css b/ui/file_manager/video_player/css/cast_menu.css
new file mode 100644
index 0000000000000000000000000000000000000000..42006d64e63a45f8f5f7f8e122bcf2a7d23bb7a6
--- /dev/null
+++ b/ui/file_manager/video_player/css/cast_menu.css
@@ -0,0 +1,28 @@
+/* Copyright 2014 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. */
+
+.cast-menu {
+ border: 1px solid #7f7f7f;
+ border-radius: 1px;
+ min-width: 120px;
+ padding: 0;
+ position: absolute;
+ z-index: 1000;
+}
+
+.cast-menu.hidden {
+ display: none;
+}
+
+.cast-menu > :not(hr) {
+ background-color: #fff;
+ font-size: 12px;
+ padding: 5px 10px; /* top&bottom, left&right */
+ text-overflow: ellipsis;
+}
+
+.cast-menu > :not(hr):hover {
+ background-color: #eee;
+}
+
« no previous file with comments | « no previous file | ui/file_manager/video_player/css/header.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698