diff options
author | spocky <spocky@ampache> | 2007-08-20 00:24:12 +0000 |
---|---|---|
committer | spocky <spocky@ampache> | 2007-08-20 00:24:12 +0000 |
commit | 19f4dd21d30bd5955a1a42ed662f31ed7fafefb6 (patch) | |
tree | b93ce033bc793439344295e6e1918a477005a130 /themes | |
parent | 873465efc22ed422a4852d59be2cc6a1e472ede2 (diff) | |
download | ampache-19f4dd21d30bd5955a1a42ed662f31ed7fafefb6.tar.gz ampache-19f4dd21d30bd5955a1a42ed662f31ed7fafefb6.tar.bz2 ampache-19f4dd21d30bd5955a1a42ed662f31ed7fafefb6.zip |
Updated css class for ajax elements (please check function text in ajax.class.php)
Diffstat (limited to 'themes')
-rw-r--r-- | themes/classic/templates/default.css | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/themes/classic/templates/default.css b/themes/classic/templates/default.css index 8ebf0a0a..40cb27ba 100644 --- a/themes/classic/templates/default.css +++ b/themes/classic/templates/default.css @@ -62,6 +62,7 @@ input { margin: 2px 2px 2px 0; } +.link { cursor:pointer; } /************************************************/ /* Header */ @@ -273,7 +274,7 @@ h3#content_title span { font-weight:normal; color:#5b5b5b; } -#sidebar-page .sb3 a{ color:#5b5b5b; } + #sidebar-page ul.sb3 li{ margin:0; padding:0; @@ -281,14 +282,18 @@ h3#content_title span { font-weight:normal; } * html #sidebar-page ul.sb3 li{display:inline;} /* fix ie6 */ -#sidebar-page .sb3 a{ padding:0.1em;border-bottom:1px dotted #c0c0c0;} -#sidebar-page .sb3 div{ padding:0.1em;border-bottom:1px dotted #c0c0c0; cursor:pointer; } + +#sidebar-page .sb3 a, #sidebar-page .sb3 .link{ + padding:0.1em; + border-bottom:1px dotted #c0c0c0; + color:#5b5b5b; +} #sidebar-page a{ display:block; } -#sidebar-page a:hover, #sidebar-page div:hover{ +#sidebar-page a:hover, #sidebar-page .link:hover{ background:#99ccff; color:#fff; } |