OLD | NEW |
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 Loading... |
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: none; | 43 display: block; |
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 } |
54 | 54 |
55 #spinner-container > .spinner { | 55 #spinner-container > .spinner { |
56 background: 100% url(../../file_manager/foreground/images/common/spinner.svg); | 56 background: url(chrome://resources/images/throbber.svg) center/100% no-repeat; |
57 height: 32px; | 57 height: 32px; |
58 left: 50%; | 58 left: 50%; |
59 margin-left: -16px; | 59 margin-left: -16px; |
60 margin-top: -16px; | 60 margin-top: -16px; |
61 position: absolute; | 61 position: absolute; |
62 top: 50%; | 62 top: 50%; |
63 width: 32px; | 63 width: 32px; |
64 } | 64 } |
65 | 65 |
66 video { | 66 video { |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 } |
OLD | NEW |