diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-03-20 22:31:57 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-03-20 22:31:57 +0000 |
commit | 5952330a729613745925db18e0c332d30c4558b4 (patch) | |
tree | c99f18fb3c3a4b27fe13d7d9cd1c45bd6274ca07 /contrib/themes | |
parent | c5a7e97fa828975973fe6031553abb0eb9b225f4 (diff) | |
download | ampache-5952330a729613745925db18e0c332d30c4558b4.tar.gz ampache-5952330a729613745925db18e0c332d30c4558b4.tar.bz2 ampache-5952330a729613745925db18e0c332d30c4558b4.zip |
fixed a few themes
Diffstat (limited to 'contrib/themes')
-rwxr-xr-x | contrib/themes/Clean/templates/style.inc | 5 | ||||
-rwxr-xr-x | contrib/themes/Clean_Green/templates/style.inc | 5 | ||||
-rwxr-xr-x | contrib/themes/OSXish/templates/style.inc | 1 | ||||
-rw-r--r-- | contrib/themes/dark/templates/style.inc | 1 | ||||
-rw-r--r-- | contrib/themes/simple_matrix/templates/style.inc | 1 |
5 files changed, 11 insertions, 2 deletions
diff --git a/contrib/themes/Clean/templates/style.inc b/contrib/themes/Clean/templates/style.inc index 189a0571..e0c6d9b3 100755 --- a/contrib/themes/Clean/templates/style.inc +++ b/contrib/themes/Clean/templates/style.inc @@ -74,7 +74,10 @@ a:active {text-decoration: underline;} img{border: thin outset Silver;}
p img{border:none;}/*no border on login page logo.*/
-.text-box{border: thin outset;}
+.text-box{
+ border: thin outset;
+ display: table-cell;
+}
H3{font-size: <?php echo conf('font_size')+2; ?>px;}
TABLE{
border-collapse: separate;
diff --git a/contrib/themes/Clean_Green/templates/style.inc b/contrib/themes/Clean_Green/templates/style.inc index 189a0571..fd52e48a 100755 --- a/contrib/themes/Clean_Green/templates/style.inc +++ b/contrib/themes/Clean_Green/templates/style.inc @@ -74,7 +74,10 @@ a:active {text-decoration: underline;} img{border: thin outset Silver;}
p img{border:none;}/*no border on login page logo.*/
-.text-box{border: thin outset;}
+.text-box{
+ border: thin outset;
+ display: table-cell;
+}
H3{font-size: <?php echo conf('font_size')+2; ?>px;}
TABLE{
border-collapse: separate;
diff --git a/contrib/themes/OSXish/templates/style.inc b/contrib/themes/OSXish/templates/style.inc index 2af86e9c..30ba7878 100755 --- a/contrib/themes/OSXish/templates/style.inc +++ b/contrib/themes/OSXish/templates/style.inc @@ -62,6 +62,7 @@ { padding-left:5px; padding-top:5px; + display: table-cell; margin-bottom:10px; background-color: <?php echo conf('base_color1'); ?>; border-right:2px solid <?php echo conf('bg_color2'); ?>; diff --git a/contrib/themes/dark/templates/style.inc b/contrib/themes/dark/templates/style.inc index 8f7a32ae..7cecba13 100644 --- a/contrib/themes/dark/templates/style.inc +++ b/contrib/themes/dark/templates/style.inc @@ -62,6 +62,7 @@ a:active padding-left:5px; padding-top:5px; margin-bottom:10px; + display: table-cell; 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'); ?>; diff --git a/contrib/themes/simple_matrix/templates/style.inc b/contrib/themes/simple_matrix/templates/style.inc index 338ba43a..52a34945 100644 --- a/contrib/themes/simple_matrix/templates/style.inc +++ b/contrib/themes/simple_matrix/templates/style.inc @@ -73,6 +73,7 @@ a:active { padding-left:5px; padding-top:5px; + display: table-cell; margin-bottom:10px; background-color: <?php echo conf('base_color1'); ?>; border-right:2px solid <?php echo conf('bg_color2'); ?>; |