Skip to content

Commit

Permalink
bug:2688
Browse files Browse the repository at this point in the history
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
  • Loading branch information
flop25 committed Jul 17, 2012
1 parent 6518f7b commit c6128fb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
14 changes: 5 additions & 9 deletions themes/Sylvia/theme.css
Expand Up @@ -194,20 +194,16 @@
}
.thumbnailCategory .illustration {
background:transparent url(images/cat_top-left.gif) no-repeat scroll left top;
padding: 0 0 0 10px;
margin: 0 !important;
padding: 0 5px 0 10px;
margin: 0 !important;
text-align: center;
}
.thumbnailCategory .illustration a {
display: block;
margin: 0;
padding: 15px 4px 0;
margin: 0 auto;
padding: 20px 4px 0;
border:0;
}
.thumbnailCategory .illustration img {
border-radius: 0 10px 0 10px;
-moz-border-radius: 0 10px 0 10px;
-webkit-border-radius: 0 10px 0 10px;
}
.thumbnailCategory .description {
background:transparent url(images/cat_top-right.gif) no-repeat scroll right top;
margin: 0;
Expand Down
11 changes: 8 additions & 3 deletions themes/Sylvia/themeconf.inc.php
Expand Up @@ -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;
}
?>

0 comments on commit c6128fb

Please sign in to comment.