summaryrefslogtreecommitdiffstats
path: root/templates/show_box_top.inc.php
diff options
context:
space:
mode:
authorspocky <spocky@ampache>2007-09-23 20:06:37 +0000
committerspocky <spocky@ampache>2007-09-23 20:06:37 +0000
commita3d16d1cd6ec1b2fbba373177468a91a6ab49c99 (patch)
tree3bbcf6fed6979e22bcccf564a6b4fddfd53fa870 /templates/show_box_top.inc.php
parent1dfdf2afab8da95da8c814e3838b3393d88ae53c (diff)
downloadampache-a3d16d1cd6ec1b2fbba373177468a91a6ab49c99.tar.gz
ampache-a3d16d1cd6ec1b2fbba373177468a91a6ab49c99.tar.bz2
ampache-a3d16d1cd6ec1b2fbba373177468a91a6ab49c99.zip
- modified sidebar css
- modified rightbar html/css - added patch to enabled ie6 :hover pseudo classes - modified boxes html/css to remove table tags and enable box floating - added 1st version of 3.4 greysme theme (needs more work, especially on ie6)
Diffstat (limited to 'templates/show_box_top.inc.php')
-rw-r--r--templates/show_box_top.inc.php29
1 files changed, 12 insertions, 17 deletions
diff --git a/templates/show_box_top.inc.php b/templates/show_box_top.inc.php
index e3e9221a..d632150e 100644
--- a/templates/show_box_top.inc.php
+++ b/templates/show_box_top.inc.php
@@ -20,20 +20,15 @@
*/
$class = $class ? $class : 'box';
?>
-<table class="<?php echo $class; ?>" cellspacing="0" cellpadding="0">
-<tr>
- <td class="box-left-top"></td>
- <td class="box-top"></td>
- <td class="box-right-top"></td>
-</tr>
-<tr>
- <td class="box-left" rowspan="2"></td>
-<?php if ($title) { ?>
- <td class="box-title"><?php echo $title; ?></td>
-<?php } else { ?>
- <td></td>
-<?php } ?>
- <td class="box-right" rowspan="2"></td>
-</tr>
-<tr>
- <td class="box-content" style="padding-top:3px;">
+
+<div class="<?php echo $class; ?>">
+ <div class="box-inside">
+ <div class="box-top">
+ <div class="box-left-top"></div>
+ <div class="box-right-top"></div>
+ </div>
+ <?php if ($title) { ?>
+ <h3 class="box-title"><?php echo $title; ?></h3>
+ <?php } ?>
+ <div class="box-content">
+