Ignore:
Timestamp:
Jul 24, 2012, 8:09:45 PM (12 years ago)
Author:
flop25
Message:

merge r16800 & r16799 from trunk to 2.4 branch

bug:2688
changing padding margin...
+10 px for .thumbnailCategory .description using a prefilter

changing the padding
adding a prefilter to a height for .thumbnailCategory .description .text

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.4/themes/Sylvia/themeconf.inc.php

    r10351 r16984  
    1414  'mime_icon_dir' => 'themes/Sylvia/icon/mimetypes/',
    1515);
     16/************************************ mainpage_categories.tpl ************************************/
     17add_event_handler('loc_end_index_category_thumbnails', 'Sylvia_album');
     18function Sylvia_album($tpl_thumbnails_var)
     19{
     20    global $template;
     21    $template->set_prefilter('index_category_thumbnails', 'Sylvia_album_prefilter');
     22    return $tpl_thumbnails_var;
     23}
     24function Sylvia_album_prefilter($content, &$smarty)
     25{
     26  $search = '#\{html_style\}#';
     27  $replacement = '{html_style}
     28.thumbnailCategory .description .text{ldelim}
     29        height: {$derivative_params->max_height()-30}px;
     30}';
     31  $content = preg_replace($search, $replacement, $content);
     32  $search = '#\.thumbnailCategory[\t ]*.description\{ldelim\}[\s]*height:[\t ]*\{\$derivative_params->max_height\(\)\+5#';
     33  $replacement = '.thumbnailCategory .description{ldelim}
     34        height: {$derivative_params->max_height()+15';
     35  $content = preg_replace($search, $replacement, $content);
     36  return $content;
     37}
    1638?>
Note: See TracChangeset for help on using the changeset viewer.