diff options
author | spocky <spocky@ampache> | 2007-09-27 21:12:29 +0000 |
---|---|---|
committer | spocky <spocky@ampache> | 2007-09-27 21:12:29 +0000 |
commit | 9030c16466ec16db505d755d9b6405b5a40c897d (patch) | |
tree | 2d9f9abd47a304801ad34b94432e5ad245fcd713 /themes/greysme/templates/default.css | |
parent | cb3ecc7353f0e27563e8cda84848350f09306434 (diff) | |
download | ampache-9030c16466ec16db505d755d9b6405b5a40c897d.tar.gz ampache-9030c16466ec16db505d755d9b6405b5a40c897d.tar.bz2 ampache-9030c16466ec16db505d755d9b6405b5a40c897d.zip |
Updated rightbar submenu html/css
Diffstat (limited to 'themes/greysme/templates/default.css')
-rw-r--r-- | themes/greysme/templates/default.css | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/themes/greysme/templates/default.css b/themes/greysme/templates/default.css index 004760b3..1ed25425 100644 --- a/themes/greysme/templates/default.css +++ b/themes/greysme/templates/default.css @@ -224,31 +224,32 @@ h3#content_title span {} /* Doesn't exist anymore (?) */ padding:4px;
}
#rightbar #rb_action li { display:inline; }
-#rightbar li#rb_add { position:relative; z-index:10;}
-#rightbar li#rb_add:hover { background:#e9ad51; }
+#rightbar li#rb_add,#rightbar li#pl_add { position:relative; z-index:10;}
+#rightbar li#rb_add:hover, #rightbar li#pl_add:hover { background:#e9ad51; }
/* Rightbar AddItems SubMenu */
-#rightbar li:hover #rb_action_additems { display:block; }
-#rightbar #rb_action_additems {
+#rightbar li:hover .submenu { display:block; }
+#rightbar .submenu {
display:none;
position:absolute;
right:0px;
top:15px;
background: #050505 url(../images/button_back.png) 0 100% repeat-x;
border:2px solid #e9ad51;
- width:10em;
+ width:15em;
padding:0.3em;
+ font-size:0.8em;
}
-* html #rightbar #rb_action_additems {right:100px;} /* IE6 fix */
+* html #rightbar .submenu {right:100px;} /* IE6 fix */
-#rightbar #rb_action_additems a {
+#rightbar .submenu a {
display:block;
padding:0.1em;
color:#8b3e38;
text-decoration:none;
text-align:right;
}
-#rightbar #rb_action_additems a:hover,
+#rightbar .submenu a:hover,
#rightbar #rb_current_playlist a:hover { color:#e9ad51; }
/* Rightbar playlist */
|