diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-03-20 22:32:22 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-03-20 22:32:22 +0000 |
commit | 13546d724aab3489eb049221d6454c4916670f1d (patch) | |
tree | 92bca6c78aa4dc2ba1850930be809172da3e494c | |
parent | 5952330a729613745925db18e0c332d30c4558b4 (diff) | |
download | ampache-13546d724aab3489eb049221d6454c4916670f1d.tar.gz ampache-13546d724aab3489eb049221d6454c4916670f1d.tar.bz2 ampache-13546d724aab3489eb049221d6454c4916670f1d.zip |
fixed preferences thx warreng
-rwxr-xr-x | docs/CHANGELOG | 1 | ||||
-rw-r--r-- | templates/basestyle.inc.php | 5 | ||||
-rw-r--r-- | templates/style.inc | 14 | ||||
-rw-r--r-- | themes/greyblock/templates/style.inc | 1 |
4 files changed, 5 insertions, 16 deletions
diff --git a/docs/CHANGELOG b/docs/CHANGELOG index 1dec252c..bc0b855d 100755 --- a/docs/CHANGELOG +++ b/docs/CHANGELOG @@ -4,6 +4,7 @@ -------------------------------------------------------------------------- v.3.3.2-Beta2 + - Fixed css issues with preferences (Thx WarrenG) - Added dump album art command line script and tweaked catalog build display. - Tweaked preferences adding tab'd views rather then all on one diff --git a/templates/basestyle.inc.php b/templates/basestyle.inc.php index d33ab9f5..f22c5e46 100644 --- a/templates/basestyle.inc.php +++ b/templates/basestyle.inc.php @@ -214,7 +214,6 @@ #tablist { padding: 3px 0; margin: 12px 0 0 0; - border-bottom: 1px solid <?php echo conf('bg_color2'); ?>; font: bold 12px Verdana, sans-serif; } @@ -246,7 +245,7 @@ color: <?php echo conf('font_color2'); ?>; background: <?php echo conf('row_color2'); ?>; border-color: <?php echo conf('bg_color2'); ?>; - border-bottom: 1px solid <?php echo conf('bg_color2'); ?>; + border-bottom: 1px solid <?php echo conf('bg_color2'); ?>; } /* Other Required Styles */ .confirmation-box { @@ -254,7 +253,7 @@ padding-top:5px; padding-right:5px; margin-bottom:10px; - width:40em; + 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/templates/style.inc b/templates/style.inc index 984fe817..a12bc5ad 100644 --- a/templates/style.inc +++ b/templates/style.inc @@ -63,6 +63,7 @@ } .text-box { + display: table-cell; padding-left:5px; padding-top:5px; padding-right:5px; @@ -73,19 +74,6 @@ border-left:2px solid <?php echo conf('bg_color2'); ?>; border-top:2px solid <?php echo conf('bg_color2'); ?>; } - .confirmation-box - { - padding-left:5px; - padding-top:5px; - padding-right:5px; - margin-bottom:10px; - width:35em; - 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'); ?>; - } .selected_button { background-color: black;color:white; diff --git a/themes/greyblock/templates/style.inc b/themes/greyblock/templates/style.inc index 204c074e..cb21634e 100644 --- a/themes/greyblock/templates/style.inc +++ b/themes/greyblock/templates/style.inc @@ -66,6 +66,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'); ?>; |