diff --git a/controllers/admin/AdminAddressesController.php b/controllers/admin/AdminAddressesController.php index daa424f61..51078f46b 100644 --- a/controllers/admin/AdminAddressesController.php +++ b/controllers/admin/AdminAddressesController.php @@ -55,7 +55,7 @@ class AdminAddressesControllerCore extends AdminController $this->countries_array[$country['id_country']] = $country['name']; $this->fields_list = array( - 'id_address' => array('title' => $this->l('ID'), 'align' => 'center'), + 'id_address' => array('title' => $this->l('ID'), 'align' => 'center', 'class' => 'fixed-width-xs'), 'firstname' => array('title' => $this->l('First Name'), 'filter_key' => 'a!firstname'), 'lastname' => array('title' => $this->l('Last Name'), 'filter_key' => 'a!lastname'), 'address1' => array('title' => $this->l('Address')), diff --git a/controllers/admin/AdminCartsController.php b/controllers/admin/AdminCartsController.php index 38f90fd3a..13ae6ac5c 100755 --- a/controllers/admin/AdminCartsController.php +++ b/controllers/admin/AdminCartsController.php @@ -48,7 +48,8 @@ class AdminCartsControllerCore extends AdminController $this->fields_list = array( 'id_cart' => array( 'title' => $this->l('ID'), - 'align' => 'center' + 'align' => 'center', + 'class' => 'fixed-width-xs' ), 'id_order' => array( 'title' => $this->l('Order ID'), diff --git a/controllers/admin/AdminContactsController.php b/controllers/admin/AdminContactsController.php index 3fd9900c5..f41350753 100644 --- a/controllers/admin/AdminContactsController.php +++ b/controllers/admin/AdminContactsController.php @@ -37,7 +37,7 @@ class AdminContactsControllerCore extends AdminController $this->bulk_actions = array('delete' => array('text' => $this->l('Delete selected'), 'confirm' => $this->l('Delete selected items?'))); $this->fields_list = array( - 'id_contact' => array('title' => $this->l('ID'), 'align' => 'center'), + 'id_contact' => array('title' => $this->l('ID'), 'align' => 'center', 'class' => 'fixed-width-xs'), 'name' => array('title' => $this->l('Title')), 'email' => array('title' => $this->l('Email address')), 'description' => array('title' => $this->l('Description')), diff --git a/controllers/admin/AdminCustomerThreadsController.php b/controllers/admin/AdminCustomerThreadsController.php index b2e5a84cc..cdbf1951c 100644 --- a/controllers/admin/AdminCustomerThreadsController.php +++ b/controllers/admin/AdminCustomerThreadsController.php @@ -58,7 +58,9 @@ class AdminCustomerThreadsControllerCore extends AdminController $this->fields_list = array( 'id_customer_thread' => array( - 'title' => $this->l('ID') + 'title' => $this->l('ID'), + 'align' => 'center', + 'class' => 'fixed-width-xs' ), 'customer' => array( 'title' => $this->l('Customer'), diff --git a/controllers/admin/AdminCustomersController.php b/controllers/admin/AdminCustomersController.php index 3f587b60f..adc92569a 100644 --- a/controllers/admin/AdminCustomersController.php +++ b/controllers/admin/AdminCustomersController.php @@ -79,7 +79,8 @@ class AdminCustomersControllerCore extends AdminController $this->fields_list = array( 'id_customer' => array( 'title' => $this->l('ID'), - 'align' => 'center' + 'align' => 'center', + 'class' => 'fixed-width-xs' ), 'id_gender' => array( 'title' => $this->l('Title'), diff --git a/controllers/admin/AdminGendersController.php b/controllers/admin/AdminGendersController.php index f924f2f82..ca7921ea1 100644 --- a/controllers/admin/AdminGendersController.php +++ b/controllers/admin/AdminGendersController.php @@ -53,7 +53,8 @@ class AdminGendersControllerCore extends AdminController $this->fields_list = array( 'id_gender' => array( 'title' => $this->l('ID'), - 'align' => 'center' + 'align' => 'center', + 'class' => 'fixed-width-xs' ), 'name' => array( 'title' => $this->l('Name'), diff --git a/controllers/admin/AdminGroupsController.php b/controllers/admin/AdminGroupsController.php index c3ce9a3d4..2ff739af9 100644 --- a/controllers/admin/AdminGroupsController.php +++ b/controllers/admin/AdminGroupsController.php @@ -46,7 +46,8 @@ class AdminGroupsControllerCore extends AdminController $this->fields_list = array( 'id_group' => array( 'title' => $this->l('ID'), - 'align' => 'center' + 'align' => 'center', + 'class' => 'fixed-width-xs' ), 'name' => array( 'title' => $this->l('Name'),