Changeset 2334 for trunk/template/yoga
- Timestamp:
- May 8, 2008, 3:13:13 AM (17 years ago)
- Location:
- trunk/template/yoga
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/template/yoga/admin/plugins_list.tpl
r2293 r2334 19 19 </tr> 20 20 </thead> 21 {html_head} {*add the style to html head for strict standard compliance*} 22 <style type="text/css"> 23 TABLE.table2 TR TD.pluginState {ldelim} 24 padding-left:16px; 25 } 26 TABLE.table2 TR TD.active {ldelim} 27 background: url({$ROOT_URL}{$themeconf.admin_icon_dir}/plugin_active.gif) no-repeat center left 28 } 29 TABLE.table2 TR TD.inactive {ldelim} 30 background: url({$ROOT_URL}{$themeconf.admin_icon_dir}/plugin_inactive.gif) no-repeat center left 31 } 32 </style> 33 {/html_head} 21 34 {foreach from=$plugins item=plugin name=plugins_loop} 22 35 <tr class="{if $smarty.foreach.plugins_loop.index is odd}row1{else}row2{/if}"> 23 <td style="padding-left:16px; {if not empty($plugin.STATE)}background: url({$ROOT_URL}{$themeconf.admin_icon_dir}/plugin_{$plugin.STATE}.gif) no-repeat center left{/if}">36 <td class="pluginState{if not empty($plugin.STATE)} {$plugin.STATE}{/if}"> 24 37 {$plugin.NAME} 25 38 </td> -
trunk/template/yoga/month_calendar.tpl
r2265 r2334 37 37 </tr> 38 38 </thead> 39 39 {html_head} {*add the style to html head for strict standard compliance*} 40 <style type="text/css"> 41 TABLE.calMonth TBODY TD, TABLE.calMonth TBODY TD DIV.calImg {ldelim} 42 width:{$chronology_calendar.month_view.CELL_WIDTH}px;height:{$chronology_calendar.month_view.CELL_HEIGHT}px; 43 } 44 </style> 45 {/html_head} 40 46 {foreach from=$chronology_calendar.month_view.weeks item=week} 41 47 <tr> … … 45 51 <td class="calDayCellFull"> 46 52 <div class="calBackDate">{$day.DAY}</div><div class="calForeDate">{$day.DAY}</div> 47 <div class="calImg" style="width:{$chronology_calendar.month_view.CELL_WIDTH}px;height:{$chronology_calendar.month_view.CELL_HEIGHT}px;">53 <div class="calImg"> 48 54 <a href="{$day.U_IMG_LINK}"> 49 55 <img style="{$day.IMAGE_STYLE}" src="{$day.IMAGE}" alt="{$day.IMAGE_ALT}" title="{$pwg->l10n_dec('%d element','%d elements', $day.NB_ELEMENTS)}" /> … … 51 57 </div> 52 58 {else} 53 <td class="calDayCellEmpty" style="width:{$chronology_calendar.month_view.CELL_WIDTH}px;height:{$chronology_calendar.month_view.CELL_HEIGHT}px;">{$day.DAY}59 <td class="calDayCellEmpty">{$day.DAY} 54 60 {/if} 55 61 {else} 56 <td class="calDayCellBlank" style="width:{$chronology_calendar.month_view.CELL_WIDTH}px;height:{$chronology_calendar.month_view.CELL_HEIGHT}px;">62 <td class="calDayCellBlank"> 57 63 {/if} 58 64 </td>
Note: See TracChangeset
for help on using the changeset viewer.