diff options
author | Jon Bergli Heier <snakebite@jvnv.net> | 2011-08-13 16:22:45 +0200 |
---|---|---|
committer | Jon Bergli Heier <snakebite@jvnv.net> | 2011-08-13 16:22:45 +0200 |
commit | 3f28503102c9c1912885b565a7d90de358f43d83 (patch) | |
tree | d48e2537939e5ee551ab3cee0face03962af63b1 | |
parent | 94a84b4c2f78a2375fae3460169cb161b3d702a6 (diff) |
Fixed-width resizeable directory browser.
-rw-r--r-- | static/style.css | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css index 3ad648c..25bcc4b 100644 --- a/static/style.css +++ b/static/style.css @@ -1,3 +1,4 @@ +body { font-family: sans-serif; } ul#song-links a, ul#playlist a { text-decoration: none; color: inherit; } ul#song-links a:hover, ul#playlist a:hover { text-decoration: underline; } a.dir { background-image: url('/static/icons/folder.png'); } @@ -11,3 +12,4 @@ div#hpanel span { display: inline-block; vertical-align: top; } div#hpanel span ul { list-style-type: none; padding-left: 0; margin-top: .5em; vertical-align: top; } ul#playlist li a.playing { background-image: url('/static/icons/sound.png'); } span.list-header { font-size: large; } +ul#song-links { width: 30em; overflow: auto; white-space: nowrap; resize: both; } |