Chromium Code Reviews| Index: ui/file_manager/audio_player/elements/repeat_button.css |
| diff --git a/ui/file_manager/audio_player/elements/repeat_button.css b/ui/file_manager/audio_player/elements/repeat_button.css |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8f170fedca4d68de9152c11ea4c0d203373e7f27 |
| --- /dev/null |
| +++ b/ui/file_manager/audio_player/elements/repeat_button.css |
| @@ -0,0 +1,41 @@ |
| +/* Copyright 2016 The Chromium Authors. All rights reserved. |
| + * Use of this source code is governed by a BSD-style license that can be |
| + * found in the LICENSE file. */ |
| + |
| +:host { |
| + border-radius: 2px; |
| + cursor: pointer; |
| + display: inline-block; |
| + height: 32px; |
| + outline: none; |
| + position: relative; |
| + width: 32px; |
| +} |
| + |
| +.repeat-all, .repeat-none { |
| + background-image: -webkit-image-set( |
| + url(../assets/100/player_button_repeat.png) 1x, |
| + url(../assets/200/player_button_repeat.png) 2x); |
| +} |
| + |
| +.repeat-one { |
| + background-image: -webkit-image-set( |
| + url(../assets/100/player_button_repeat_one.png) 1x, |
| + url(../assets/200/player_button_repeat_one.png) 2x); |
| +} |
| + |
| +files-toggle-ripple { |
| + background-position: center; |
| + background-repeat: no-repeat; |
| + height: 28px; |
| + left: 2px; |
| + pointer-events: none; |
| + position: absolute; |
| + top: 2px; |
| + width: 28px; |
| +} |
| + |
| +files-toggle-ripple::shadow .ripple { |
|
fukino
2016/09/09 05:31:45
Please remove this line.
It was already removed in
harukam
2016/09/09 11:53:45
Thanks.
|
| + opacity: 0.1; |
| + @apply(--files-icon-button-activated-theme); |
| +} |