source: branches/2.1/admin/themes/default/template/themes_new.tpl @ 6348

Last change on this file since 6348 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: 570 bytes
Line 
1<div class="titrePage">
2  <h2>{'Add New Theme'|@translate}</h2>
3</div>
4
5{if not empty($new_themes)}
6<div class="themeBoxes">
7{foreach from=$new_themes item=theme name=themes_loop}
8  <div class="themeBox">
9    <div class="themeName">{$theme.name}</div>
10    <div class="themeShot"><img src="{$theme.screenshot}" onerror="this.src='{$default_screenshot}'"></div>
11    <div class="themeActions"><a href="{$theme.install_url}">{'Install'|@translate}</a></div>
12  </div>
13{/foreach}
14</div> <!-- themeBoxes -->
15{else}
16<p>{'There is no other theme available.'|@translate}</p>
17{/if}
Note: See TracBrowser for help on using the repository browser.