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

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

Issue 397813004: Video Player: Add a message which is shown on casting (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed the comments 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
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 #video-player > .header { 5 #video-player > .header {
6 -webkit-app-region: drag; 6 -webkit-app-region: drag;
7 background: rgba(30, 30, 30, 0.8); 7 background: rgba(30, 30, 30, 0.8);
8 border-bottom: 1px solid rgba(50, 50, 50, 0.8); 8 border-bottom: 1px solid rgba(50, 50, 50, 0.8);
9 display: flex; 9 display: flex;
10 flex-direction: row; 10 flex-direction: row;
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 min-width: 32px; 68 min-width: 32px;
69 width: 32px; 69 width: 32px;
70 } 70 }
71 71
72 #video-player > .header > button.cast-button { 72 #video-player > .header > button.cast-button {
73 background-image: -webkit-image-set( 73 background-image: -webkit-image-set(
74 url(../images/100/cast_off.png) 1x, 74 url(../images/100/cast_off.png) 1x,
75 url(../images/200/cast_off.png) 2x); 75 url(../images/200/cast_off.png) 2x);
76 } 76 }
77 77
78 #video-player[casting] > .header > button.cast-button {
79 background-image: -webkit-image-set(
80 url(../images/100/cast_on.png) 1x,
81 url(../images/200/cast_on.png) 2x);
82 }
83
78 #video-player > .header > button.cast-button.hidden { 84 #video-player > .header > button.cast-button.hidden {
79 display: none; 85 display: none;
80 } 86 }
81 87
82 #video-player > .header > button.minimize-button { 88 #video-player > .header > button.minimize-button {
83 background-image: -webkit-image-set( 89 background-image: -webkit-image-set(
84 url(chrome://resources/images/apps/topbar_button_minimize.png) 1x, 90 url(chrome://resources/images/apps/topbar_button_minimize.png) 1x,
85 url(chrome://resources/images/2x/apps/topbar_button_minimize.png) 2x); 91 url(chrome://resources/images/2x/apps/topbar_button_minimize.png) 2x);
86 } 92 }
87 93
88 #video-player > .header > button.maximize-button { 94 #video-player > .header > button.maximize-button {
89 background-image: -webkit-image-set( 95 background-image: -webkit-image-set(
90 url(chrome://resources/images/apps/topbar_button_maximize.png) 1x, 96 url(chrome://resources/images/apps/topbar_button_maximize.png) 1x,
91 url(chrome://resources/images/2x/apps/topbar_button_maximize.png) 2x); 97 url(chrome://resources/images/2x/apps/topbar_button_maximize.png) 2x);
92 } 98 }
93 99
94 #video-player > .header > button.close-button { 100 #video-player > .header > button.close-button {
95 background-image: -webkit-image-set( 101 background-image: -webkit-image-set(
96 url(chrome://resources/images/apps/topbar_button_close.png) 1x, 102 url(chrome://resources/images/apps/topbar_button_close.png) 1x,
97 url(chrome://resources/images/2x/apps/topbar_button_close.png) 2x); 103 url(chrome://resources/images/2x/apps/topbar_button_close.png) 2x);
98 } 104 }
OLDNEW
« no previous file with comments | « ui/file_manager/video_player/css/cast_menu.css ('k') | ui/file_manager/video_player/css/video_player.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698