Chromium Code Reviews| 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 /* Common styles for media buttons. */ | 5 /* Common styles for media buttons. */ |
| 6 | 6 |
| 7 .media-button { | 7 .media-button { |
| 8 background-position: center; | 8 background-position: center; |
| 9 background-repeat: no-repeat; | 9 background-repeat: no-repeat; |
| 10 flex: none; | 10 flex: none; |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 122 | 122 |
| 123 .video-controls { | 123 .video-controls { |
| 124 background: rgb(250, 250, 250); | 124 background: rgb(250, 250, 250); |
| 125 display: flex; | 125 display: flex; |
| 126 font-size: 13px; | 126 font-size: 13px; |
| 127 height: 32px; | 127 height: 32px; |
| 128 padding: 8px; | 128 padding: 8px; |
| 129 pointer-events: auto; | 129 pointer-events: auto; |
| 130 } | 130 } |
| 131 | 131 |
| 132 .video-controls .ripple { | |
|
yamaguchi
2016/11/07 09:15:13
Now I am seeing this doesn't work because style fo
| |
| 133 background-color: black; | |
| 134 } | |
| 135 | |
| 132 /* Cast button. */ | 136 /* Cast button. */ |
| 133 | 137 |
| 134 .media-button.cast, | 138 .media-button.cast, |
| 135 .media-button.cast-button { | 139 .media-button.cast-button { |
| 136 background-image: -webkit-image-set( | 140 background-image: -webkit-image-set( |
| 137 url(../images/media/media_chromecast.png) 1x, | 141 url(../images/media/media_chromecast.png) 1x, |
| 138 url(../images/media/2x/media_chromecast.png) 2x); | 142 url(../images/media/2x/media_chromecast.png) 2x); |
| 139 display: none; | 143 display: none; |
| 140 border-radius: 2px; | 144 border-radius: 2px; |
| 141 } | 145 } |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 273 url(../images/media/media_play_onscreen.png) 1x, | 277 url(../images/media/media_play_onscreen.png) 1x, |
| 274 url(../images/media/2x/media_play_onscreen.png) 2x); | 278 url(../images/media/2x/media_play_onscreen.png) 2x); |
| 275 } | 279 } |
| 276 | 280 |
| 277 .playback-state-icon[state='pause'] { | 281 .playback-state-icon[state='pause'] { |
| 278 -webkit-animation: blowup 500ms; | 282 -webkit-animation: blowup 500ms; |
| 279 background-image: -webkit-image-set( | 283 background-image: -webkit-image-set( |
| 280 url(../images/media/media_pause_onscreen.png) 1x, | 284 url(../images/media/media_pause_onscreen.png) 1x, |
| 281 url(../images/media/2x/media_pause_onscreen.png) 2x); | 285 url(../images/media/2x/media_pause_onscreen.png) 2x); |
| 282 } | 286 } |
| OLD | NEW |