Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(233)

Side by Side Diff: ui/file_manager/audio_player/elements/repeat_button.css

Issue 2305623003: Support to repeat one song in Audio Player. (Closed)
Patch Set: Add a test for 3 repeat mode. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 /* Copyright 2016 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
4
5 :host {
6 border-radius: 2px;
7 cursor: pointer;
8 display: inline-block;
9 height: 32px;
10 outline: none;
11 position: relative;
12 width: 32px;
13 }
14
15 .repeat-all, .no-repeat {
16 background-image: -webkit-image-set(
17 url(../assets/100/player_button_repeat.png) 1x,
18 url(../assets/200/player_button_repeat.png) 2x);
19 }
20
21 .repeat-one {
22 background-image: -webkit-image-set(
23 url(../assets/100/player_button_repeat_one.png) 1x,
24 url(../assets/200/player_button_repeat_one.png) 2x);
25 }
26
27 files-toggle-ripple {
28 background-position: center;
29 background-repeat: no-repeat;
30 height: 28px;
31 left: 2px;
32 pointer-events: none;
33 position: absolute;
34 top: 2px;
35 width: 28px;
36 }
OLDNEW
« no previous file with comments | « ui/file_manager/audio_player/elements/control_panel.js ('k') | ui/file_manager/audio_player/elements/repeat_button.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698