diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-01-02 19:14:37 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-01-02 19:14:37 +0000 |
commit | cd4d2d79166c4f6d42fe021abec921bfeed7a906 (patch) | |
tree | 9bd87ee11641f25b9e762fb54266fb7f69a9097a /templates/style.inc | |
parent | dac2f19d709403be00af5ded76030f9edb44b9c1 (diff) | |
download | ampache-cd4d2d79166c4f6d42fe021abec921bfeed7a906.tar.gz ampache-cd4d2d79166c4f6d42fe021abec921bfeed7a906.tar.bz2 ampache-cd4d2d79166c4f6d42fe021abec921bfeed7a906.zip |
first wave of ajax
Diffstat (limited to 'templates/style.inc')
-rw-r--r-- | templates/style.inc | 42 |
1 files changed, 18 insertions, 24 deletions
diff --git a/templates/style.inc b/templates/style.inc index 0ef42f32..cae32257 100644 --- a/templates/style.inc +++ b/templates/style.inc @@ -26,25 +26,6 @@ ampache, mod this to change the look and feel of the site */ ?> - -<script type="text/javascript" language="javascript"> -<!-- Begin Suckerfish hover menu JS -// function needed for IE. attaches mouseover/out events to give/remove css class .sfhover (fake hover) -sfHover = function(navlist) { -var sfEls = document.getElementById("navlist").getElementsByTagName("LI"); -for (var i=0; i <sfEls.length; i++) { - sfEls[i].onmouseover=function() { - this.className+=" sfhover"; - } - sfEls[i].onmouseout=function() { - this.className=this.className.replace(new RegExp("sfhover\\b"), ""); - } -} // end for -} // end function for sfHover -if (window.attachEvent) window.attachEvent("onload", sfHover); -// End Suckerfish hover menu JS--> -</script> - <style type="text/css"> <!-- body @@ -91,14 +72,27 @@ if (window.attachEvent) window.attachEvent("onload", sfHover); border-left:2px solid <?php echo conf('bg_color2'); ?>; border-top:2px solid <?php echo conf('bg_color2'); ?>; } - + .selected_button + { + background-color: black;color:white; + } + .unselected_button + { + /* there really isn't anything for this */ + } + .nodisplay { display: none;} + .display {} .npsong { - background-color: #FFFF66; + background: #FFFF66; + font-weight: bold; } - table.tabledata - { - } + #mpdpl td { + padding: 0px 2px 0px 2px; + } + table.tabledata + { + } td { |