summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2005-06-25 17:40:37 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2005-06-25 17:40:37 +0000
commit491eab55d8c581b42bcd0625cb137b6a53911259 (patch)
treec2120a868d7d0ca5cb5f83de352f18f9b3776f47
parent2398133cc42045805e6045935efeefee18ab1ad8 (diff)
downloadampache-491eab55d8c581b42bcd0625cb137b6a53911259.tar.gz
ampache-491eab55d8c581b42bcd0625cb137b6a53911259.tar.bz2
ampache-491eab55d8c581b42bcd0625cb137b6a53911259.zip
updated total blue, sunshine and green-n-black
-rw-r--r--contrib/themes/Green-n-Black/templates/style.inc640
-rwxr-xr-xcontrib/themes/Sunshine/images/Background.gifbin0 -> 7254 bytes
-rwxr-xr-xcontrib/themes/Sunshine/images/ampache-dark-bg.gifbin0 -> 93 bytes
-rwxr-xr-xcontrib/themes/Sunshine/images/ampache-light-bg.gifbin0 -> 146 bytes
-rwxr-xr-xcontrib/themes/Sunshine/images/ampache-mid.gifbin0 -> 278 bytes
-rwxr-xr-xcontrib/themes/Sunshine/images/ampache.gifbin4955 -> 4848 bytes
-rwxr-xr-xcontrib/themes/Sunshine/templates/style.inc465
-rw-r--r--contrib/themes/Total_Blue/images/ampache.gifbin5192 -> 4848 bytes
-rwxr-xr-xcontrib/themes/Total_Blue/images/background.gifbin0 -> 2278 bytes
-rw-r--r--contrib/themes/Total_Blue/templates/style.inc83
10 files changed, 671 insertions, 517 deletions
diff --git a/contrib/themes/Green-n-Black/templates/style.inc b/contrib/themes/Green-n-Black/templates/style.inc
index 00276496..2440aace 100644
--- a/contrib/themes/Green-n-Black/templates/style.inc
+++ b/contrib/themes/Green-n-Black/templates/style.inc
@@ -1,323 +1,317 @@
-<?php
-/*
-
- Copyright (c) 2001 - 2005 Ampache.org
- All rights reserved.
-
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License
- as published by the Free Software Foundation; either version 2
- of the License, or (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-*/
-
-/*!
- @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
-*/
-?>
-<style type="text/css">
-<!--
- body
- {
- background: <?php echo conf('bg_color1'); ?>;
- font-family: <?php echo conf('font') ?>;
- font-size: <?php echo conf('font_size'); ?>px;
- color: <?php echo conf('font_color2'); ?>;
- }
-
- p
- {
- color: <?php echo conf('font_color2'); ?>;
- font-family: <?php echo conf('font')?>;
- font-size: <?php echo conf('font_size'); ?>px;
- }
-
- a
- {
- color: <?php echo conf('font_color2') ?>;
- font-family: <?php echo conf('font')?>;
- }
-
- a:visited
- {
- color: <?php echo conf('font_color2') ?>;
- font-family: <?php echo conf('font')?>;
- }
-
- a:active
- {
- color: <?php echo conf('font_color2') ?>;
- font-family: <?php echo conf('font')?>;
- }
-
- .text-box
- {
- padding-left:5px;
- padding-top:5px;
- margin-bottom:10px;
- background-color: <?php echo conf('base_color1'); ?>;
- border-right:2px solid <?php echo conf('bg_color2'); ?>;
- border-bottom:2px solid <?php echo conf('bg_color2'); ?>;
- border-left:2px solid <?php echo conf('bg_color2'); ?>;
- border-top:2px solid <?php echo conf('bg_color2'); ?>;
- }
-
- input
- {
- color: <?php echo conf('font_color2'); ?>;
- font-family: <?php echo conf('font'); ?>;
- font-size: <?php echo conf('font_size'); ?>px;
- font-weight: bold;
- background-color: <?php echo conf('base_color2') ?>;
- border-style: solid;
- border-width: 1px;
- border-color: <?php echo conf('bg_color2'); ?>;
- margin: 2px 2px 2px 2px;
- }
-
- select {
- color: <?php echo conf('font_color2'); ?>;
- font-family: <?php echo conf('font')?>;
- font-size: <?php echo conf('font_size'); ?>px;
- background-color: <?php echo conf('base_color2') ?>;
- }
-
- textarea
- {
- color: <?php echo conf('font_color2') ?>;
- font-family: <?php echo conf('font')?>;
- font-size: <?php echo conf('font_size'); ?>px;
- }
- .headrow
- {
- background:<?php echo conf('row_color1'); ?>;
- font-size: <?php echo conf('font_size'); ?>px;
- }
- .odd
- {
- background:<?php echo conf('row_color2'); ?>;
- font-size: <?php echo conf('font_size'); ?>px;
- }
- .even
- {
- background:<?php echo conf('row_color3'); ?>;
- font-size: <?php echo conf('font_size'); ?>px;
- }
- .blank
- {
- background: #000;
- }
- .border
- {
- background:<?php echo conf('bg_color2'); ?>;
- border-collapse: collapse;
- border-right: 1px solid #000;
- border-left: 1px solid #000;
- border-top: 1px solid #000;
- border-bottom: 1px solid #000;
- }
- .header
- {
- font-size: <?php echo conf('font_size'); ?>px;
- }
- .error
- {
- color: <?php echo conf('error_color'); ?>;
- }
- .fatalerror
- {
- padding-top: 3px;
- padding-bottom: 3px;
- color: <?php echo conf('error_color'); ?>;
- border-right:4px solid <?php echo conf('error_color'); ?>;
- border-bottom:4px solid <?php echo conf('error_color'); ?>;
- border-left:4px solid <?php echo conf('error_color'); ?>;
- border-top:4px solid <?php echo conf('error_color'); ?>;
- font-size: <?php echo conf('font_size')+2; ?>px;
- font-weight: 900;
- text-align: center;
- }
- .disabled
- {
- text-decoration: line-through;
- }
- .alphabet
- {
- font-size: <?php echo conf('font_size'); ?>px;
- font-weight: normal;
- }
- .button
- {
- background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/tablebg.gif) <?php echo conf('base_color2')?> repeat-x;
- padding: 2px;
-
- }
- .table-header
- {
- background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/tablebg.gif) <?php echo conf('base_color2')?> repeat-x;
- padding: 0px;
- border-color: black;
- border-style: solid;
- border-width: 8px;
- }
-
- tr.even
- {
- border-collapse: collapse;
- border-right: 1px solid #000;
- border-left: 1px solid #000;
- border-top: 1px solid #000;
- border-bottom: 1px solid #000;
- }
-
- tr.odd
- {
- border-collapse: collapse;
- border-right: 1px solid #000;
- border-left: 1px solid #000;
- border-top: 1px solid #000;
- border-bottom: 1px solid #000;
- }
-
- table.tabledata
- {
- margin-bottom:2px;
- }
-
- td
- {
- padding: 1px 9px 1px 9px;
- color: <?php echo conf('font_color2') ?>;
- font-family: <?php echo conf('font')?>;
- font-size: <?php echo conf('font_size'); ?>px;
- margin: 2px;
- }
-
-
- th
- {
- padding-right: 10px;
- }
-
-/*************** Main Menu *****************/
- #mainmenu {
- float: left;
- width: 100%;
- margin: 0;
- padding: 0;
- list-style: none;
- border-top: 1px solid #000;
- border-bottom: 1px solid #000;
- background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/tablebg.gif) <?php echo conf('base_color2');?> repeat-x;
- }
- #mainmenu li {
- float: left;
- margin: 0;
- padding: 1px 20px 1px 20px;
- display: inline;
- background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/tablebg.gif) <?php echo conf('base_color2');?> repeat-x;
- }
-
- #mainmenu li.active {
- background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/active.tablebg.gif) <?php echo conf('base_color2');?> repeat-x;
- }
-
- #mainmenu a {
- text-decoration: none;
- }
-
- #mainmenu a:hover {
- color: #000;
- }
-
- #mainmenu a:active {
- color: #00a;
- }
-
-/*************** END Main Menu *************/
-/*************** Admin Menu *************/
- #adminmenu {
- float: left;
- width: 100%;
- margin: 0;
- padding: 0;
- list-style: none;
- border-bottom: 1px solid #000;
- border-right: 1px solid #000;
- border-left: 1px solid #000;
- border-top: 1px solid #000;
- background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-light-bg.gif) <?php echo conf('base_color2')?> repeat;
- }
- #adminmenu li {
- float: left;
- margin: 0;
- padding: 0 20px 0 20px;
- border-right: 1px solid #000;
- display: inline;
- background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-light-bg.gif) <?php echo conf('base_color2');?> repeat-x;
- }
- #adminmenu li.active {
- background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-dark-bg.gif) <?php echo conf('base_color2');?> repeat-x;
- }
- #adminmenu a {
- text-decoration: none;
- }
- #adminmenu a:hover {
- color: #000;
- }
- #adminmenu a:active {
- color: #000;
- }
-/*************** END Main Menu *************/
-/*************** Page Header *********************/
- #pageheader {
- background: <?php echo conf('bgcolor1');?>;
- }
-
- img.pageheader {
- display: block;
- margin-left: auto;
- margin-right: auto;
- }
-
-/*************** END Page Header *****************/
- .navitem
- {
- background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-light-bg.gif) <?php echo conf('base_color2')?> repeat-x;
- vertical-align: top;
- text-align: center;
- }
- .header1
- {
- color: <?php echo conf('font_color2'); ?>;
- font-family: <?php echo conf('font'); ?>;
- font-size: <?php echo conf('font_size') + 6; ?>px;
- font-weight: 900;
- }
- .header2
- {
- color: <?php echo conf('font_color2'); ?>;
- font-family: <?php echo conf('font'); ?>;
- font-size: <?php echo conf('font_size') + 2; ?>px;
- font-weight: 900;
- }
- .active_navitem
- {
- background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-dark-bg.gif) <?php echo conf('bg_color1')?> repeat-x;
- vertical-align: top;
- text-align: center;
- }
-
--->
-</style>
+<?php
+/*
+
+ Copyright (c) 2001 - 2005 Ampache.org
+ All rights reserved.
+
+ This program is free software; you can redistribute it and/or
+ modify it under the terms of the GNU General Public License
+ as published by the Free Software Foundation; either version 2
+ of the License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+*/
+
+/*!
+ @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
+*/
+?>
+<style type="text/css">
+<!--
+ body
+ {
+ padding: 5px 0px 5px 0px;
+ background: <?php echo conf('bg_color1'); ?>;
+ font-family: <?php echo conf('font') ?>;
+ font-size: <?php echo conf('font_size'); ?>pt;
+ color: <?php echo conf('font_color2'); ?>;
+ white-space: nowrap;
+ margin: 2px;
+ }
+
+ p
+ {
+ color: <?php echo conf('font_color2'); ?>;
+ font-family: <?php echo conf('font')?>;
+ font-size: <?php echo conf('font_size'); ?>pt;
+ margin: 8px;
+ white-space: normal;
+ }
+
+ a
+ {
+ color: <?php echo conf('font_color2') ?>;
+ font-family: <?php echo conf('font')?>;
+ }
+ a:visited
+ {
+ color: <?php echo conf('font_color2') ?>;
+ font-family: <?php echo conf('font')?>;
+ }
+ a:hover {
+ text-decoration: underline;
+ }
+ a:active
+ {
+ color: <?php echo conf('font_color2') ?>;
+ font-family: <?php echo conf('font')?>;
+ }
+ .text-box
+ {
+ padding-left:5px;
+ padding-top:5px;
+ margin-bottom:10px;
+ background-color: <?php echo conf('base_color1'); ?>;
+ border-right:2px solid <?php echo conf('bg_color2'); ?>;
+ border-bottom:2px solid <?php echo conf('bg_color2'); ?>;
+ border-left:2px solid <?php echo conf('bg_color2'); ?>;
+ border-top:2px solid <?php echo conf('bg_color2'); ?>;
+ }
+ table.tabledata
+ {
+ border: 0;
+ }
+
+ td
+ {
+ padding: 0px 10px 0px 10px;
+ color: <?php echo conf('font_color2') ?>;
+ font-family: <?php echo conf('font')?>;
+ font-size: <?php echo conf('font_size'); ?>pt;
+ white-space: nowrap;
+ }
+ th
+ {
+ padding-right: 10px;
+ }
+ input
+ {
+ color: <?php echo conf('font_color2'); ?>;
+ font-family: <?php echo conf('font'); ?>;
+ font-size: <?php echo conf('font_size'); ?>px;
+ font-weight: bold;
+ background-color: <?php echo conf('base_color2') ?>;
+ margin: 2px 2px 2px 2px;
+ border-color: #555756;
+ cursor: pointer;
+ }
+ select
+ {
+ color: <?php echo conf('font_color2'); ?>;
+ font-family: <?php echo conf('font')?>;
+ font-size: <?php echo conf('font_size'); ?>pt;
+ background-color: <?php echo conf('base_color2'); ?>;
+
+ }
+ textarea
+ {
+ background-color: <?php echo conf('base_color2'); ?>;
+ color: <?php echo conf('font_color2') ?>;
+ font-family: <?php echo conf('font')?>;
+ font-size: <?php echo conf('font_size'); ?>pt;
+ }
+ .button
+ {
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/tablebg.gif) <?php echo conf('base_color2')?> repeat-x;
+ padding: 2px;
+ border: 0;
+ margin: 2px;
+ }
+
+ ol li a
+ {
+ white-space: nowrap;
+ text-decoration:none;
+ font-weight: 500;
+ }
+ tr td a
+ {
+ text-decoration:none;
+ font-weight: 500;
+ }
+ .login
+ {
+ border-top: 1px solid white;
+ border-bottom: 1px solid white;
+ border-right: 1px solid white;
+ border-left: 1px solid white;
+ }
+ .table-header
+ {
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/tablebg.gif) <?php echo conf('base_color2')?> repeat-x;
+ vertical-align: top;
+ text-align: center;
+ }
+/*************** Main Menu *****************/
+ #mainmenu {
+float:left;
+ width: 1000px;
+ overflow: hidden;
+ margin-left: auto;
+ margin-right: auto;
+ margin-top: 0;
+ margin-bottom: 0;
+ padding: 0px;
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/tablebg.gif) <?php echo conf('base_color2');?> repeat-x;
+ }
+ #mainmenu li {
+ float:left;
+ white-space: nowrap;
+ overflow: hidden;
+ margin: 0 0 0 0;
+ padding: 0 1.5em 0 1.5em;
+ list-style: none outside;
+ font-weight: 600;
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/tablebg.gif) <?php echo conf('base_color2');?> repeat-x;
+ font-size: <?php echo conf('font_size') - 1; ?>pt;
+ }
+ #mainmenu li.active {
+ white-space: nowrap;
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/active.tablebg.gif) <?php echo conf('base_color2');?> repeat-x;
+
+ }
+ #mainmenu a {
+ text-decoration: none;
+ }
+ #mainmenu a:active {
+ color: #00a;
+ }
+ #mainmenu a:hover {
+ color: #000;
+ }
+
+/*************** END Main Menu *************/
+/*************** Admin Menu *************/
+ #adminmenu {
+float:left;
+ width: 1000px;
+ overflow: hidden;
+ margin-left: auto;
+ margin-right: auto;
+ margin-top: 0;
+ margin-bottom: 0;
+ padding: 0px;
+ list-style: none;
+ border: 1px solid #000;
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-light-bg.gif) <?php echo conf('base_color2')?> repeat;
+ }
+ #adminmenu li {
+ white-space: nowrap;
+ float: left;
+ padding: 0 2em 0 2em;
+ border-right: 1px solid #000;
+ display: inline;
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-light-bg.gif) <?php echo conf('base_color2');?> repeat-x;
+ }
+ #adminmenu li.active {
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-dark-bg.gif) <?php echo conf('base_color2');?> repeat-x;
+ }
+ #adminmenu a {
+ text-decoration: none;
+ }
+ #adminmenu a:hover {
+ color: #000;
+ }
+ #adminmenu a:active {
+ color: #000;
+ }
+/*************** END Main Menu *************/
+/*************** Page Header *********************/
+ #pageheader {
+ background: <?php echo conf('bg_color1');?>;
+ }
+
+ #pageheader img {
+ display: block;
+ margin-left: auto;
+ margin-right: auto;
+ margin-bottom: 10px;
+ }
+
+
+
+/*************** END Page Header *****************/
+ .header1
+ {
+ color: <?php echo conf('font_color2'); ?>;
+ font-family: <?php echo conf('font'); ?>;
+ font-size: <?php echo conf('font_size') + 6; ?>pt;
+ font-weight: 800;
+ }
+ .header2
+ {
+ color: <?php echo conf('font_color2'); ?>;
+ font-family: <?php echo conf('font'); ?>;
+ font-size: <?php echo conf('font_size') + 2; ?>pt;
+ font-weight: 800;
+ }
+ .headrow
+ {
+ background:<?php echo conf('row_color1'); ?>;
+ font-size: <?php echo conf('font_size'); ?>pt;
+ }
+ .odd
+ {
+ background:<?php echo conf('row_color2'); ?>;
+ font-size: <?php echo conf('font_size'); ?>pt;
+ padding: 0px 10px 0px 10px;
+ }
+ .even
+ {
+ background:<?php echo conf('row_color3'); ?>;
+ font-size: <?php echo conf('font_size'); ?>pt;
+ padding: 0px 10px 0px 10px;
+ }
+ .blank
+ {
+ background: #fff;
+ }
+ .border
+ {
+ background:<?php echo conf('bg_color2'); ?>;
+ }
+ .header
+ {
+ font-size: <?php echo conf('font_size'); ?>pt;
+ }
+ .error
+ {
+ color: <?php echo conf('error_color'); ?>;
+ }
+ .fatalerror
+ {
+ padding-top: 3px;
+ padding-bottom: 3px;
+ color: <?php echo conf('error_color'); ?>;
+ border-right:4px solid <?php echo conf('error_color'); ?>;
+ border-bottom:4px solid <?php echo conf('error_color'); ?>;
+ border-left:4px solid <?php echo conf('error_color'); ?>;
+ border-top:4px solid <?php echo conf('error_color'); ?>;
+ font-size: <?php echo conf('font_size')+2; ?>pt;
+ font-weight: 900;
+ text-align: center;
+ }
+ .disabled
+ {
+ text-decoration: line-through;
+ }
+ .alphabet
+ {
+ font-size: <?php echo conf('font_size'); ?>pt;
+ font-weight: normal;
+ }
+
+-->
+</style>
+
+
diff --git a/contrib/themes/Sunshine/images/Background.gif b/contrib/themes/Sunshine/images/Background.gif
new file mode 100755
index 00000000..d95c589c
--- /dev/null
+++ b/contrib/themes/Sunshine/images/Background.gif
Binary files differ
diff --git a/contrib/themes/Sunshine/images/ampache-dark-bg.gif b/contrib/themes/Sunshine/images/ampache-dark-bg.gif
new file mode 100755
index 00000000..820d3c14
--- /dev/null
+++ b/contrib/themes/Sunshine/images/ampache-dark-bg.gif
Binary files differ
diff --git a/contrib/themes/Sunshine/images/ampache-light-bg.gif b/contrib/themes/Sunshine/images/ampache-light-bg.gif
new file mode 100755
index 00000000..812464f7
--- /dev/null
+++ b/contrib/themes/Sunshine/images/ampache-light-bg.gif
Binary files differ
diff --git a/contrib/themes/Sunshine/images/ampache-mid.gif b/contrib/themes/Sunshine/images/ampache-mid.gif
new file mode 100755
index 00000000..1aaa27f6
--- /dev/null
+++ b/contrib/themes/Sunshine/images/ampache-mid.gif
Binary files differ
diff --git a/contrib/themes/Sunshine/images/ampache.gif b/contrib/themes/Sunshine/images/ampache.gif
index e780851d..4e9db802 100755
--- a/contrib/themes/Sunshine/images/ampache.gif
+++ b/contrib/themes/Sunshine/images/ampache.gif
Binary files differ
diff --git a/contrib/themes/Sunshine/templates/style.inc b/contrib/themes/Sunshine/templates/style.inc
index 994554cc..4ae46dd0 100755
--- a/contrib/themes/Sunshine/templates/style.inc
+++ b/contrib/themes/Sunshine/templates/style.inc
@@ -1,193 +1,272 @@
-<?php
-/*
-
- Copyright (c) 2001 - 2005 Ampache.org
- All rights reserved.
-
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License
- as published by the Free Software Foundation; either version 2
- of the License, or (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-*/
-
-/*!
- @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
-*/
-?>
-<style type="text/css">
-<!--
- body
- {
- background: <?php echo conf('bg_color1'); ?>;
- font-family: <?php echo conf('font') ?>;
- font-size: <?php echo conf('font_size'); ?>px;
- color: <?php echo conf('font_color2'); ?>;
- }
-
- p
- {
- color: <?php echo conf('font_color2'); ?>;
- font-family: <?php echo conf('font')?>;
- font-size: <?php echo conf('font_size'); ?>px;
- }
- a
- {
- color: <?php echo conf('font_color2') ?>;
- font-family: <?php echo conf('font')?>;
- }
- a:visited
- {
- color: <?php echo conf('font_color2') ?>;
- font-family: <?php echo conf('font')?>;
- }
- a:active
- {
- color: <?php echo conf('font_color2') ?>;
- font-family: <?php echo conf('font')?>;
- }
- .text-box
- {
- padding-left:5px;
- padding-top:5px;
- margin-bottom:10px;
- background-color: <?php echo conf('base_color1'); ?>;
- border-right:2px solid <?php echo conf('bg_color2'); ?>;
- border-bottom:2px solid <?php echo conf('bg_color2'); ?>;
- border-left:2px solid <?php echo conf('bg_color2'); ?>;
- border-top:2px solid <?php echo conf('bg_color2'); ?>;
- }
- table.tabledata
- {
- }
-
- td
- {
- padding: 0px 8px 0px 8px;
- color: <?php echo conf('font_color2') ?>;
- font-family: <?php echo conf('font')?>;
- font-size: <?php echo conf('font_size'); ?>px;
- }
- th
- {
- padding-right: 10px;
- }
- input
- {
- color: <?php echo conf('font_color2'); ?>;
- font-family: <?php echo conf('font'); ?>;
- font-size: <?php echo conf('font_size'); ?>px;
- font-weight: bold;
- background-color: <?php echo conf('base_color2') ?>;
- margin: 2px 2px 2px 2px;
- }
- select {
- color: <?php echo conf('font_color2'); ?>;
- font-family: <?php echo conf('font')?>;
- font-size: <?php echo conf('font_size'); ?>px;
- background-color: <?php echo conf('base_color2') ?>;
- }
- textarea
- {
- background-color: <?php echo conf('base_color2'); ?>;
- color: <?php echo conf('font_color2') ?>;
- font-family: <?php echo conf('font')?>;
- font-size: <?php echo conf('font_size'); ?>px;
- }
- .table-header
- {
- background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-light-bg.gif) <?php echo conf('base_color2')?> repeat-x;
- vertical-align: top;
- }
- .navitem
- {
- background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-light-bg.gif) <?php echo conf('base_color2')?> repeat-x;
- vertical-align: top;
- text-align: center;
- }
- .header1
- {
- color: <?php echo conf('font_color2'); ?>;
- font-family: <?php echo conf('font'); ?>;
- font-size: <?php echo conf('font_size') + 6; ?>px;
- font-weight: 900;
- }
- .header2
- {
- color: <?php echo conf('font_color2'); ?>;
- font-family: <?php echo conf('font'); ?>;
- font-size: <?php echo conf('font_size') + 2; ?>px;
- font-weight: 900;
- }
- .active_navitem
- {
- background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-dark-bg.gif) <?php echo conf('bg_color1')?> repeat-x;
- vertical-align: top;
- text-align: center;
- }
- .headrow
- {
- background:<?php echo conf('row_color1'); ?>;
- font-size: <?php echo conf('font_size'); ?>px;
- }
- .odd
- {
- background:<?php echo conf('row_color2'); ?>;
- font-size: <?php echo conf('font_size'); ?>px;
- }
- .even
- {
- background:<?php echo conf('row_color3'); ?>;
- font-size: <?php echo conf('font_size'); ?>px;
- }
- .blank
- {
- background: #fff;
- }
- .border
- {
- background:<?php echo conf('bg_color2'); ?>;
- }
- .header
- {
- font-size: <?php echo conf('font_size'); ?>px;
- }
- .error
- {
- color: <?php echo conf('error_color'); ?>;
- }
- .fatalerror
- {
- padding-top: 3px;
- padding-bottom: 3px;
- color: <?php echo conf('error_color'); ?>;
- border-right:4px solid <?php echo conf('error_color'); ?>;
- border-bottom:4px solid <?php echo conf('error_color'); ?>;
- border-left:4px solid <?php echo conf('error_color'); ?>;
- border-top:4px solid <?php echo conf('error_color'); ?>;
- font-size: <?php echo conf('font_size')+2; ?>px;
- font-weight: 900;
- text-align: center;
- }
- .disabled
- {
- text-decoration: line-through;
- }
- .alphabet
- {
- font-size: <?php echo conf('font_size'); ?>px;
- font-weight: normal;
- }
--->
-</style>
+<?php
+/*
+
+ Copyright (c) 2001 - 2005 Ampache.org
+ All rights reserved.
+
+ This program is free software; you can redistribute it and/or
+ modify it under the terms of the GNU General Public License
+ as published by the Free Software Foundation; either version 2
+ of the License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+*/
+
+/*!
+ @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
+*/
+?>
+<style type="text/css">
+<!--
+ body
+ {
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/background.gif);?>
+
+ font-family: <?php echo conf('font') ?>;
+ font-size: <?php echo conf('font_size'); ?>px;
+ color: <?php echo conf('font_color2'); ?>;
+ }
+
+ p
+ {
+ color: <?php echo conf('font_color2'); ?>;
+ font-family: <?php echo conf('font')?>;
+ font-size: <?php echo conf('font_size'); ?>px;
+ }
+ a
+ {
+ color: <?php echo conf('font_color2') ?>;
+ font-family: <?php echo conf('font')?>;
+ }
+ a:visited
+ {
+ color: <?php echo conf('font_color2') ?>;
+ font-family: <?php echo conf('font')?>;
+ }
+ a:active
+ {
+ color: <?php echo conf('font_color2') ?>;
+ font-family: <?php echo conf('font')?>;
+ }
+ .text-box
+ {
+ padding-left:5px;
+ padding-top:5px;
+ margin-bottom:10px;
+ background-color: <?php echo conf('base_color1'); ?>;
+ border-right:2px solid <?php echo conf('bg_color2'); ?>;
+ border-bottom:2px solid <?php echo conf('bg_color2'); ?>;
+ border-left:2px solid <?php echo conf('bg_color2'); ?>;
+ border-top:2px solid <?php echo conf('bg_color2'); ?>;
+ }
+ table.tabledata
+ {
+ }
+
+ td
+ {
+ padding: 0px 8px 0px 8px;
+ color: <?php echo conf('font_color2') ?>;
+ font-family: <?php echo conf('font')?>;
+ font-size: <?php echo conf('font_size'); ?>px;
+ }
+ th
+ {
+ padding-right: 10px;
+ }
+ input
+ {
+ color: <?php echo conf('font_color2'); ?>;
+ font-family: <?php echo conf('font'); ?>;
+ font-size: <?php echo conf('font_size'); ?>px;
+ font-weight: bold;
+ background-color: <?php echo conf('base_color2') ?>;
+ border-style: solid;
+ border-width: 1px;
+ border-color: <?php echo conf('bg_color2'); ?>;
+ margin: 2px 2px 2px 2px;
+ }
+ select {
+ color: <?php echo conf('font_color2'); ?>;
+ font-family: <?php echo conf('font')?>;
+ font-size: <?php echo conf('font_size'); ?>px;
+ background-color: <?php echo conf('base_color2') ?>;
+ }
+ textarea
+ {
+ color: <?php echo conf('font_color2') ?>;
+ font-family: <?php echo conf('font')?>;
+ font-size: <?php echo conf('font_size'); ?>px;
+ }
+ .table-header
+ {
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-light-bg.gif) <?php echo conf('base_color2')?> repeat-x;
+ vertical-align: top;
+ }
+/*************** Main Menu *****************/
+ #mainmenu {
+ float: left;
+ width: 100%;
+ margin: 0;
+ padding: 0;
+ list-style: none;
+ border-top: 1px solid #000;
+ border-bottom: 1px solid #000;
+ border-right: 1px solid #000;
+ border-left: 1px solid #000;
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-light-bg.gif) <?php echo conf('base_color2');?> repeat-x;
+peat-x;
+ }
+ #mainmenu li {
+ float: left;
+ margin: 0;
+ padding: 0 10px 0 10px;
+ border-right: 1px solid #000;
+ display: inline;
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-light-bg.gif) <?php echo conf('base_color2');?> repeat-x;
+peat-x;
+ }
+ #mainmenu li.active {
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-dark-bg.gif) <?php echo conf('base_color2');?> rep
+eat-x;
+ }
+ #mainmenu a {
+ text-decoration: none;
+ }
+ #mainmenu a:hover {
+ color: #000;
+ }
+ #mainmenu a:active {
+ color: #00a;
+ }
+/*************** END Main Menu *************/
+/*************** Admin Menu *************/
+ #adminmenu {
+ float: left;
+ width: 100%;
+ margin: 0;
+ padding: 0;
+ list-style: none;
+ border-bottom: 1px solid #000;
+ border-right: 1px solid #000;
+ border-left: 1px solid #000;
+ border-top: 1px solid #000;
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-light-bg.gif) <?php echo conf('base_color2')?> repeat;
+ }
+ #adminmenu li {
+ float: left;
+ margin: 0;
+ padding: 0 20px 0 20px;
+ border-right: 1px solid #000;
+ display: inline;
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-light-bg.gif) <?php echo conf('base_color2');?> repeat-x;
+ }
+ #adminmenu li.active {
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-dark-bg.gif) <?php echo conf('base_color2');?> repeat-x;
+ }
+ #adminmenu a {
+ text-decoration: none;
+ }
+ #adminmenu a:hover {
+ color: #000;
+ }
+ #adminmenu a:active {
+ color: #000;
+ }
+/*************** END Main Menu *************/
+/*************** Page Header *********************/
+ #pageheader {
+ background: <?php echo conf('bgcolor1');?>;
+ }
+/*************** END Page Header *****************/
+ .navitem
+ {
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-light-bg.gif) <?php echo conf('base_color2')?> repeat-x;
+ vertical-align: top;
+ text-align: center;
+ }
+ .header1
+ {
+ color: <?php echo conf('font_color2'); ?>;
+ font-family: <?php echo conf('font'); ?>;
+ font-size: <?php echo conf('font_size') + 6; ?>px;
+ font-weight: 900;
+ }
+ .header2
+ {
+ color: <?php echo conf('font_color2'); ?>;
+ font-family: <?php echo conf('font'); ?>;
+ font-size: <?php echo conf('font_size') + 2; ?>px;
+ font-weight: 900;
+ }
+ .active_navitem
+ {
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-dark-bg.gif) <?php echo conf('bg_color1')?> repeat-x;
+ vertical-align: top;
+ text-align: center;
+ }
+ .headrow
+ {
+ background:<?php echo conf('row_color1'); ?>;
+ font-size: <?php echo conf('font_size'); ?>px;
+ }
+ .odd
+ {
+ background:<?php echo conf('row_color2'); ?>;
+ font-size: <?php echo conf('font_size'); ?>px;
+ }
+ .even
+ {
+ background:<?php echo conf('row_color3'); ?>;
+ font-size: <?php echo conf('font_size'); ?>px;
+ }
+ .blank
+ {
+ background: #fff;
+ }
+ .border
+ {
+ background:<?php echo conf('bg_color2'); ?>;
+ }
+ .header
+ {
+ font-size: <?php echo conf('font_size'); ?>px;
+ }
+ .error
+ {
+ color: <?php echo conf('error_color'); ?>;
+ }
+ .fatalerror
+ {
+ padding-top: 3px;
+ padding-bottom: 3px;
+ color: <?php echo conf('error_color'); ?>;
+ border-right:4px solid <?php echo conf('error_color'); ?>;
+ border-bottom:4px solid <?php echo conf('error_color'); ?>;
+ border-left:4px solid <?php echo conf('error_color'); ?>;
+ border-top:4px solid <?php echo conf('error_color'); ?>;
+ font-size: <?php echo conf('font_size')+2; ?>px;
+ font-weight: 900;
+ text-align: center;
+ }
+ .disabled
+ {
+ text-decoration: line-through;
+ }
+ .alphabet
+ {
+ font-size: <?php echo conf('font_size'); ?>px;
+ font-weight: normal;
+ }
+-->
+</style>
diff --git a/contrib/themes/Total_Blue/images/ampache.gif b/contrib/themes/Total_Blue/images/ampache.gif
index 96ba8d6e..4e9db802 100644
--- a/contrib/themes/Total_Blue/images/ampache.gif
+++ b/contrib/themes/Total_Blue/images/ampache.gif
Binary files differ
diff --git a/contrib/themes/Total_Blue/images/background.gif b/contrib/themes/Total_Blue/images/background.gif
new file mode 100755
index 00000000..d8f219ae
--- /dev/null
+++ b/contrib/themes/Total_Blue/images/background.gif
Binary files differ
diff --git a/contrib/themes/Total_Blue/templates/style.inc b/contrib/themes/Total_Blue/templates/style.inc
index 8fc1e9e8..4ae46dd0 100644
--- a/contrib/themes/Total_Blue/templates/style.inc
+++ b/contrib/themes/Total_Blue/templates/style.inc
@@ -30,7 +30,8 @@
<!--
body
{
- background: <?php echo conf('bg_color1'); ?>;
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/background.gif);?>
+
font-family: <?php echo conf('font') ?>;
font-size: <?php echo conf('font_size'); ?>px;
color: <?php echo conf('font_color2'); ?>;
@@ -90,6 +91,10 @@
font-size: <?php echo conf('font_size'); ?>px;
font-weight: bold;
background-color: <?php echo conf('base_color2') ?>;
+ border-style: solid;
+ border-width: 1px;
+ border-color: <?php echo conf('bg_color2'); ?>;
+ margin: 2px 2px 2px 2px;
}
select {
color: <?php echo conf('font_color2'); ?>;
@@ -108,6 +113,82 @@
background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-light-bg.gif) <?php echo conf('base_color2')?> repeat-x;
vertical-align: top;
}
+/*************** Main Menu *****************/
+ #mainmenu {
+ float: left;
+ width: 100%;
+ margin: 0;
+ padding: 0;
+ list-style: none;
+ border-top: 1px solid #000;
+ border-bottom: 1px solid #000;
+ border-right: 1px solid #000;
+ border-left: 1px solid #000;
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-light-bg.gif) <?php echo conf('base_color2');?> repeat-x;
+peat-x;
+ }
+ #mainmenu li {
+ float: left;
+ margin: 0;
+ padding: 0 10px 0 10px;
+ border-right: 1px solid #000;
+ display: inline;
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-light-bg.gif) <?php echo conf('base_color2');?> repeat-x;
+peat-x;
+ }
+ #mainmenu li.active {
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-dark-bg.gif) <?php echo conf('base_color2');?> rep
+eat-x;
+ }
+ #mainmenu a {
+ text-decoration: none;
+ }
+ #mainmenu a:hover {
+ color: #000;
+ }
+ #mainmenu a:active {
+ color: #00a;
+ }
+/*************** END Main Menu *************/
+/*************** Admin Menu *************/
+ #adminmenu {
+ float: left;
+ width: 100%;
+ margin: 0;
+ padding: 0;
+ list-style: none;
+ border-bottom: 1px solid #000;
+ border-right: 1px solid #000;
+ border-left: 1px solid #000;
+ border-top: 1px solid #000;
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-light-bg.gif) <?php echo conf('base_color2')?> repeat;
+ }
+ #adminmenu li {
+ float: left;
+ margin: 0;
+ padding: 0 20px 0 20px;
+ border-right: 1px solid #000;
+ display: inline;
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-light-bg.gif) <?php echo conf('base_color2');?> repeat-x;
+ }
+ #adminmenu li.active {
+ background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-dark-bg.gif) <?php echo conf('base_color2');?> repeat-x;
+ }
+ #adminmenu a {
+ text-decoration: none;
+ }
+ #adminmenu a:hover {
+ color: #000;
+ }
+ #adminmenu a:active {
+ color: #000;
+ }
+/*************** END Main Menu *************/
+/*************** Page Header *********************/
+ #pageheader {
+ background: <?php echo conf('bgcolor1');?>;
+ }
+/*************** END Page Header *****************/
.navitem
{
background: url(<?php echo conf('web_path'); ?><?php echo conf('theme_path'); ?>/images/ampache-light-bg.gif) <?php echo conf('base_color2')?> repeat-x;