diff options
-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'); ?>; |