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

Unified 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 side-by-side diff with in-line comments
Download patch
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..7003cffacae2cd0edecabfdbab3fbc61276e7d77
--- /dev/null
+++ b/ui/file_manager/audio_player/elements/repeat_button.css
@@ -0,0 +1,36 @@
+/* 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, .no-repeat {
+ 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;
+}
« 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