From 202c6fe463906c549ffabd85a8f415f09344f21c Mon Sep 17 00:00:00 2001 From: Jerome Nadaud Date: Mon, 23 Sep 2013 18:04:18 +0200 Subject: [PATCH] // Carrier list size --- controllers/admin/AdminCarriersController.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/controllers/admin/AdminCarriersController.php b/controllers/admin/AdminCarriersController.php index ccab96305..498767420 100644 --- a/controllers/admin/AdminCarriersController.php +++ b/controllers/admin/AdminCarriersController.php @@ -57,7 +57,8 @@ class AdminCarriersControllerCore extends AdminController $this->fields_list = array( 'id_carrier' => array( 'title' => $this->l('ID'), - 'align' => 'center' + 'align' => 'center', + 'class' => 'fixed-width-xs' ), 'name' => array( 'title' => $this->l('Name') @@ -66,6 +67,7 @@ class AdminCarriersControllerCore extends AdminController 'title' => $this->l('Logo'), 'align' => 'center', 'image' => 's', + 'class' => 'fixed-width-xs', 'orderby' => false, 'search' => false ), @@ -78,6 +80,7 @@ class AdminCarriersControllerCore extends AdminController 'align' => 'center', 'active' => 'status', 'type' => 'bool', + 'class' => 'fixed-width-sm', 'orderby' => false, ), 'is_free' => array( @@ -85,12 +88,14 @@ class AdminCarriersControllerCore extends AdminController 'align' => 'center', 'active' => 'isFree', 'type' => 'bool', + 'class' => 'fixed-width-sm', 'orderby' => false, ), 'position' => array( 'title' => $this->l('Position'), 'filter_key' => 'a!position', 'align' => 'center', + 'class' => 'fixed-width-sm', 'position' => 'position' ) );