mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
Move plugins list CSS to admin default-layout.css.
Layout bug corrected with IE. git-svn-id: http://piwigo.org/svn/trunk@2619 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -39,6 +39,21 @@ TABLE#detailedStats {
|
||||
width: 99%;
|
||||
}
|
||||
|
||||
/* Plugins tables */
|
||||
TABLE.table2 TR TD.pluginState {
|
||||
padding-left: 16px;
|
||||
}
|
||||
|
||||
TABLE.table2 TR TD.active {
|
||||
background: url(icon/plugin_active.gif) no-repeat center left;
|
||||
background-color: inherit; /* IE need it */
|
||||
}
|
||||
|
||||
TABLE.table2 TR TD.inactive {
|
||||
background: url(icon/plugin_inactive.gif) no-repeat center left;
|
||||
background-color: inherit; /* IE need it */
|
||||
}
|
||||
|
||||
/* categoryOrdering */
|
||||
SELECT.categoryList {
|
||||
width: 100%;
|
||||
|
||||
@@ -19,19 +19,7 @@
|
||||
<td>{'Actions'|@translate}</td>
|
||||
</tr>
|
||||
</thead>
|
||||
{html_head} {*add the style to html head for strict standard compliance*}
|
||||
<style type="text/css">
|
||||
TABLE.table2 TR TD.pluginState {ldelim}
|
||||
padding-left:16px;
|
||||
}
|
||||
TABLE.table2 TR TD.active {ldelim}
|
||||
background: url({$ROOT_URL}{$themeconf.admin_icon_dir}/plugin_active.gif) no-repeat center left
|
||||
}
|
||||
TABLE.table2 TR TD.inactive {ldelim}
|
||||
background: url({$ROOT_URL}{$themeconf.admin_icon_dir}/plugin_inactive.gif) no-repeat center left
|
||||
}
|
||||
</style>
|
||||
{/html_head}
|
||||
|
||||
{foreach from=$plugins item=plugin name=plugins_loop}
|
||||
<tr class="{if $smarty.foreach.plugins_loop.index is odd}row1{else}row2{/if}">
|
||||
<td class="pluginState{if not empty($plugin.STATE)} {$plugin.STATE}{/if}">
|
||||
|
||||
Reference in New Issue
Block a user