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

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

Issue 1442583002: Revert of AudioPlayer: Update control panel with playback progress bar. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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
1 /* Copyright 2014 The Chromium Authors. All rights reserved. 1 /* Copyright 2014 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 :host { 5 :host {
6 align-items: center; 6 align-items: center;
7 background: rgb(245, 245, 245); 7 background: rgb(245, 245, 245);
8 bottom: 72px; /* Room for the controls bar. */ 8 bottom: 72px; /* Room for the controls bar. */
9 color: rgb(51, 51, 51); 9 color: rgb(51, 51, 51);
10 cursor: default; 10 cursor: default;
(...skipping 25 matching lines...) Expand all
36 } 36 }
37 37
38 :host([expanded]) > .track:hover { 38 :host([expanded]) > .track:hover {
39 background-color: rgba(0, 0, 0, 0.08); 39 background-color: rgba(0, 0, 0, 0.08);
40 } 40 }
41 41
42 /* Track icon. */ 42 /* Track icon. */
43 .track .icon { 43 .track .icon {
44 background-position: center; 44 background-position: center;
45 background-repeat: no-repeat; 45 background-repeat: no-repeat;
46 flex: none;
47 height: 32px; 46 height: 32px;
48 margin: 8px; 47 margin: 8px;
49 width: 32px; 48 width: 32px;
50 } 49 }
51 50
52 .track:hover .icon { 51 .track:hover .icon {
53 background-image: -webkit-image-set( 52 background-image: -webkit-image-set(
54 url(../assets/100/playlist_play.png) 1x, 53 url(../assets/100/playlist_play.png) 1x,
55 url(../assets/200/playlist_play.png) 2x); 54 url(../assets/200/playlist_play.png) 2x);
56 } 55 }
(...skipping 25 matching lines...) Expand all
82 .track .data .data-title { 81 .track .data .data-title {
83 color: rgb(51, 51, 51); 82 color: rgb(51, 51, 51);
84 font-size: 13px; 83 font-size: 13px;
85 font-weight: 500; 84 font-weight: 500;
86 } 85 }
87 86
88 .track .data .data-artist { 87 .track .data .data-artist {
89 color: rgb(100, 100, 100); 88 color: rgb(100, 100, 100);
90 font-size: 12px; 89 font-size: 12px;
91 } 90 }
OLDNEW
« no previous file with comments | « ui/file_manager/audio_player/elements/control_panel.js ('k') | ui/file_manager/audio_player/js/audio_player.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698