diff --git a/admin-dev/themes/default/template/helpers/list/list_content.tpl b/admin-dev/themes/default/template/helpers/list/list_content.tpl
index 0c25c1f19..8c623ccfc 100644
--- a/admin-dev/themes/default/template/helpers/list/list_content.tpl
+++ b/admin-dev/themes/default/template/helpers/list/list_content.tpl
@@ -30,17 +30,17 @@
class="{if isset($tr.class)} {$tr.class}{/if}"
{if isset($tr.color) && $color_on_bg}style="background-color: {$tr.color}"{/if}
>
+ {if {$has_bulk_actions}}
- {if {$has_bulk_actions}}
- {if isset($list_skip_actions.delete)}
- {if !in_array($tr.$identifier, $list_skip_actions.delete)}
-
- {/if}
- {else}
+ {if isset($list_skip_actions.delete)}
+ {if !in_array($tr.$identifier, $list_skip_actions.delete)}
{/if}
+ {else}
+
{/if}
|
+ {/if}
{foreach $fields_display AS $key => $params}
{block name="open_td"}
- |
+ {if $has_bulk_actions}
+ |
|
+ {/if}
{foreach $fields_display AS $key => $params}
@@ -308,12 +310,11 @@
|
{if !$simple_header && $show_filters}
+ {if $has_bulk_actions}
|
- {if $has_bulk_actions}
- --
- {/if}
+ --
|
-
+ {/if}
{* Filters (input, select, date or bool) *}
{foreach $fields_display AS $key => $params}
diff --git a/controllers/admin/AdminProfilesController.php b/controllers/admin/AdminProfilesController.php
index 1ae906577..fae0ec52d 100644
--- a/controllers/admin/AdminProfilesController.php
+++ b/controllers/admin/AdminProfilesController.php
@@ -46,7 +46,8 @@ class AdminProfilesControllerCore extends AdminController
$this->fields_list = array(
'id_profile' => array(
'title' => $this->l('ID'),
- 'align' => 'center'
+ 'align' => 'center',
+ 'class' => 'fixed-width-xs'
),
'name' => array('title' => $this->l('Name'))
);
diff --git a/controllers/admin/AdminTabsController.php b/controllers/admin/AdminTabsController.php
index 43e211571..28a04406d 100644
--- a/controllers/admin/AdminTabsController.php
+++ b/controllers/admin/AdminTabsController.php
@@ -46,7 +46,9 @@ class AdminTabsControllerCore extends AdminController
$this->fields_list = array(
'id_tab' => array(
- 'title' => $this->l('ID')
+ 'title' => $this->l('ID'),
+ 'align' => 'center',
+ 'class' => 'fixed-width-xs'
),
'name' => array(
'title' => $this->l('Name')
@@ -71,7 +73,8 @@ class AdminTabsControllerCore extends AdminController
'position' => array(
'title' => $this->l('Position'),
'filter_key' => 'a!position',
- 'position' => 'position'
+ 'position' => 'position',
+ 'class' => 'fixed-width-md'
)
);
| |