Changeset 2619


Ignore:
Timestamp:
Sep 28, 2008, 1:29:09 PM (16 years ago)
Author:
patdenice
Message:

Move plugins list CSS to admin default-layout.css.
Layout bug corrected with IE.

Location:
trunk/admin/template/goto
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/template/goto/default-layout.css

    r2600 r2619  
    3838TABLE#detailedStats {
    3939  width: 99%;
     40}
     41
     42/* Plugins tables */
     43TABLE.table2 TR TD.pluginState {
     44  padding-left: 16px;
     45}
     46
     47TABLE.table2 TR TD.active {
     48  background: url(icon/plugin_active.gif) no-repeat center left;
     49  background-color: inherit; /* IE need it */
     50}
     51
     52TABLE.table2 TR TD.inactive {
     53  background: url(icon/plugin_inactive.gif) no-repeat center left;
     54  background-color: inherit; /* IE need it */
    4055}
    4156
  • trunk/admin/template/goto/plugins_list.tpl

    r2531 r2619  
    2020  </tr>
    2121</thead>
    22 {html_head} {*add the style to html head for strict standard compliance*}
    23 <style type="text/css">
    24 TABLE.table2 TR TD.pluginState {ldelim}
    25   padding-left:16px;
    26 }
    27 TABLE.table2 TR TD.active {ldelim}
    28   background: url({$ROOT_URL}{$themeconf.admin_icon_dir}/plugin_active.gif) no-repeat center left
    29 }
    30 TABLE.table2 TR TD.inactive {ldelim}
    31   background: url({$ROOT_URL}{$themeconf.admin_icon_dir}/plugin_inactive.gif) no-repeat center left
    32 }
    33 </style>
    34 {/html_head}
     22
    3523{foreach from=$plugins item=plugin name=plugins_loop}
    3624        <tr class="{if $smarty.foreach.plugins_loop.index is odd}row1{else}row2{/if}">
Note: See TracChangeset for help on using the changeset viewer.