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 .media-button { | 5 .media-button { |
6 height: 28px; | 6 height: 28px; |
7 position: relative; | 7 position: relative; |
8 width: 26px; | 8 width: 26px; |
9 } | 9 } |
10 | 10 |
(...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
596 background-image: -webkit-image-set( | 596 background-image: -webkit-image-set( |
597 url('../images/media/media_play.png') 1x, | 597 url('../images/media/media_play.png') 1x, |
598 url('../images/media/2x/media_play.png') 2x); | 598 url('../images/media/2x/media_play.png') 2x); |
599 } | 599 } |
600 | 600 |
601 .playback-state-icon[state='pause'] { | 601 .playback-state-icon[state='pause'] { |
602 background-image: -webkit-image-set( | 602 background-image: -webkit-image-set( |
603 url('../images/media/media_pause.png') 1x, | 603 url('../images/media/media_pause.png') 1x, |
604 url('../images/media/2x/media_pause.png') 2x); | 604 url('../images/media/2x/media_pause.png') 2x); |
605 } | 605 } |
OLD | NEW |