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

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

Issue 641283002: Separate the audio player app from Files.app Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Clean up Created 6 years, 2 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/file_manager/audio_player/elements/track_list.css
diff --git a/ui/file_manager/file_manager/audio_player/elements/track_list.css b/ui/file_manager/file_manager/audio_player/elements/track_list.css
deleted file mode 100644
index b4700f47559fbc04447f976ae710f83a95a0df0b..0000000000000000000000000000000000000000
--- a/ui/file_manager/file_manager/audio_player/elements/track_list.css
+++ /dev/null
@@ -1,76 +0,0 @@
-/* Copyright 2014 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 {
- align-items: center;
- background: #f5f5f5;
- bottom: 72px; /* Room for the controls bar. */
- color: #3d3d3d;
- cursor: default;
- display: flex;
- flex-direction: column;
- font-family: Noto Sans UI, sans-serif;
- font-size: 10pt;
- justify-content: flex-start;
- left: 0;
- overflow-x: hidden;
- overflow-y: auto;
- position: absolute;
- right: 0;
- top: 0;
-}
-
-/* Track item. */
-.track {
- align-items: center;
- display: flex;
- flex: 0 0 auto;
- flex-direction: row;
- height: 44px;
- justify-content: flex-start;
- padding-left: 20px;
- width: 100%;
-}
-
-:host(:not([expanded]):host) > .track:not([active]) {
- display: none;
-}
-
-/* In the expanded mode the selected track is highlighted. */
-.track[active] {
- background-color: rgb(66, 129, 244);
-}
-
-/* Track data. */
-
-.track .data {
- display: flex;
- flex: 1 1 auto;
- flex-direction: column;
- justify-content: center;
- margin-left: 0;
- margin-right: 4px;
-}
-
-.track .data .data-title,
-.track .data .data-artist {
- font-size: 12px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
-}
-
-.track .data .data-title {
- color: #343434;
- font-weight: bold;
-}
-
-.track .data .data-artist {
- color: #969696;
-}
-
-.track[active] .data .data-title,
-.track[active] .data .data-artist {
- color: #fff;
-}

Powered by Google App Engine
This is Rietveld 408576698