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

Side by Side Diff: ui/file_manager/video_player/css/cast_menu.css

Issue 456653002: Video Player: Show a checkmark on the currently playing device in cast menu (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed the comment Created 6 years, 4 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
« no previous file with comments | « no previous file | ui/file_manager/video_player/js/video_player.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright 2014 The Chromium Authors. All rights reserved. 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 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 .cast-menu { 5 .cast-menu {
6 border: 1px solid #7f7f7f; 6 border: 1px solid #7f7f7f;
7 border-radius: 1px; 7 border-radius: 1px;
8 min-width: 120px; 8 min-width: 120px;
9 padding: 0; 9 padding: 0;
10 position: absolute; 10 position: absolute;
11 z-index: 1000; 11 z-index: 1000;
12 } 12 }
13 13
14 .cast-menu.hidden { 14 .cast-menu.hidden {
15 display: none; 15 display: none;
16 } 16 }
17 17
18 .cast-menu > :not(hr) { 18 .cast-menu > :not(hr) {
19 -webkit-padding-end: 14px;
20 -webkit-padding-start: 19px;
19 background-color: #fff; 21 background-color: #fff;
20 font-size: 12px; 22 font-size: 12px;
21 padding: 5px 10px; /* top&bottom, left&right */ 23 padding-bottom: 5px;
24 padding-top: 5px;
22 text-overflow: ellipsis; 25 text-overflow: ellipsis;
23 } 26 }
24 27
28 .cast-menu > [checked]:not(hr) {
29 /* A checkmark has 19 px width. */
30 -webkit-padding-start: 0;
31 }
32
25 .cast-menu > :not(hr):hover { 33 .cast-menu > :not(hr):hover {
26 background-color: #eee; 34 background-color: #eee;
27 } 35 }
OLDNEW
« no previous file with comments | « no previous file | ui/file_manager/video_player/js/video_player.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698