aboutsummaryrefslogtreecommitdiffstats
path: root/themes/Sylvia/themeconf.inc.php
diff options
context:
space:
mode:
authorflop25 <flop25@piwigo.org>2012-07-17 13:47:31 +0000
committerflop25 <flop25@piwigo.org>2012-07-17 13:47:31 +0000
commitc6128fb4852405671b49a1737a97557f6aea53ae (patch)
treeadc2938548846882cc56361221806b6f825790f5 /themes/Sylvia/themeconf.inc.php
parent6518f7b5ac1c57f24026dad24aeaf78125ad0663 (diff)
bug:2688
changing padding margin... +10 px for .thumbnailCategory .description using a prefilter git-svn-id: http://piwigo.org/svn/trunk@16800 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r--themes/Sylvia/themeconf.inc.php11
1 files changed, 8 insertions, 3 deletions
diff --git a/themes/Sylvia/themeconf.inc.php b/themes/Sylvia/themeconf.inc.php
index e06d2b465..b1523d611 100644
--- a/themes/Sylvia/themeconf.inc.php
+++ b/themes/Sylvia/themeconf.inc.php
@@ -23,11 +23,16 @@ function Sylvia_album($tpl_thumbnails_var)
}
function Sylvia_album_prefilter($content, &$smarty)
{
- $search = '#\{html_style\}#';
- $replacement = '{html_style}
+ $search = '#\{html_style\}#';
+ $replacement = '{html_style}
.thumbnailCategory .description .text{ldelim}
height: {$derivative_params->max_height()-30}px;
}';
- return preg_replace($search, $replacement, $content);
+ $content = preg_replace($search, $replacement, $content);
+ $search = '#\.thumbnailCategory[\t ]*.description\{ldelim\}[\s]*height:[\t ]*\{\$derivative_params->max_height\(\)\+5#';
+ $replacement = '.thumbnailCategory .description{ldelim}
+ height: {$derivative_params->max_height()+15';
+ $content = preg_replace($search, $replacement, $content);
+ return $content;
}
?>