summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-09-23 22:16:02 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-09-23 22:16:02 +0000
commit1d08ce31caa68f6da292493fa16432163cbbeddd (patch)
tree6d9c01a92b83fc032a219cb4ee1986cf6e1fd08d
parentf18efa3eac538882820591919b5874e99ddcf412 (diff)
downloadampache-1d08ce31caa68f6da292493fa16432163cbbeddd.tar.gz
ampache-1d08ce31caa68f6da292493fa16432163cbbeddd.tar.bz2
ampache-1d08ce31caa68f6da292493fa16432163cbbeddd.zip
all fixed now
-rw-r--r--templates/default.css13
-rw-r--r--templates/show_box.inc.php6
-rw-r--r--templates/tool_box.inc4
-rw-r--r--themes/classic/images/bottom.gifbin0 -> 99 bytes
-rw-r--r--themes/classic/images/bottomleft.gifbin0 -> 609 bytes
-rw-r--r--themes/classic/images/bottomright.gifbin0 -> 673 bytes
-rw-r--r--themes/classic/images/left.gifbin0 -> 68 bytes
-rw-r--r--themes/classic/images/right.gifbin0 -> 98 bytes
-rw-r--r--themes/classic/images/top.gifbin0 -> 96 bytes
-rw-r--r--themes/classic/images/topleft.gifbin0 -> 354 bytes
-rw-r--r--themes/classic/images/topright.gifbin0 -> 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&gt;&gt; <a href=\"$items[$item]\"> $item</a><br />\n");
diff --git a/themes/classic/images/bottom.gif b/themes/classic/images/bottom.gif
new file mode 100644
index 00000000..e1545988
--- /dev/null
+++ b/themes/classic/images/bottom.gif
Binary files differ
diff --git a/themes/classic/images/bottomleft.gif b/themes/classic/images/bottomleft.gif
new file mode 100644
index 00000000..940eeb36
--- /dev/null
+++ b/themes/classic/images/bottomleft.gif
Binary files differ
diff --git a/themes/classic/images/bottomright.gif b/themes/classic/images/bottomright.gif
new file mode 100644
index 00000000..4e9caf4d
--- /dev/null
+++ b/themes/classic/images/bottomright.gif
Binary files differ
diff --git a/themes/classic/images/left.gif b/themes/classic/images/left.gif
new file mode 100644
index 00000000..62137075
--- /dev/null
+++ b/themes/classic/images/left.gif
Binary files differ
diff --git a/themes/classic/images/right.gif b/themes/classic/images/right.gif
new file mode 100644
index 00000000..c984eaa7
--- /dev/null
+++ b/themes/classic/images/right.gif
Binary files differ
diff --git a/themes/classic/images/top.gif b/themes/classic/images/top.gif
new file mode 100644
index 00000000..dbdde2cc
--- /dev/null
+++ b/themes/classic/images/top.gif
Binary files differ
diff --git a/themes/classic/images/topleft.gif b/themes/classic/images/topleft.gif
new file mode 100644
index 00000000..1f9782db
--- /dev/null
+++ b/themes/classic/images/topleft.gif
Binary files differ
diff --git a/themes/classic/images/topright.gif b/themes/classic/images/topright.gif
new file mode 100644
index 00000000..ea13e18a
--- /dev/null
+++ b/themes/classic/images/topright.gif
Binary files differ