]> git.proxmox.com Git - pve-manager.git/commitdiff
reorganize storage and pools
authorDominik Csapak <d.csapak@proxmox.com>
Mon, 22 Aug 2016 15:13:38 +0000 (17:13 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Wed, 24 Aug 2016 10:31:22 +0000 (12:31 +0200)
add icons to panels

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
www/manager6/pool/Config.js
www/manager6/storage/Browser.js

index 8683cca50f0774dfaa853bd6e97f6fdc57bef9ac..6a639276632e0d406d4cad0912b28952509a1a31 100644 (file)
@@ -16,18 +16,21 @@ Ext.define('PVE.pool.Config', {
            items: [
                {
                    title: gettext('Summary'),
+                   iconCls: 'fa fa-book',
                    xtype: 'pvePoolSummary',
                    itemId: 'summary'
                },
                {
                    title: gettext('Members'),
                    xtype: 'pvePoolMembers',
+                   iconCls: 'fa fa-th',
                    pool: pool,
                    itemId: 'members'
                },
                {
                    xtype: 'pveACLView',
                    title: gettext('Permissions'),
+                   iconCls: 'fa fa-unlock',
                    itemId: 'permissions',
                    path: '/pool/' + pool
                }
index 2da395ccf438b567cb5d813e77a03c8ff39d0d8d..90c8c2f3a0eacf70969eace776305892816a6857 100644 (file)
@@ -20,6 +20,7 @@ Ext.define('PVE.storage.Browser', {
            {
                title: gettext('Summary'),
                xtype: 'pveStorageSummary',
+               iconCls: 'fa fa-book',
                itemId: 'summary'
            }
        ];
@@ -36,6 +37,7 @@ Ext.define('PVE.storage.Browser', {
            me.items.push({
                xtype: 'pveStorageContentView',
                title: gettext('Content'),
+               iconCls: 'fa fa-th',
                itemId: 'content'
            });
        }
@@ -44,6 +46,7 @@ Ext.define('PVE.storage.Browser', {
            me.items.push({
                xtype: 'pveACLView',
                title: gettext('Permissions'),
+               iconCls: 'fa fa-unlock',
                itemId: 'permissions',
                path: '/storage/' + storeid
            });