diff options
author | nf <nf@ampache> | 2007-07-14 11:36:37 +0000 |
---|---|---|
committer | nf <nf@ampache> | 2007-07-14 11:36:37 +0000 |
commit | 538e79b2666daa4eb0bb9bb6f83ae0186ac089ea (patch) | |
tree | 0109c1efd5c40c3b61f5ca16a5cbba967fc7359a /templates/show_localplay_status.inc.php | |
parent | 6a929af1bf1953b74471220e22df22321b71630d (diff) | |
download | ampache-538e79b2666daa4eb0bb9bb6f83ae0186ac089ea.tar.gz ampache-538e79b2666daa4eb0bb9bb6f83ae0186ac089ea.tar.bz2 ampache-538e79b2666daa4eb0bb9bb6f83ae0186ac089ea.zip |
Added classes to show_localplay_status.inc and updated all themes for compatibility.
Added show_object_rating_static.inc (supplied by andy90) and modified rating.lib for this to work
Removed obsolete patches from cleandy themes.
Fixed a tiny css bug in StoneBlue theme.
Fixed horizontal menu in Burgundy theme (explicit height in #sidebar li)
Diffstat (limited to 'templates/show_localplay_status.inc.php')
-rw-r--r-- | templates/show_localplay_status.inc.php | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/templates/show_localplay_status.inc.php b/templates/show_localplay_status.inc.php index 7073db82..7a172a6d 100644 --- a/templates/show_localplay_status.inc.php +++ b/templates/show_localplay_status.inc.php @@ -30,9 +30,9 @@ $status = $localplay->status(); ?> <span style="font-weight:bold;" id="lp_state"><?php echo $localplay->get_user_state($status['state']) ?></span><br /> - <span id="lp_playing"><?php echo $localplay->get_user_playing(); ?></span><br /> -<div align="center"><?php require (conf('prefix') . '/templates/show_localplay_control.inc.php'); ?></div> -<div align="center"> + <span id="lp_playing"><?php echo $localplay->get_user_playing(); ?></span> +<div class="lp_box_ctrl"><?php require (conf('prefix') . '/templates/show_localplay_control.inc.php'); ?></div> +<div class="lp_box_vol"> <?php if ($localplay->has_function('volume_up')) { ?> <span class="up_button" onclick="ajaxPut('<?php echo $ajax_url; ?>?action=localplay&cmd=volume_up<?php echo $required_info; ?>','lp_v');return true;"> <?php echo get_user_icon('volumeup'); ?> @@ -47,8 +47,7 @@ $status = $localplay->status(); <span class="mute_button" onclick="ajaxPut('<?php echo $ajax_url; ?>?action=localplay&cmd=volume_mute<?php echo $required_info; ?>','lp_v');return true;"> <?php echo get_user_icon('volumemute'); ?> </span> - <?php } ?> - <br /> + <?php } ?> <?php echo _('Volume'); ?>:<span id="lp_volume"><?php echo $status['volume']; ?></span> </div> <br /> |