partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit 6570603007cd6d13b0b5aa687561988681a8241b
parent 16f9108fd1edb4a0b55358eb14afd733696a8541
Author: Felicitus <felicitus@felicitus.org>
Date:   Wed,  4 Jan 2012 19:28:50 +0100

Some more icon changes + additions

Diffstat:
Msrc/frontend/css/PartKeepr.css | 16++++++++++++++++
Msrc/frontend/js/Components/MenuBar.js | 4++--
Msrc/frontend/js/PartKeepr.js | 1+
3 files changed, 19 insertions(+), 2 deletions(-)

diff --git a/src/frontend/css/PartKeepr.css b/src/frontend/css/PartKeepr.css @@ -124,4 +124,20 @@ td.o2 { .icon-service-bell { background-image: url(../resources/fugue-icons/icons/service-bell.png) !important; +} + +.icon-brick { + background-image: url(../resources/silkicons/brick.png) !important; +} + +.icon-table { + background-image: url(../resources/fugue-icons/icons/table.png) !important; +} + +.icon-attach { + background-image: url(../resources/silkicons/attach.png) !important; +} + +.icon-notebook { + background-image: url(../resources/fugue-icons/icons/notebook.png) !important; } \ No newline at end of file diff --git a/src/frontend/js/Components/MenuBar.js b/src/frontend/js/Components/MenuBar.js @@ -73,7 +73,7 @@ Ext.define('PartKeepr.MenuBar', { },{ text: i18n("Stock History"), handler: this.showStockHistory, - icon: 'resources/fugue-icons/icons/service-bell.png' + icon: 'resources/fugue-icons/icons/notebook.png' } ] @@ -265,7 +265,7 @@ Ext.define('PartKeepr.MenuBar', { showStockHistory: function () { var j = Ext.create("PartKeepr.StockHistoryGrid", { title: i18n("Stock History"), - iconCls: 'icon-service-bell', + iconCls: 'icon-notebook', closable: true }); diff --git a/src/frontend/js/PartKeepr.js b/src/frontend/js/PartKeepr.js @@ -43,6 +43,7 @@ Ext.application({ var j = Ext.create("PartKeepr.PartManager", { title: i18n("Part Manager"), + iconCls: 'icon-brick', closable: false });