From 96947c0775966f6aab18c08a58c100a387bc0482 Mon Sep 17 00:00:00 2001 From: pb1dft Date: Mon, 9 Oct 2006 22:47:33 +0000 Subject: Updated Matrix Theme to look nice again --- contrib/themes/simple_matrix/images/bottom.gif | Bin 0 -> 76 bytes contrib/themes/simple_matrix/images/bottomleft.gif | Bin 0 -> 201 bytes .../themes/simple_matrix/images/bottomright.gif | Bin 0 -> 199 bytes contrib/themes/simple_matrix/images/left.gif | Bin 0 -> 76 bytes .../themes/simple_matrix/images/menu-active.jpg | Bin 0 -> 1244 bytes contrib/themes/simple_matrix/images/menu.jpg | Bin 0 -> 1593 bytes contrib/themes/simple_matrix/images/right.gif | Bin 0 -> 106 bytes contrib/themes/simple_matrix/images/top.gif | Bin 0 -> 63 bytes contrib/themes/simple_matrix/images/topleft.gif | Bin 0 -> 201 bytes contrib/themes/simple_matrix/images/topright.gif | Bin 0 -> 202 bytes contrib/themes/simple_matrix/templates/default.css | 743 +++++++++++++++------ contrib/themes/simple_matrix/theme.cfg.php | 15 +- 12 files changed, 553 insertions(+), 205 deletions(-) create mode 100644 contrib/themes/simple_matrix/images/bottom.gif create mode 100644 contrib/themes/simple_matrix/images/bottomleft.gif create mode 100644 contrib/themes/simple_matrix/images/bottomright.gif create mode 100644 contrib/themes/simple_matrix/images/left.gif create mode 100644 contrib/themes/simple_matrix/images/menu-active.jpg create mode 100644 contrib/themes/simple_matrix/images/menu.jpg create mode 100644 contrib/themes/simple_matrix/images/right.gif create mode 100644 contrib/themes/simple_matrix/images/top.gif create mode 100644 contrib/themes/simple_matrix/images/topleft.gif create mode 100644 contrib/themes/simple_matrix/images/topright.gif (limited to 'contrib/themes/simple_matrix') diff --git a/contrib/themes/simple_matrix/images/bottom.gif b/contrib/themes/simple_matrix/images/bottom.gif new file mode 100644 index 00000000..30fd7b59 Binary files /dev/null and b/contrib/themes/simple_matrix/images/bottom.gif differ diff --git a/contrib/themes/simple_matrix/images/bottomleft.gif b/contrib/themes/simple_matrix/images/bottomleft.gif new file mode 100644 index 00000000..49ffbfaf Binary files /dev/null and b/contrib/themes/simple_matrix/images/bottomleft.gif differ diff --git a/contrib/themes/simple_matrix/images/bottomright.gif b/contrib/themes/simple_matrix/images/bottomright.gif new file mode 100644 index 00000000..1ef415a8 Binary files /dev/null and b/contrib/themes/simple_matrix/images/bottomright.gif differ diff --git a/contrib/themes/simple_matrix/images/left.gif b/contrib/themes/simple_matrix/images/left.gif new file mode 100644 index 00000000..4c520f00 Binary files /dev/null and b/contrib/themes/simple_matrix/images/left.gif differ diff --git a/contrib/themes/simple_matrix/images/menu-active.jpg b/contrib/themes/simple_matrix/images/menu-active.jpg new file mode 100644 index 00000000..34515c8f Binary files /dev/null and b/contrib/themes/simple_matrix/images/menu-active.jpg differ diff --git a/contrib/themes/simple_matrix/images/menu.jpg b/contrib/themes/simple_matrix/images/menu.jpg new file mode 100644 index 00000000..4b335f1f Binary files /dev/null and b/contrib/themes/simple_matrix/images/menu.jpg differ diff --git a/contrib/themes/simple_matrix/images/right.gif b/contrib/themes/simple_matrix/images/right.gif new file mode 100644 index 00000000..237479d6 Binary files /dev/null and b/contrib/themes/simple_matrix/images/right.gif differ diff --git a/contrib/themes/simple_matrix/images/top.gif b/contrib/themes/simple_matrix/images/top.gif new file mode 100644 index 00000000..fa4fb0db Binary files /dev/null and b/contrib/themes/simple_matrix/images/top.gif differ diff --git a/contrib/themes/simple_matrix/images/topleft.gif b/contrib/themes/simple_matrix/images/topleft.gif new file mode 100644 index 00000000..ec2d02c4 Binary files /dev/null and b/contrib/themes/simple_matrix/images/topleft.gif differ diff --git a/contrib/themes/simple_matrix/images/topright.gif b/contrib/themes/simple_matrix/images/topright.gif new file mode 100644 index 00000000..66260bb1 Binary files /dev/null and b/contrib/themes/simple_matrix/images/topright.gif differ diff --git a/contrib/themes/simple_matrix/templates/default.css b/contrib/themes/simple_matrix/templates/default.css index c57d5c3a..3646da78 100644 --- a/contrib/themes/simple_matrix/templates/default.css +++ b/contrib/themes/simple_matrix/templates/default.css @@ -1,7 +1,7 @@ - +/* General style rules */ +body{ + padding-top: 0px; + margin-top: 0px; + margin-left: 0px; + margin-right: 0px; + font-family:Arial, Helvetica, Sans-Serif; + background:#000000 url(../images/background.jpg) repeat; -/*! - @header Style File - @discussion this is the css that is included on every page of - ampache, mod this to change the look and feel of the site -*/ -?> - diff --git a/contrib/themes/simple_matrix/theme.cfg.php b/contrib/themes/simple_matrix/theme.cfg.php index 03731590..69cee65a 100644 --- a/contrib/themes/simple_matrix/theme.cfg.php +++ b/contrib/themes/simple_matrix/theme.cfg.php @@ -18,6 +18,7 @@ name = "Simple Matrix" # DEFAULT: N/A author = "Marno van der Molen" #FULL CREDIT goes to Nedko Arnaudov for supplying the base for this theme. +#Updated by Terence Theijn (pb1dft) to let it work in the new style version of ampache # Theme Maintainer # This is just a way of listing who is responsible for @@ -29,7 +30,19 @@ maintainer = "Marno van der Molen " # Version # This is the revision for this theme, It's up to the maintainer # or author to decide how they want to format this -version = "1.1" +version = "1.2" + +# Orientation +# This was added as of 3.3.2-Alpha4, this tells Ampache if this theme +# uses vertical or horizontal orientation of the menu, if this is a horizontal +# theme then it will not show the quick search and quick random play forms +orientation = "vertical" + +# Submenu +# If this is set to simple the sub menu's will only be shown when you're on one of the +# respective pages. If you want to make the menu's something like the classic theme +# comment this out +#submenu = "simple" # Theme Colors ################### -- cgit