Chromium Code Reviews| 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..c77357ac1e717535aaa8e015f8575f0accf81a19 |
| --- /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 { |
| + position: absolute; |
|
fukino
2014/07/11 04:35:50
nit: properties should be sorted.
|
| + border: 1px solid #7f7f7f; |
| + border-radius: 1px; |
| + min-width: 120px; |
| + padding: 0; |
| + z-index: 1000; |
| +} |
| + |
| +.cast-menu.hidden { |
| + display: none; |
| +} |
| + |
| +.cast-menu > :not(hr) { |
| + background-color: #ffffff; |
|
fukino
2014/07/11 04:35:50
nit: using shorthand notation '#fff' is encouraged
|
| + font-size: 12px; |
| + padding: 5px 10px; /* top&bottom, left&right */ |
| + text-overflow: ellipsis; |
| +} |
| + |
| +.cast-menu > :not(hr):hover { |
| + background-color: #eeeeee; |
|
fukino
2014/07/11 04:35:50
ditto: '#eee'
|
| +} |
| + |