| 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; | |
| 7 background: black; | 6 background: black; |
| 8 font-size: 84%; | 7 font-size: 84%; |
| 9 margin: 0; | 8 margin: 0; |
| 10 overflow: hidden; | 9 overflow: hidden; |
| 10 user-select: none; |
| 11 } | 11 } |
| 12 | 12 |
| 13 #video-player { | 13 #video-player { |
| 14 height: 100%; | 14 height: 100%; |
| 15 left: 0; | 15 left: 0; |
| 16 position: absolute; | 16 position: absolute; |
| 17 top: 0; | 17 top: 0; |
| 18 width: 100%; | 18 width: 100%; |
| 19 } | 19 } |
| 20 | 20 |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 color: white; | 165 color: white; |
| 166 display: -webkit-box; | 166 display: -webkit-box; |
| 167 height: 54px; | 167 height: 54px; |
| 168 padding-left: 70px; | 168 padding-left: 70px; |
| 169 padding-right: 35px; | 169 padding-right: 35px; |
| 170 } | 170 } |
| 171 | 171 |
| 172 #error:not([visible]) { | 172 #error:not([visible]) { |
| 173 display: none; | 173 display: none; |
| 174 } | 174 } |
| OLD | NEW |