diff --git a/www/Makefile b/www/Makefile index d45e1789..1790273f 100644 --- a/www/Makefile +++ b/www/Makefile @@ -2,6 +2,7 @@ include ../defines.mk IMAGES := \ images/icon-tape.svg \ + images/icon-tape-drive.svg \ images/logo-128.png \ images/proxmox_logo.png diff --git a/www/css/ext6-pbs.css b/www/css/ext6-pbs.css index ee54ddac..5608a727 100644 --- a/www/css/ext6-pbs.css +++ b/www/css/ext6-pbs.css @@ -256,8 +256,7 @@ span.snapshot-comment-column { /*' PBS specific icons */ -.pbs-icon-tape -{ +.pbs-icon-tape { background-repeat: no-repeat; background-position: bottom; padding: 0; @@ -265,3 +264,12 @@ span.snapshot-comment-column { height: 20px; background-image:url(../images/icon-tape.svg); } + +.pbs-icon-tape-drive { + background-repeat: no-repeat; + background-position: bottom; + padding: 0; + background-size: 16px; + height: 20px; + background-image:url(../images/icon-tape-drive.svg); +} diff --git a/www/images/icon-tape-drive.svg b/www/images/icon-tape-drive.svg new file mode 100644 index 00000000..6ae8c03d --- /dev/null +++ b/www/images/icon-tape-drive.svg @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/www/tape/TapeManagement.js b/www/tape/TapeManagement.js index ed4874da..52f05127 100644 --- a/www/tape/TapeManagement.js +++ b/www/tape/TapeManagement.js @@ -17,36 +17,44 @@ Ext.define('PBS.TapeManagement', { xtype: 'pbsBackupOverview', title: gettext('Content'), itemId: 'content', + iconCls: 'fa fa-th', }, { xtype: 'pbsTapeInventory', title: gettext('Inventory'), itemId: 'inventory', + iconCls: 'fa fa-book', }, { xtype: 'pbsTapeChangerPanel', title: gettext('Changers'), itemId: 'changers', + iconCls: 'fa fa-exchange', }, { xtype: 'pbsTapeDrivePanel', title: gettext('Drives'), itemId: 'drives', + //iconCls: 'fa fa-download', + iconCls: 'pbs-icon-tape-drive', }, { title: gettext('Media Pools'), itemId: 'pools', xtype: 'pbsMediaPoolPanel', + iconCls: 'fa fa-object-group', }, { xtype: 'pbsEncryptionKeys', title: gettext('Encryption Keys'), itemId: 'encryption-keys', + iconCls: 'fa fa-key', }, { xtype: 'pbsTapeBackupJobView', title: gettext('Backup Jobs'), itemId: 'tape-backup-jobs', + iconCls: 'fa fa-floppy-o', }, ], });