diff --git a/templates/slik/_icons.phtml b/templates/slik/_icons.phtml index 9ca28e9..7b2764b 100644 --- a/templates/slik/_icons.phtml +++ b/templates/slik/_icons.phtml @@ -10,15 +10,17 @@ list as $key => $item): $info = ($item['type'] == 'file') ? $item[$config->tpl_file_info] : $item[$config->tpl_folder_info] ; $thumbnail = (Icon::is_image($item['ext']) && $config->thumbnails) ? ", '".Icon::get_thumbnail_url($item['name'], $config->tpl_preview_width, $config->tpl_preview_height)."'" : '' ; ?>
  • - - owner?>:
    - group?>:
    - perms?>:
    - chmod?>:
    - mtime?>:
    - atime?>:
    - owner_id?>:
    - group_id?>:
    +
    +owner.': '.$item['owner'].'
    '; + if ( !empty($fields['group']) ) echo $lang->group.': '.$item['group'].'
    '; + if ( !empty($fields['perms']) ) echo $lang->perms.': '.$item['perms'].'
    '; + if ( !empty($fields['chmod']) ) echo $lang->chmod.': '.$item['chmod'].'
    '; + if ( !empty($fields['mtime']) && $item['type'] == 'file' ) echo $lang->mtime.': '.$item['mtime'].'
    '; + if ( !empty($fields['atime']) ) echo $lang->atime.': '.$item['atime'].'
    '; + if ( !empty($fields['owner_id']) ) echo $lang->owner_id.': '.$item['owner_id'].'
    '; + if ( !empty($fields['group_id']) ) echo $lang->group_id.': '.$item['group_id'].'
    '; +?>

    tpl_file_maxlength, $config->tpl_wordbreak)?>

    diff --git a/templates/slik/stylesheets/screen.css b/templates/slik/stylesheets/screen.css index 67f1e02..6c63f6c 100644 --- a/templates/slik/stylesheets/screen.css +++ b/templates/slik/stylesheets/screen.css @@ -549,6 +549,13 @@ A:hover { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; } +.pop-text .name { + border-bottom: 1px solid #DDD; + padding-bottom: 2px; + margin-bottom: 2px; + font-weight: bold; + text-align: center; +} .preview { border-top: 1px solid #DDD; margin-top: 4px;