source: branches/2.1/admin/themes/default/template/tabsheet.tpl @ 6347

Last change on this file since 6347 was 6323, checked in by plg, 14 years ago

merge r6320 from trunk to branch 2.1

bug 1667 fixed: r6027 was fixing a minor error on tabs for Google Chrome/Safari
BUT was introducing a major visual issue for IE8. Backmerged + adds the -webkit
radius anyway.

This is a quickfix for release 2.1.1, the improved display introduced by nikrou
was nice and it would be better to have it, but working in IE8

File size: 284 bytes
Line 
1{if isset($tabsheet) and count($tabsheet)}
2<ul class="tabsheet">
3{foreach from=$tabsheet key=name item=sheet}
4  <li class="{if ($name == $tabsheet_selected)}selected_tab{else}normal_tab{/if}">
5    <a href="{$sheet.url}"><span>{$sheet.caption}</span></a>
6  </li>
7{/foreach}
8</ul>
9{/if}
Note: See TracBrowser for help on using the repository browser.