diff options
author | Aleksander Machniak <machniak@kolabsys.com> | 2019-07-16 10:05:59 +0200 |
---|---|---|
committer | Aleksander Machniak <machniak@kolabsys.com> | 2019-07-16 10:05:59 +0200 |
commit | f605771df673bad47e066f4ee40134bfe638aae7 (patch) | |
tree | a17f0fdfc868d573d57ac6cd2ad6a070356ff343 | |
parent | 829a757c5d7e9298b9db2360e584e945a925970a (diff) | |
download | webadmin-f605771df673bad47e066f4ee40134bfe638aae7.tar.gz |
Theme style improvements
-rw-r--r-- | lib/client/kolab_client_task_settings.php | 2 | ||||
-rw-r--r-- | lib/locale/en_US.php | 6 | ||||
-rw-r--r-- | public_html/skins/default/style.css | 1 |
3 files changed, 5 insertions, 4 deletions
diff --git a/lib/client/kolab_client_task_settings.php b/lib/client/kolab_client_task_settings.php index 961b457..af544be 100644 --- a/lib/client/kolab_client_task_settings.php +++ b/lib/client/kolab_client_task_settings.php @@ -162,7 +162,7 @@ class kolab_client_task_settings extends kolab_client_task $user_task = new kolab_client_task_user($this->output); $user_task->action_info(); - $this->output->set_object('content', $this->output->get_object('taskcontent')); + $this->output->set_object('content', '<div id="taskcontent">' . $this->output->get_object('taskcontent') . '</div>'); } /** diff --git a/lib/locale/en_US.php b/lib/locale/en_US.php index d67c413..2fb1a3c 100644 --- a/lib/locale/en_US.php +++ b/lib/locale/en_US.php @@ -226,7 +226,7 @@ $LANG['ou.delete.confirm'] = 'Are you sure, you want to delete this organization $LANG['ou.delete.success'] = 'Unit deleted successfully.'; $LANG['ou.description'] = 'Unit Description'; $LANG['ou.edit.success'] = 'Unit updated successfully.'; -$LANG['ou.list'] = 'Organizational Unit List'; +$LANG['ou.list'] = 'Organizational Units List'; $LANG['ou.norecords'] = 'No organizational unit records found!'; $LANG['ou.system'] = 'Details'; $LANG['ou.type_id'] = 'Unit Type'; @@ -244,7 +244,7 @@ $LANG['resource.edit.success'] = 'Resource updated successfully.'; $LANG['resource.kolabtargetfolder'] = 'Target Folder'; $LANG['resource.kolabinvitationpolicy'] = 'Invitation Policy'; $LANG['resource.kolabdescattribute'] = 'Attributes'; -$LANG['resource.list'] = 'Resource (Collection) List'; +$LANG['resource.list'] = 'Resources (Collections) List'; $LANG['resource.mail'] = 'Mail Address'; $LANG['resource.member'] = 'Collection Members'; $LANG['resource.norecords'] = 'No resource records found!'; @@ -263,7 +263,7 @@ $LANG['role.delete.confirm'] = 'Are you sure, you want to delete this role?'; $LANG['role.delete.success'] = 'Role deleted successfully.'; $LANG['role.description'] = 'Role Description'; $LANG['role.edit.success'] = 'Role updated successfully.'; -$LANG['role.list'] = 'Role List'; +$LANG['role.list'] = 'Roles List'; $LANG['role.norecords'] = 'No role records found!'; $LANG['role.system'] = 'Details'; $LANG['role.type_id'] = 'Role Type'; diff --git a/public_html/skins/default/style.css b/public_html/skins/default/style.css index 0cb9af5..5013dfb 100644 --- a/public_html/skins/default/style.css +++ b/public_html/skins/default/style.css @@ -100,6 +100,7 @@ table.list tbody tr td.empty-body { height: 150px; color: #f3a628; text-align: center; + vertical-align: middle; } table.list tbody tr.deleted td { |