| 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;
|
| +}
|
| +
|
|
|