diff options
-rw-r--r-- | templates/default.css | 13 | ||||
-rw-r--r-- | templates/show_box.inc.php | 6 | ||||
-rw-r--r-- | templates/tool_box.inc | 4 | ||||
-rw-r--r-- | themes/classic/images/bottom.gif | bin | 0 -> 99 bytes | |||
-rw-r--r-- | themes/classic/images/bottomleft.gif | bin | 0 -> 609 bytes | |||
-rw-r--r-- | themes/classic/images/bottomright.gif | bin | 0 -> 673 bytes | |||
-rw-r--r-- | themes/classic/images/left.gif | bin | 0 -> 68 bytes | |||
-rw-r--r-- | themes/classic/images/right.gif | bin | 0 -> 98 bytes | |||
-rw-r--r-- | themes/classic/images/top.gif | bin | 0 -> 96 bytes | |||
-rw-r--r-- | themes/classic/images/topleft.gif | bin | 0 -> 354 bytes | |||
-rw-r--r-- | themes/classic/images/topright.gif | bin | 0 -> 391 bytes |
11 files changed, 18 insertions, 5 deletions
diff --git a/templates/default.css b/templates/default.css index c6ea0848..54acfb37 100644 --- a/templates/default.css +++ b/templates/default.css @@ -500,6 +500,10 @@ li.current-rating{ z-index: 1; } /* Box Related Styles */ +.box { + padding:0px; + background: #fff; +} .box-left-top { background: url(../themes/classic/images/topleft.gif) no-repeat; height:16px; @@ -518,6 +522,15 @@ li.current-rating{ .box-right-bottom { background: url(../themes/classic/images/bottomright.gif) no-repeat; } +.box-right-top { + background: url(../themes/classic/images/topright.gif) no-repeat; +} +.box-right { + background: url(../themes/classic/images/right.gif); +} +.box-top { + background: url(../themes/classic/images/top.gif); +} .confirmation-box { padding-left:5px; padding-top:5px; diff --git a/templates/show_box.inc.php b/templates/show_box.inc.php index 324912c9..6bff9378 100644 --- a/templates/show_box.inc.php +++ b/templates/show_box.inc.php @@ -20,7 +20,7 @@ */ ?> -<table class="border" cellspacing="0" cellpadding="0"> +<table class="box" cellspacing="0" cellpadding="0"> <tr> <td class="box-left-top"></td> <td class="box-top"></td> @@ -28,11 +28,11 @@ </tr> <tr> <td class="box-left" rowspan="2"></td> - <td background="<?php echo conf('web_path'); ?>/images/ampache-light-bg.gif" bgcolor="#c0c0c0"><?php echo $title; ?></td> + <td><?php echo $title; ?></td> <td class="box-right" rowspan="2"></td> </tr> <tr> - <td class="even"> + <td> <ol> <?php foreach ($items as $item) { diff --git a/templates/tool_box.inc b/templates/tool_box.inc index 44619609..acf4ce2e 100644 --- a/templates/tool_box.inc +++ b/templates/tool_box.inc @@ -27,7 +27,7 @@ ?> -<table class="border" cellspacing="1" cellpadding="3" > +<table class="box"> <tr class="box-top"> <td class="box-left-top"></td> <td class="box-center-top"></td> @@ -37,7 +37,7 @@ <th><?php echo $title; ?></th> </tr> <tr> - <td class="even"> + <td> <?php foreach (array_keys($items) as $item) { print("\t\t\t>> <a href=\"$items[$item]\"> $item</a><br />\n"); diff --git a/themes/classic/images/bottom.gif b/themes/classic/images/bottom.gif Binary files differnew file mode 100644 index 00000000..e1545988 --- /dev/null +++ b/themes/classic/images/bottom.gif diff --git a/themes/classic/images/bottomleft.gif b/themes/classic/images/bottomleft.gif Binary files differnew file mode 100644 index 00000000..940eeb36 --- /dev/null +++ b/themes/classic/images/bottomleft.gif diff --git a/themes/classic/images/bottomright.gif b/themes/classic/images/bottomright.gif Binary files differnew file mode 100644 index 00000000..4e9caf4d --- /dev/null +++ b/themes/classic/images/bottomright.gif diff --git a/themes/classic/images/left.gif b/themes/classic/images/left.gif Binary files differnew file mode 100644 index 00000000..62137075 --- /dev/null +++ b/themes/classic/images/left.gif diff --git a/themes/classic/images/right.gif b/themes/classic/images/right.gif Binary files differnew file mode 100644 index 00000000..c984eaa7 --- /dev/null +++ b/themes/classic/images/right.gif diff --git a/themes/classic/images/top.gif b/themes/classic/images/top.gif Binary files differnew file mode 100644 index 00000000..dbdde2cc --- /dev/null +++ b/themes/classic/images/top.gif diff --git a/themes/classic/images/topleft.gif b/themes/classic/images/topleft.gif Binary files differnew file mode 100644 index 00000000..1f9782db --- /dev/null +++ b/themes/classic/images/topleft.gif diff --git a/themes/classic/images/topright.gif b/themes/classic/images/topright.gif Binary files differnew file mode 100644 index 00000000..ea13e18a --- /dev/null +++ b/themes/classic/images/topright.gif |