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

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

Issue 1141183004: [VideoPlayer] Hide the spinner on playing the video (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 body { 5 body {
6 -webkit-user-select: none; 6 -webkit-user-select: none;
7 background: black; 7 background: black;
8 font-size: 84%; 8 font-size: 84%;
9 margin: 0; 9 margin: 0;
10 overflow: hidden; 10 overflow: hidden;
(...skipping 22 matching lines...) Expand all
33 position: absolute; 33 position: absolute;
34 top: 0; 34 top: 0;
35 width: 100%; 35 width: 100%;
36 } 36 }
37 37
38 #video-player[loading] #video-container { 38 #video-player[loading] #video-container {
39 display: none; 39 display: none;
40 } 40 }
41 41
42 #spinner-container { 42 #spinner-container {
43 display: block; 43 display: none;
44 height: 100%; 44 height: 100%;
45 left: 0; 45 left: 0;
46 position: absolute; 46 position: absolute;
47 top: 0; 47 top: 0;
48 width: 100%; 48 width: 100%;
49 } 49 }
50 50
51 #video-player[loading] #spinner-container { 51 #video-player[loading] #spinner-container {
52 display: block; 52 display: block;
53 } 53 }
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 color: white; 168 color: white;
169 display: -webkit-box; 169 display: -webkit-box;
170 height: 54px; 170 height: 54px;
171 padding-left: 70px; 171 padding-left: 70px;
172 padding-right: 35px; 172 padding-right: 35px;
173 } 173 }
174 174
175 #error:not([visible]) { 175 #error:not([visible]) {
176 display: none; 176 display: none;
177 } 177 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698