diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-03-25 19:37:08 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-03-25 19:37:08 +0000 |
commit | 1eca8a9c7b499b5f4ec58dbd19170d4a642ad674 (patch) | |
tree | 6d7011d182f8dd9463e9bcc1ee8cd3bfed83ffd8 /contrib/themes | |
parent | 12a78952442b380a4c81b3620facda9fa341788c (diff) | |
download | ampache-1eca8a9c7b499b5f4ec58dbd19170d4a642ad674.tar.gz ampache-1eca8a9c7b499b5f4ec58dbd19170d4a642ad674.tar.bz2 ampache-1eca8a9c7b499b5f4ec58dbd19170d4a642ad674.zip |
new apex that works with 3.3.3
Diffstat (limited to 'contrib/themes')
-rw-r--r-- | contrib/themes/apex/templates/default.css | 17 | ||||
-rw-r--r-- | contrib/themes/apex/theme.cfg.php | 86 |
2 files changed, 64 insertions, 39 deletions
diff --git a/contrib/themes/apex/templates/default.css b/contrib/themes/apex/templates/default.css index adafbbf4..54bb14fc 100644 --- a/contrib/themes/apex/templates/default.css +++ b/contrib/themes/apex/templates/default.css @@ -303,7 +303,7 @@ div#sidebar { background: url(../images/menu_click.gif) no-repeat top left;
z-index: 30;
}
-#sidebar li ul {
+/* #sidebar li ul {
margin: 0 0 0 0;
z-index: 3;
}
@@ -311,6 +311,21 @@ div#sidebar { position: relative;
top: 7px;
}
+*/
+#sidebar li ul {
+ float: left;
+ position: absolute;
+ width: 9em;
+/* margin: -1.5em 0 0 10.5em; /* for vertical menu; comment out otherwise */
+ margin: 0 0 0 0; /* for horizontal menu; comment out otherwise */
+ left: -999em; /* this -999em puts the submenu item way off to the left until it's called back by a hover (below) */
+ z-index:30;
+}
+
+#sidebar li:hover ul, #sidebar li.sfhover ul {
+ left: auto; /* this calls the submenu back when the parent li is hovered. */
+ background-color: #000000;
+}
#play_type_switch {
position: relative;
top: -3px;
diff --git a/contrib/themes/apex/theme.cfg.php b/contrib/themes/apex/theme.cfg.php index c183e955..05b6e3fc 100644 --- a/contrib/themes/apex/theme.cfg.php +++ b/contrib/themes/apex/theme.cfg.php @@ -1,38 +1,48 @@ -################## -#<?php exit(); ?># -################## - -########################### -# Classic Ampache Theme -########################### - -# Theme Name -# This is the actual name of the theme that -# will be displayed in the preferences screen -# DEFAULT: ampache-theme -name = "Apex" - -# Theme Author -# This is just a way of giving credit to the -# person who actually created this theme -# DEFAULT: N/A -author = "Apex" - -# Theme Maintainer -# This is just a way of listing who is responsible for -# maintaining this theme incase it's not working right -# please include an e-mail address so you can be contacted -# DEFAULT: N/A -maintainer = "Brandon Cole <apexeleven@gmail.com>" - -# 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 = "horizontal" - -# 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" +##################
+#<?php exit(); ?>#
+##################
+
+###########################
+# Ampache Theme: Apex
+###########################
+
+# Theme Name
+# This is the actual name of the theme that
+# will be displayed in the preferences screen
+# DEFAULT: ampache-theme
+name = "Apex"
+
+# Theme Author
+# This is just a way of giving credit to the
+# person who actually created this theme
+# DEFAULT: N/A
+author = "Apex (updated for 3.3.3 by jazzs3quence)"
+
+# Theme Maintainer
+# This is just a way of listing who is responsible for
+# maintaining this theme incase it's not working right
+# please include an e-mail address so you can be contacted
+# DEFAULT: N/A
+maintainer = "Brandon Cole <apexeleven@gmail.com>"
+
+# Version
+# This is the version of the Theme (usefull if you've updated it)
+version = "1.1"
+
+# Ampache Version
+# This is the ampache version that this theme works with. This is
+# mostly a fluf thing to make it easier for people to pick themes
+# that are designed for the version they are running.
+ampache_version = "3.3.3"
+
+# 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 = "horizontal"
+
+# 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"
|