diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-27 04:16:23 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-27 04:16:23 +0000 |
commit | 601f406d26abfd6fe7256f4e26878cd4e2c9a7e6 (patch) | |
tree | 3abfb04f0e9336ff5a3d9f3552f5bc3b462441a2 | |
parent | b0b5b2a0415707f6c61650e95410b0e6f7aa560d (diff) | |
download | ampache-601f406d26abfd6fe7256f4e26878cd4e2c9a7e6.tar.gz ampache-601f406d26abfd6fe7256f4e26878cd4e2c9a7e6.tar.bz2 ampache-601f406d26abfd6fe7256f4e26878cd4e2c9a7e6.zip |
fixed steel theme
-rw-r--r-- | contrib/themes/steel/templates/default.css | 108 | ||||
-rw-r--r-- | contrib/themes/steel/theme.cfg.php | 44 |
2 files changed, 27 insertions, 125 deletions
diff --git a/contrib/themes/steel/templates/default.css b/contrib/themes/steel/templates/default.css index e3ad0d3c..1da30586 100644 --- a/contrib/themes/steel/templates/default.css +++ b/contrib/themes/steel/templates/default.css @@ -1,4 +1,3 @@ -<?php /* Copyright (c) 2001 - 2005 Ampache.org @@ -20,14 +19,6 @@ */ -/*! - @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: #05212B; @@ -122,14 +113,14 @@ textarea { color: #CCCCCC; font-family: Verdana; - font-size: <?php echo conf('font_size') + 6; ?>px; + font-size: 17px; font-weight: 900; } .header2 { color: #CCCCCC; font-family: Verdana; - font-size: <?php echo conf('font_size') + 2; ?>px; + font-size: 14px; font-weight: 900; } .headrow @@ -173,7 +164,7 @@ textarea border-bottom:4px solid #FF8080; border-left:4px solid #FF8080; border-top:4px solid #FF8080; - font-size: <?php echo conf('font_size')+2; ?>px; + font-size: 12px; font-weight: 900; text-align: center; } @@ -187,88 +178,41 @@ textarea font-weight: normal; } -/*************** Main Menu *****************/ - -#mainmenu { - float: left; - width: 100%; - margin: 0; - padding: 0; - list-style: none; - border: 1px solid #607080; - background: #283848; -} - -#mainmenu li { - float: left; - margin: 0; - padding: 0 10px 0 10px; - border-right: 1px solid #607080; - display: inline; - background: #283848; -} - -#mainmenu li.active { - background: #405060; -} - -#mainmenu a { - text-decoration: none; -} - -#mainmenu a:hover { - text-decoration: underline; -} +.box-left-top { display: none; } +.box-left-bottom { display: none; } +.box-left { display: none; } +.box-right-top { display: none; } +.box-right-bottom { display: none; } +.box-right { display: none; } +.box-bottom { display: none; } +.box-top { display: none; } +.box { background: #405060; margin: 10px; } -#mainmenu a:active { -} +.text-action a,.text-action li { background: #405060; } -/*************** END Main Menu *************/ +/*************** Main Menu *****************/ -/*************** Admin Menu *************/ +#sidebar h3 { display:none; } -#adminmenu { - float: left; - width: 100%; +#sidebar li { + /* float: left; Uncomment for horizontal */ margin: 0; - padding: 0; - list-style: none; - border: 1px solid #607080; - background: #283848; -} - -#adminmenu li { - float: left; - margin: 0; - padding: 0 10px 0 10px; border-right: 1px solid #607080; - display: inline; + border-bottom: 1px solid #607080; + display: block; background: #283848; + padding: 5px 0px 5px 10px; + width: 10.5em; } -#adminmenu li.active { - background: #405060; -} - -#adminmenu a { - text-decoration: none; -} - -#adminmenu a:hover { - text-decoration: underline; -} -#adminmenu a:active { +#sidebar li:hover { + background: #405060; } -/*************** END Main Menu *************/ -/*************** Page Header *********************/ - -#pageheader { +#sidebar li:active { + background-color:#FFFFFF; + z-index:30; } -/*************** END Page Header *****************/ - ---> -</style> diff --git a/contrib/themes/steel/theme.cfg.php b/contrib/themes/steel/theme.cfg.php index f54f87e6..7b5ea38f 100644 --- a/contrib/themes/steel/theme.cfg.php +++ b/contrib/themes/steel/theme.cfg.php @@ -28,47 +28,5 @@ maintainer = "Nedko Arnaudov <nedko@users.sourceforge.net>" # 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" - - -# Theme Colors -################### -[color] -################### -# Below is a list of the default colors for this theme, upon -# applying this theme the users color preferences will be reset -# to what is listed below... - -# Background Color 1 -bg_color1 = "#05212B" - -# Background Color 2 -bg_color2 = "#607080" - -# Base Color 1 -base_color1 = "#15313B" - -# Base Color 2 -base_color2 = "#15313B" - -# Font Color 1 -font_color1 = "#222222" - -# Font Color 2 -font_color2 = "#CCCCCC" - -# Font Color 3 -font_color3 = "#FFFFFF" - -# Row Color 1 -row_color1 = "#CCCCCC" - -# Row Color 2 -row_color2 = "#405060" - -# Row Color 3 -row_color3 = "#304050" - -# Error Color -error_color = "#FF8080" +version = "1.2" |