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

Side by Side Diff: chrome/browser/resources/file_manager/js/image_editor/gallery.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) 2011 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 body { 7 body {
8 margin: 0; 8 margin: 0;
9 -webkit-user-select: none; 9 -webkit-user-select: none;
10 font-family: Open Sans,Droid Sans Fallback,sans-serif; 10 font-family: Open Sans,Droid Sans Fallback,sans-serif;
11 font-size: 84%; 11 font-size: 84%;
12 } 12 }
13 13
14 .gallery { 14 .gallery {
15 background: black; 15 background: black;
16 position: absolute; 16 position: absolute;
17 width: 100%; 17 left: 0;
18 height: 100%; 18 right: 0;
19 top: 0;
20 bottom: 0;
19 overflow: hidden; 21 overflow: hidden;
20 } 22 }
21 23
22 /* Close button */ 24 /* Close button */
23 .gallery > .close { 25 .gallery > .close {
24 position: absolute; 26 position: absolute;
25 right: 5px; 27 right: 5px;
26 top: 5px; 28 top: 5px;
27 cursor: pointer; 29 cursor: pointer;
28 z-index: 200; 30 z-index: 200;
(...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after
763 } 765 }
764 766
765 .gallery[video] .toolbar .media-controls { 767 .gallery[video] .toolbar .media-controls {
766 display: -webkit-box; 768 display: -webkit-box;
767 } 769 }
768 770
769 .gallery[video] > .toolbar .button.edit, 771 .gallery[video] > .toolbar .button.edit,
770 .gallery[video] > .toolbar .ribbon { 772 .gallery[video] > .toolbar .ribbon {
771 display: none; 773 display: none;
772 } 774 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698