summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xdocs/CHANGELOG1
-rw-r--r--templates/basestyle.inc.php5
-rw-r--r--templates/style.inc14
-rw-r--r--themes/greyblock/templates/style.inc1
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'); ?>;