diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-12-25 10:04:27 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-12-25 10:04:27 +0000 |
commit | 27158141ee1a14b7d23ae8997d2c41b49fc904d9 (patch) | |
tree | 2180fff67d21ffdbab32f2105cff3c7275b6b511 /themes | |
parent | 5415c2e847032896907946c98d68a254399e4416 (diff) | |
download | ampache-27158141ee1a14b7d23ae8997d2c41b49fc904d9.tar.gz ampache-27158141ee1a14b7d23ae8997d2c41b49fc904d9.tar.bz2 ampache-27158141ee1a14b7d23ae8997d2c41b49fc904d9.zip |
initial ratings mojo, some stylesheet fixes, changed user preferences again and a db update
Diffstat (limited to 'themes')
-rwxr-xr-x | themes/classic/images/ampache.gif | bin | 9492 -> 6343 bytes | |||
-rw-r--r-- | themes/greyblock/templates/style.inc | 108 |
2 files changed, 108 insertions, 0 deletions
diff --git a/themes/classic/images/ampache.gif b/themes/classic/images/ampache.gif Binary files differindex 3e54f9ce..fb110191 100755 --- a/themes/classic/images/ampache.gif +++ b/themes/classic/images/ampache.gif diff --git a/themes/greyblock/templates/style.inc b/themes/greyblock/templates/style.inc index 3f4bbd64..64fe72f7 100644 --- a/themes/greyblock/templates/style.inc +++ b/themes/greyblock/templates/style.inc @@ -264,5 +264,113 @@ font-size: <?php echo conf('font_size'); ?>px; font-weight: normal; } + #sidebar a:hover + { + color: #000; + background-color: #ccc; + text-decoration: none; + } + + #sidebar ul ul li { margin: 0 0 1px 0; } + + #sidebar ul ul a + { + display: block; + padding: 5px 5px 5px 30px; + width: 125px; + color: #000; + background-color: #ccc; + text-decoration: none; + } + + #sidebar ul + { + margin-left:0px; + margin-top:0px; + margin-bottom:0px; + margin-right: 10px; + padding: 0px; + list-style-type: none; + font-family: verdana, arial, Helvetica, sans-serif; + } + + #sidebar li { + margin: 0 0 1px 0; + padding-top:0px; + padding-bottom:0px; + } + + #sidebar a, .navbutton + { + display: block; + padding: 5px 10px; + color: #000; + background-color: #666; + text-decoration: none; + } + +/** + * Div Definitions + * These define how the page is layed out, be careful with these as changes to them + * can cause drastic layout changes + */ + #maincontrainer + { + margin: 0px; + } + #topbar + { + height: 80px; + background-color: <?php echo conf('bg_color1'); ?>; + } + #topbarright + { + float: right; + } + #topbarleft + { + float: left; + } + #sidebar + { + clear: both; + height: 100%; + margin-left: 0px; + margin-top:0px; + float: left; + width: 170px; + } + #navcontainer ul li + { + float:left; + width:100%; + } + + .subnavbutton + { + background-color: <?php echo conf('row_color1'); ?>; + text-align:center; + text-decoration: none; + color: #000; + } + + #sidebar ul ul a:hover + { + color: <?php echo conf('font_color3'); ?>; + background-color: <?php echo conf('row_color2'); ?>; + text-decoration: none; + } + #content + { + margin-left:0px; + padding-top:10px; + padding-left:10px; + vertical-align:top; + } +/** + * End Div Definitions + * This is the end of the main structure def's + */ + --> </style> |