// Administration list column size

This commit is contained in:
Jerome Nadaud
2013-09-25 11:46:12 +02:00
parent ae760115be
commit e2c04db881
2 changed files with 6 additions and 4 deletions
@@ -76,8 +76,8 @@ class AdminEmployeesControllerCore extends AdminController
'lastname' => array('title' => $this->l('Last Name')),
'firstname' => array('title' => $this->l('First Name')),
'email' => array('title' => $this->l('Email address')),
'profile' => array('title' => $this->l('Profile'), 'type' => 'select', 'list' => $this->profiles_array, 'filter_key' => 'pl!name'),
'active' => array('title' => $this->l('Can log in'), 'align' => 'center', 'active' => 'status', 'type' => 'bool'),
'profile' => array('title' => $this->l('Profile'), 'type' => 'select', 'list' => $this->profiles_array, 'filter_key' => 'pl!name', 'class' => 'fixed-width-lg'),
'active' => array('title' => $this->l('Can log in'), 'align' => 'center', 'active' => 'status', 'type' => 'bool', 'class' => 'fixed-width-sm'),
);
$this->fields_options = array(
@@ -46,7 +46,8 @@ class AdminQuickAccessesControllerCore extends AdminController
$this->fields_list = array(
'id_quick_access' => array(
'title' => $this->l('ID'),
'align' => 'center'
'align' => 'center',
'class' => 'fixed-width-xs'
),
'name' => array(
'title' => $this->l('Name')
@@ -58,7 +59,8 @@ class AdminQuickAccessesControllerCore extends AdminController
'title' => $this->l('New window'),
'align' => 'center',
'type' => 'bool',
'activeVisu' => 'new_window'
'activeVisu' => 'new_window',
'class' => 'fixed-width-sm'
)
);