OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |