diff options
author | Jon Bergli Heier <snakebite@jvnv.net> | 2011-08-23 16:57:52 +0200 |
---|---|---|
committer | Jon Bergli Heier <snakebite@jvnv.net> | 2011-08-23 16:57:52 +0200 |
commit | c8754366695abe10364963f1fe0c82dad5987102 (patch) | |
tree | 7d1e6067cfadfbad0a711fc20c3bbe6625ef1e74 /static/style.css | |
parent | d4394a532978e34176b886048b2f9f263b9fdcbb (diff) |
Added album remove buttons to song queue.
Diffstat (limited to 'static/style.css')
-rw-r--r-- | static/style.css | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/static/style.css b/static/style.css index 5b2497c..3213dec 100644 --- a/static/style.css +++ b/static/style.css @@ -4,7 +4,7 @@ ul#song-links a:hover, ul#playlist a:hover { text-decoration: underline; } a.dir { background-image: url('/static/icons/folder.png'); } a.file { background-image: url('/static/icons/music.png'); } a.file-cached { background-image: url('/static/icons/music-cached.png'); } -a.dir, a.file, ul#playlist li a:first-child { background-repeat: no-repeat; padding-left: 20px; } +a.dir, a.file, ul#playlist a.song { background-repeat: no-repeat; padding-left: 20px; } ul#playlist img { vertical-align: middle; } a.file-recoding { background-image: url('/static/icons/loading.gif'); } a.file-queued { background-image: url('/static/icons/music-queued.png'); } @@ -17,3 +17,6 @@ ul#song-links { width: 30em; overflow: auto; white-space: nowrap; resize: both; a#add-dir { font-size: small; } span#playlist-span { position: absolute; left: 31em; right: 1em; } ul#playlist li.album { border-top: 1px solid; margin-bottom: .2em; color: #666; padding-left: 1em; } +ul#playlist li.album span { margin-left: 1em; } +.right { float: right; } +ul#playlist li div:hover { background: #eee; } |