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

Side by Side 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: 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 /* Copyright 2014 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
4
5 .cast-menu {
6 position: absolute;
fukino 2014/07/11 04:35:50 nit: properties should be sorted.
7 border: 1px solid #7f7f7f;
8 border-radius: 1px;
9 min-width: 120px;
10 padding: 0;
11 z-index: 1000;
12 }
13
14 .cast-menu.hidden {
15 display: none;
16 }
17
18 .cast-menu > :not(hr) {
19 background-color: #ffffff;
fukino 2014/07/11 04:35:50 nit: using shorthand notation '#fff' is encouraged
20 font-size: 12px;
21 padding: 5px 10px; /* top&bottom, left&right */
22 text-overflow: ellipsis;
23 }
24
25 .cast-menu > :not(hr):hover {
26 background-color: #eeeeee;
fukino 2014/07/11 04:35:50 ditto: '#eee'
27 }
28
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698