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

Side by Side Diff: chrome/browser/resources/file_manager/js/image_editor/media_controls.css

Issue 9298009: Implementing full screen mode for video player in Chrome OS File Browser. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Copyright fix Created 8 years, 10 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 /* 1 /*
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 .media-controls { 7 .media-controls {
8 height: 30px; 8 height: 30px;
9 border-radius: 5px; 9 border-radius: 5px;
10 10
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 position: relative; 195 position: relative;
196 height: 100%; 196 height: 100%;
197 width: 80px; 197 width: 80px;
198 } 198 }
199 199
200 .media-controls .fullscreen { 200 .media-controls .fullscreen {
201 background-image: url(../../images/mediaplayer_full_screen.png); 201 background-image: url(../../images/mediaplayer_full_screen.png);
202 background-position: 4px 4px; 202 background-position: 4px 4px;
203 } 203 }
204 204
205 .media-controls .fullscreen.on { 205 body:-webkit-full-screen .media-controls .fullscreen {
206 background-image: url(../../images/mediaplayer_full_screen_exit.png); 206 background-image: url(../../images/mediaplayer_full_screen_exit.png);
207 background-position: 4px 4px; 207 background-position: 4px 4px;
208 } 208 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698