Changeset 5923


Ignore:
Timestamp:
Apr 19, 2010, 10:53:02 PM (14 years ago)
Author:
rvelices
Message:
  • fix display of thumbnail in IE8 (replaced conditional css includes as it was in version 2.0)
  • remove local_head.tpl for default theme (avoid loading another file on every page hit - put the content of local_head.tpl in header.tpl)
Location:
trunk/themes/default
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/themes/default/template/header.tpl

    r5454 r5923  
    3535{if isset($theme.local_head)}{include file=$theme.local_head}{/if}
    3636{/foreach}
     37{* the next css is used to fix khtml (Konqueror/Safari) issue the "text/nonsense" prevents gecko based browsers to load it *}
     38<link rel="stylesheet" type="text/nonsense" href="{$ROOT_URL}themes/default/fix-khtml.css">
     39<!--[if lt IE 7]>
     40        <link rel="stylesheet" type="text/css" href="{$ROOT_URL}themes/default/fix-ie5-ie6.css">
     41<![endif]-->
     42<!--[if IE 7]>
     43        <link rel="stylesheet" type="text/css" href="{$ROOT_URL}themes/default/fix-ie7.css">
     44<![endif]-->
     45<!--[if !IE]> <-->
     46        <link rel="stylesheet" href="{$ROOT_URL}themes/default/not-ie.css" type="text/css">
     47<!--> <![endif]-->
     48<link rel="stylesheet" type="text/css" media="print" href="{$ROOT_URL}themes/default/print.css">
    3749
    3850{if isset($U_PREFETCH)          }<link rel="prefetch" href="{$U_PREFETCH}">{/if}
     
    6981        {foreach from=$header_notes item=elt}
    7082        <p>{$elt}</p>
    71         {/foreach}
     83        {/foreach}
    7284</div>
    7385{/if}
  • trunk/themes/default/themeconf.inc.php

    r5177 r5923  
    44  'icon_dir'      => 'themes/default/icon',
    55  'mime_icon_dir' => 'themes/default/icon/mimetypes/',
    6   'local_head'    => 'local_head.tpl',
    76);
    87?>
Note: See TracChangeset for help on using the changeset viewer.