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

Unified Diff: ui/file_manager/audio_player/elements/repeat_button.css

Issue 2305623003: Support to repeat one song in Audio Player. (Closed)
Patch Set: Support to repeat one song in Audio Player. 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..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);
+}

Powered by Google App Engine
This is Rietveld 408576698