svn: /web/doc-editor/trunk/ js/main.js js/ui/component/BuildStatus.js js/ui/component/CheckBuildPrompt.js js/ui/component/CheckEntities.js js/ui/component/CommitLogManager.js js/ui/component/ErrorFileGrid.js js/ui/component/FilePanel.js js/ui/component/MainMenu.js js/ui/component/PatchPrompt.js js/ui/component/PendingCommitGrid.js js/ui/component/PendingReviewGrid.js js/ui/component/PortletBugs.js js/ui/component/PortletLocalMail.js js/ui/component/RepositoryTree.js js/ui/component/SystemUpdateP
[email protected] (Yannick Torres)
| Newsgroups | php.doc.web |
|---|---|
| Message-ID | <[email protected]> |
yannick Tue, 29 Dec 2009 15:53:04 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=292760
Log:
More cleanUp with css & img
Changed paths:
U web/doc-editor/trunk/js/main.js
U web/doc-editor/trunk/js/ui/component/BuildStatus.js
U web/doc-editor/trunk/js/ui/component/CheckBuildPrompt.js
U web/doc-editor/trunk/js/ui/component/CheckEntities.js
U web/doc-editor/trunk/js/ui/component/CommitLogManager.js
U web/doc-editor/trunk/js/ui/component/ErrorFileGrid.js
U web/doc-editor/trunk/js/ui/component/FilePanel.js
U web/doc-editor/trunk/js/ui/component/MainMenu.js
U web/doc-editor/trunk/js/ui/component/PatchPrompt.js
U web/doc-editor/trunk/js/ui/component/PendingCommitGrid.js
U web/doc-editor/trunk/js/ui/component/PendingReviewGrid.js
U web/doc-editor/trunk/js/ui/component/PortletBugs.js
U web/doc-editor/trunk/js/ui/component/PortletLocalMail.js
U web/doc-editor/trunk/js/ui/component/RepositoryTree.js
U web/doc-editor/trunk/js/ui/component/SystemUpdatePrompt.js
U web/doc-editor/trunk/js/ui/component/VCSLogGrid.js
U web/doc-editor/trunk/js/ui/task/CheckBuildTask.js
U web/doc-editor/trunk/js/ui/task/CheckFileTask.js
U web/doc-editor/trunk/js/ui/task/SystemUpdateTask.js
D web/doc-editor/trunk/themes/img/expand-bg.gif
D web/doc-editor/trunk/themes/img/grid3-hrow.gif
D web/doc-editor/trunk/themes/img/member-collapsed.gif
U web/doc-editor/trunk/themes/main.css
svn-diffs-292760.txt
(text/x-diff, 31.1 KB)
Modified: web/doc-editor/trunk/js/main.js
===================================================================
--- web/doc-editor/trunk/js/main.js 2009-12-29 13:54:05 UTC (rev 292759)
+++ web/doc-editor/trunk/js/main.js 2009-12-29 15:53:04 UTC (rev 292760)
@@ -365,7 +365,7 @@
title : _('Files Need Translate') + ' (<em id="acc-need-translate-nb">0</em>)',
layout : 'fit',
border : false,
- iconCls : 'FilesNeedTranslate',
+ iconCls : 'iconFilesNeedTranslate',
hidden : (this.userLang === 'en'),
items : [ ui.component.PendingTranslateGrid.getInstance() ],
collapsed : true
@@ -374,7 +374,7 @@
title : _('Files Need Update') + ' (<em id="acc-need-update-nb">0</em>)',
layout : 'fit',
border : false,
- iconCls : 'FilesNeedUpdate',
+ iconCls : 'iconFilesNeedUpdate',
hidden : (this.userLang === 'en'),
items : [ ui.component.StaleFileGrid.getInstance() ],
collapsed : true
@@ -383,7 +383,7 @@
title : _('Error in current translation') + ' (<em id="acc-error-nb">0</em>)',
layout : 'fit',
border : false,
- iconCls : 'FilesError',
+ iconCls : 'iconFilesError',
hidden : (this.userLang === 'en'),
items : [ ui.component.ErrorFileGrid.getInstance() ],
collapsed : true
@@ -392,7 +392,7 @@
title : _('Files Need Reviewed') + ' (<em id="acc-need-reviewed-nb">0</em>)',
layout : 'fit',
border : false,
- iconCls : 'FilesNeedReviewed',
+ iconCls : 'iconFilesNeedReviewed',
hidden : (this.userLang === 'en'),
items : [ ui.component.PendingReviewGrid.getInstance() ],
collapsed : true
@@ -401,7 +401,7 @@
title : _('Not in EN tree') + ' (<em id="acc-notInEn-nb">0</em>)',
layout : 'fit',
border : false,
- iconCls : 'NotInEn',
+ iconCls : 'iconNotInEn',
hidden : (this.userLang === 'en'),
items : [ ui.component.NotInENGrid.getInstance() ],
collapsed : true
@@ -410,7 +410,7 @@
title : _('All files'),
layout : 'fit',
border : false,
- iconCls : 'AllFiles',
+ iconCls : 'iconAllFiles',
items : [ ui.component.RepositoryTree.getInstance() ],
collapsed : true
}, {
@@ -430,7 +430,7 @@
title : _('Pending for commit') + ' (<em id="acc-pendingCommit-nb">0</em>)',
layout : 'fit',
border : false,
- iconCls : 'PendingCommit',
+ iconCls : 'iconPendingCommit',
items : [ ui.component.PendingCommitGrid.getInstance() ],
collapsed : true
}, {
@@ -438,7 +438,7 @@
title : _('Pending Patch') + ' (<em id="acc-pendingPatch-nb">0</em>)',
layout : 'fit',
border : false,
- iconCls : 'PendingPatch',
+ iconCls : 'iconPendingPatch',
items : [ ui.component.PendingPatchGrid.getInstance() ],
collapsed : true
}]
Modified: web/doc-editor/trunk/js/ui/component/BuildStatus.js
===================================================================
--- web/doc-editor/trunk/js/ui/component/BuildStatus.js 2009-12-29 13:54:05 UTC (rev 292759)
+++ web/doc-editor/trunk/js/ui/component/BuildStatus.js 2009-12-29 15:53:04 UTC (rev 292760)
@@ -19,7 +19,7 @@
tabTip : String.format(_('Last failed build for the documentation {0}'), Ext.util.Format.uppercase(this.lang)),
closable : true,
autoScroll : true,
- iconCls : 'checkBuild',
+ iconCls : 'iconCheckBuild',
html : '<div class="check-build-content" id="check-build-content"></div>'
});
Ext.getCmp('main-panel').setActiveTab('last_failed_build_' + this.lang);
@@ -129,7 +129,7 @@
items : [{
scope : this,
text : '<b>' + _('View in a new Tab') + '</b>',
- iconCls : 'openInTab',
+ iconCls : 'iconOpenInTab',
handler : function()
{
this.grid.fireEvent('rowdblclick',
Modified: web/doc-editor/trunk/js/ui/component/CheckBuildPrompt.js
===================================================================
--- web/doc-editor/trunk/js/ui/component/CheckBuildPrompt.js 2009-12-29 13:54:05 UTC (rev 292759)
+++ web/doc-editor/trunk/js/ui/component/CheckBuildPrompt.js 2009-12-29 15:53:04 UTC (rev 292760)
@@ -3,7 +3,7 @@
ui.component.CheckBuildPrompt = Ext.extend(Ext.Window,
{
title : _('Check Build'),
- iconCls : 'checkBuild',
+ iconCls : 'iconCheckBuild',
layout : 'form',
width : 350,
height : 200,
Modified: web/doc-editor/trunk/js/ui/component/CheckEntities.js
===================================================================
--- web/doc-editor/trunk/js/ui/component/CheckEntities.js 2009-12-29 13:54:05 UTC (rev 292759)
+++ web/doc-editor/trunk/js/ui/component/CheckEntities.js 2009-12-29 15:53:04 UTC (rev 292760)
@@ -126,7 +126,7 @@
items : [{
scope : this,
text : '<b>'+_('Open in a new Tab')+'</b>',
- iconCls : 'openInTab',
+ iconCls : 'iconOpenInTab',
handler : function()
{
this.openTab(this.ctxRowIndex);
Modified: web/doc-editor/trunk/js/ui/component/CommitLogManager.js
===================================================================
--- web/doc-editor/trunk/js/ui/component/CommitLogManager.js 2009-12-29 13:54:05 UTC (rev 292759)
+++ web/doc-editor/trunk/js/ui/component/CommitLogManager.js 2009-12-29 15:53:04 UTC (rev 292760)
@@ -152,7 +152,7 @@
{
id : 'commit-log-win',
title : _('Manage Log Message'),
- iconCls : 'winManageLog',
+ iconCls : 'iconWinManageLog',
width : 650,
height : 350,
layout : 'fit',
Modified: web/doc-editor/trunk/js/ui/component/ErrorFileGrid.js
===================================================================
--- web/doc-editor/trunk/js/ui/component/ErrorFileGrid.js 2009-12-29 13:54:05 UTC (rev 292759)
+++ web/doc-editor/trunk/js/ui/component/ErrorFileGrid.js 2009-12-29 15:53:04 UTC (rev 292760)
@@ -108,7 +108,7 @@
items : [{
scope : this,
text : '<b>'+_('Edit in a new Tab')+'</b>',
- iconCls : 'FilesError',
+ iconCls : 'iconFilesError',
handler : function()
{
this.grid.fireEvent('rowdblclick',
Modified: web/doc-editor/trunk/js/ui/component/FilePanel.js
===================================================================
--- web/doc-editor/trunk/js/ui/component/FilePanel.js 2009-12-29 13:54:05 UTC (rev 292759)
+++ web/doc-editor/trunk/js/ui/component/FilePanel.js 2009-12-29 15:53:04 UTC (rev 292760)
@@ -412,7 +412,7 @@
id : id_prefix + '-PANEL-btn-save-' + this.fid,
scope : this,
tooltip : _('<b>Accept</b> this patch and <b>Save</b> the file (CTRL+s)'),
- iconCls : 'saveFile',
+ iconCls : 'iconSaveFile',
handler : function()
{
var tmp = new ui.task.AcceptPatchTask({
@@ -477,7 +477,7 @@
id : id_prefix + '-PANEL-btn-save-' + this.fid,
scope : this,
tooltip : _('<b>Save</b> this file (CTRL+s)'),
- iconCls : 'saveFile',
+ iconCls : 'iconSaveFile',
disabled : true,
handler : function()
{
@@ -566,7 +566,7 @@
id : id_prefix + '-PANEL-btn-saveas-' + this.fid,
scope : this,
tooltip : _('<b>Save as</b> a patch'),
- iconCls : 'saveAsFile',
+ iconCls : 'iconSaveAsFile',
disabled : true,
handler : function()
{
Modified: web/doc-editor/trunk/js/ui/component/MainMenu.js
===================================================================
--- web/doc-editor/trunk/js/ui/component/MainMenu.js 2009-12-29 13:54:05 UTC (rev 292759)
+++ web/doc-editor/trunk/js/ui/component/MainMenu.js 2009-12-29 15:53:04 UTC (rev 292760)
@@ -75,7 +75,7 @@
items: [{
text : _('Refresh all data'),
disabled : (phpDoc.userLogin === 'anonymous') ? true : false,
- iconCls : 'refresh',
+ iconCls : 'iconRefresh',
handler : function()
{
// We test if there is an update in progress or not
@@ -114,7 +114,7 @@
items : [{
text : _('Check Build'),
disabled : (phpDoc.userLogin === 'anonymous'),
- iconCls : 'checkBuild',
+ iconCls : 'iconCheckBuild',
handler : function()
{
// We test if there is a check in progress for this language
@@ -156,7 +156,7 @@
}
}, {
text : _('Last failed build'),
- iconCls : 'BuildStatus',
+ iconCls : 'iconBuildStatus',
handler : function()
{
var tab = Ext.getCmp('tab-build-status');
@@ -166,7 +166,7 @@
Ext.getCmp('main-panel').add({
id : 'tab-build-status',
title : _('Last failed build'),
- iconCls : 'BuildStatus',
+ iconCls : 'iconBuildStatus',
layout : 'fit',
closable : true,
items : [ new ui.component.BuildStatus() ]
Modified: web/doc-editor/trunk/js/ui/component/PatchPrompt.js
===================================================================
--- web/doc-editor/trunk/js/ui/component/PatchPrompt.js 2009-12-29 13:54:05 UTC (rev 292759)
+++ web/doc-editor/trunk/js/ui/component/PatchPrompt.js 2009-12-29 15:53:04 UTC (rev 292760)
@@ -4,7 +4,7 @@
ui.component.PatchPrompt = Ext.extend(Ext.Window,
{
title : _('Do you want to be alerted ?'),
- iconCls : 'patchAlert',
+ iconCls : 'iconPatchAlert',
layout : 'form',
bodyStyle : 'padding: 5px;',
labelWidth : 50,
Modified: web/doc-editor/trunk/js/ui/component/PendingCommitGrid.js
===================================================================
--- web/doc-editor/trunk/js/ui/component/PendingCommitGrid.js 2009-12-29 13:54:05 UTC (rev 292759)
+++ web/doc-editor/trunk/js/ui/component/PendingCommitGrid.js 2009-12-29 15:53:04 UTC (rev 292760)
@@ -221,7 +221,7 @@
{
scope : this,
text : '<b>'+_('Edit in a new Tab')+'</b>',
- iconCls : 'PendingCommit',
+ iconCls : 'iconPendingCommit',
handler : function()
{
this.grid.fireEvent('rowdblclick',
@@ -325,7 +325,7 @@
{
scope : this,
text : '<b>'+_('View in a new Tab')+'</b>',
- iconCls : 'PendingCommit',
+ iconCls : 'iconPendingCommit',
handler : function()
{
this.grid.fireEvent('rowdblclick',
@@ -379,7 +379,7 @@
{
scope : this,
text : '<b>'+_('Edit in a new Tab')+'</b>',
- iconCls : 'PendingCommit',
+ iconCls : 'iconPendingCommit',
handler : function()
{
this.grid.fireEvent('rowdblclick',
Modified: web/doc-editor/trunk/js/ui/component/PendingReviewGrid.js
===================================================================
--- web/doc-editor/trunk/js/ui/component/PendingReviewGrid.js 2009-12-29 13:54:05 UTC (rev 292759)
+++ web/doc-editor/trunk/js/ui/component/PendingReviewGrid.js 2009-12-29 15:53:04 UTC (rev 292760)
@@ -221,7 +221,7 @@
items : [
{
text : '<b>'+_('Edit in a new Tab')+'</b>',
- iconCls : 'FilesNeedReviewed',
+ iconCls : 'iconFilesNeedReviewed',
scope : this,
handler : function()
{
Modified: web/doc-editor/trunk/js/ui/component/PortletBugs.js
===================================================================
--- web/doc-editor/trunk/js/ui/component/PortletBugs.js 2009-12-29 13:54:05 UTC (rev 292759)
+++ web/doc-editor/trunk/js/ui/component/PortletBugs.js 2009-12-29 15:53:04 UTC (rev 292760)
@@ -107,7 +107,7 @@
items : [{
scope : this,
text : '<b>'+_('Open in a new Tab')+'</b>',
- iconCls : 'openInTab',
+ iconCls : 'iconOpenInTab',
handler : function()
{
this.fireEvent('rowdblclick', grid, this.ctxIndex, e);
@@ -116,7 +116,7 @@
}, '-', {
scope : this,
text : _('Refresh this grid'),
- iconCls : 'refresh',
+ iconCls : 'iconRefresh',
handler : function()
{
this.ctxIndex = null;
Modified: web/doc-editor/trunk/js/ui/component/PortletLocalMail.js
===================================================================
--- web/doc-editor/trunk/js/ui/component/PortletLocalMail.js 2009-12-29 13:54:05 UTC (rev 292759)
+++ web/doc-editor/trunk/js/ui/component/PortletLocalMail.js 2009-12-29 15:53:04 UTC (rev 292760)
@@ -111,7 +111,7 @@
items : [{
scope : this,
text : '<b>'+_('Open in a new Tab')+'</b>',
- iconCls : 'openInTab',
+ iconCls : 'iconOpenInTab',
handler : function()
{
this.fireEvent('rowdblclick', grid, this.ctxIndex, e);
@@ -120,7 +120,7 @@
}, '-', {
scope : this,
text : _('Refresh this grid'),
- iconCls : 'refresh',
+ iconCls : 'iconRefresh',
handler : function()
{
this.ctxIndex = null;
Modified: web/doc-editor/trunk/js/ui/component/RepositoryTree.js
===================================================================
--- web/doc-editor/trunk/js/ui/component/RepositoryTree.js 2009-12-29 13:54:05 UTC (rev 292759)
+++ web/doc-editor/trunk/js/ui/component/RepositoryTree.js 2009-12-29 15:53:04 UTC (rev 292760)
@@ -231,7 +231,7 @@
originTitle : FileName,
closable : true,
tabTip : String.format(_('in {0}'), FilePath),
- iconCls : 'AllFiles',
+ iconCls : 'iconAllFiles',
items : [panelCenter, panelWest]
});
Modified: web/doc-editor/trunk/js/ui/component/SystemUpdatePrompt.js
===================================================================
--- web/doc-editor/trunk/js/ui/component/SystemUpdatePrompt.js 2009-12-29 13:54:05 UTC (rev 292759)
+++ web/doc-editor/trunk/js/ui/component/SystemUpdatePrompt.js 2009-12-29 15:53:04 UTC (rev 292760)
@@ -10,7 +10,7 @@
resizable : false,
modal : true,
bodyStyle : 'padding:15px 15px 0',
- iconCls : 'refresh',
+ iconCls : 'iconRefresh',
html : [
'<div id="wizard-step-1" class="wizard-step-before">',
_('Update all files from VCS'),
@@ -28,7 +28,7 @@
buttons : [{
id : 'btn-start-refresh',
text : _('Start'),
- iconCls : 'startRefresh',
+ iconCls : 'iconStartRefresh',
handler : function()
{
// Disable start button
Modified: web/doc-editor/trunk/js/ui/component/VCSLogGrid.js
===================================================================
--- web/doc-editor/trunk/js/ui/component/VCSLogGrid.js 2009-12-29 13:54:05 UTC (rev 292759)
+++ web/doc-editor/trunk/js/ui/component/VCSLogGrid.js 2009-12-29 15:53:04 UTC (rev 292760)
@@ -200,7 +200,7 @@
scope : this,
id : this.prefix + '-PANEL-btn-refreshlog-' + this.fid,
tooltip : _('<b>Load/Refresh</b> revisions'),
- iconCls : 'refresh',
+ iconCls : 'iconRefresh',
handler : function()
{
this.store.reload();
Modified: web/doc-editor/trunk/js/ui/task/CheckBuildTask.js
===================================================================
--- web/doc-editor/trunk/js/ui/task/CheckBuildTask.js 2009-12-29 13:54:05 UTC (rev 292759)
+++ web/doc-editor/trunk/js/ui/task/CheckBuildTask.js 2009-12-29 15:53:04 UTC (rev 292760)
@@ -28,7 +28,7 @@
tabTip : String.format(_('Check Build Result for the documentation {0}'), Ext.util.Format.uppercase(phpDoc.userLang)),
closable : true,
autoScroll : true,
- iconCls : 'checkBuild',
+ iconCls : 'iconCheckBuild',
html : '<div class="check-build-content">' + o.mess + '</div>'
});
Ext.getCmp('main-panel').setActiveTab('check_build_panel_' + phpDoc.userLang);
Modified: web/doc-editor/trunk/js/ui/task/CheckFileTask.js
===================================================================
--- web/doc-editor/trunk/js/ui/task/CheckFileTask.js 2009-12-29 13:54:05 UTC (rev 292759)
+++ web/doc-editor/trunk/js/ui/task/CheckFileTask.js 2009-12-29 15:53:04 UTC (rev 292760)
@@ -37,7 +37,7 @@
Ext.getCmp('main-panel').add({
id : 'FE-help-' + this.fid,
title : 'Error in ' + this.fname,
- iconCls : 'FilesError',
+ iconCls : 'iconFilesError',
closable : true,
autoScroll : true,
autoLoad : './error?dir=' + this.fpath +
Modified: web/doc-editor/trunk/js/ui/task/SystemUpdateTask.js
===================================================================
--- web/doc-editor/trunk/js/ui/task/SystemUpdateTask.js 2009-12-29 13:54:05 UTC (rev 292759)
+++ web/doc-editor/trunk/js/ui/task/SystemUpdateTask.js 2009-12-29 15:53:04 UTC (rev 292760)
@@ -9,7 +9,7 @@
Ext.get('wizard-step-3').replaceClass('wizard-step-working', 'wizard-step-done');
// Re-enable Finish button
- Ext.getCmp('btn-start-refresh').setIconClass('finishRefresh');
+ Ext.getCmp('btn-start-refresh').setIconClass('iconFinishRefresh');
Ext.getCmp('btn-start-refresh').setText(_('Finish !'));
Ext.getCmp('btn-start-refresh').setHandler(function()
{
Deleted: web/doc-editor/trunk/themes/img/expand-bg.gif
===================================================================
(Binary files differ)
Deleted: web/doc-editor/trunk/themes/img/grid3-hrow.gif
===================================================================
(Binary files differ)
Deleted: web/doc-editor/trunk/themes/img/member-collapsed.gif
===================================================================
(Binary files differ)
Modified: web/doc-editor/trunk/themes/main.css
===================================================================
--- web/doc-editor/trunk/themes/main.css 2009-12-29 13:54:05 UTC (rev 292759)
+++ web/doc-editor/trunk/themes/main.css 2009-12-29 15:53:04 UTC (rev 292760)
@@ -73,10 +73,6 @@
color:#555;
}
-.NotInEn {
- background-image: url(./img/delete.png) !important;
-}
-
.home-summary-title, .home-bugs-title {
background-position: 0 6px !important;
}
@@ -86,99 +82,78 @@
.home-mailing-title {
background: transparent url(./img/email_open_image.png) no-repeat 0 5px !important;
}
-.FilesNeedTranslate {
- background: transparent url(./img/page_add.png) no-repeat 0 0;
-}
-.FilesNeedUpdate {
- background: transparent url(./img/arrow_refresh.png) no-repeat 0 0;
-}
-.FilesNeedReviewed {
- background: transparent url(./img/page_edit.png) no-repeat 0 0;
-}
-.iconCheckDoc {
- background-image: url(./img/lightbulb_add.png) !important;
-}
-.BuildStatus {
- background-image: url(./img/error_delete.png) !important;
-}
-.AllFiles {
- background: transparent url(./img/application_side_tree.png) no-repeat 0 0;
-}
-.PendingCommit {
- background: transparent url(./img/arrow_down.png) no-repeat 0 0;
-}
-.PendingPatch {
- background: transparent url(./img/arrow_switch.png) no-repeat 0 0;
-}
+
+
.MainMenu {
background-image: url(./img/application_home.png) !important;
background-position: 0 1px !important;
}
-.FilesError {
- background: transparent url(./img/error_delete.png) no-repeat 0 0;
-}
+
+
/* Icons */
-.iconBook { background-image: url(./img/book.png) !important;}
-.iconBugs { background-image: url(./img/bug.png) !important;}
-.iconCheckEntities { background-image: url(./img/link_break.png) !important;}
-.iconClose { background-image: url(./img/cancel.png) !important;}
-.iconCloseOthersTabs { background-image: url(./img/tab_delete.png) !important;}
-.iconCommitFileVcs { background-image: url(./img/database_go.png) !important;}
-.iconConf { background-image: url(./img/wrench_orange.png) !important;}
-.iconDelete { background-image: url(./img/delete.png) !important;}
-.iconErasePersonalData { background-image: url(./img/layout_delete.png) !important;}
-.iconError { background-image: url(./img/exclamation.gif) !important;}
-.iconFiles { background-image: url(./img/page.png) !important;}
-.iconFolderOpen { background-image: url(./img/folder-open.gif) !important;}
-.iconFolderClose { background-image: url(./img/folder.gif) !important;}
-.iconHelp { background-image: url(./img/help.png) !important;}
-.iconIndent { background-image: url(./img/text_indent.png) !important;}
-.iconInfo { background-image: url(./img/information.gif) !important;}
-.iconInsertCode { background-image: url(./img/page_code.png) !important;}
-.iconLogOut { background-image: url(./img/door_in.png) !important;}
-.iconPageDelete { background-image: url(./img/page_delete.png) !important;}
-.iconRedo { background-image: url(./img/arrow_redo.png) !important;}
-.iconRun { background-image: url(./img/cog.png) !important;}
-.iconSendEmail { background-image: url(./img/email_edit.png) !important;}
-.iconSummary { background-image: url(./img/details.gif) !important;}
-.iconTabError { background-image: url(./img/error_delete.png) !important;}
-.iconTabLink { background-image: url(./img/page_link.png) !important;}
-.iconTabNeedReviewed { background-image: url(./img/page_edit.png) !important;}
-.iconTabNeedTranslate { background-image: url(./img/page_add.png) !important;}
-.iconTabNeedUpdate { background-image: url(./img/arrow_refresh.png) !important;}
-.iconTabView { background-image: url(./img/eye.png) !important;}
-.iconTranslator { background-image: url(./img/group.png) !important;}
-.iconUndo { background-image: url(./img/arrow_undo.png) !important;}
-.iconUpdateFileVcs { background-image: url(./img/database_refresh.png) !important;}
-.iconView { background-image: url(./img/eye.png) !important;}
-.iconViewDiff { background-image: url(./img/chart_organisation.png) !important;}
+.iconAllFiles { background-image: url(./img/application_side_tree.png) !important;}
+.iconBook { background-image: url(./img/book.png) !important;}
+.iconBugs { background-image: url(./img/bug.png) !important;}
+.iconBuildStatus { background-image: url(./img/error_delete.png) !important;}
+.iconCheckBuild { background-image: url(./img/bug_delete.png) !important;}
+.iconCheckDoc { background-image: url(./img/lightbulb_add.png) !important;}
+.iconCheckEntities { background-image: url(./img/link_break.png) !important;}
+.iconClose { background-image: url(./img/cancel.png) !important;}
+.iconCloseOthersTabs { background-image: url(./img/tab_delete.png) !important;}
+.iconCommitFileVcs { background-image: url(./img/database_go.png) !important;}
+.iconConf { background-image: url(./img/wrench_orange.png) !important;}
+.iconDelete { background-image: url(./img/delete.png) !important;}
+.iconErasePersonalData { background-image: url(./img/layout_delete.png) !important;}
+.iconError { background-image: url(./img/exclamation.gif) !important;}
+.iconFiles { background-image: url(./img/page.png) !important;}
+.iconFilesError { background-image: url(./img/error_delete.png) !important;}
+.iconFilesNeedReviewed { background-image: url(./img/page_edit.png) !important;}
+.iconFilesNeedTranslate{ background-image: url(./img/page_add.png) !important;}
+.iconFilesNeedUpdate { background-image: url(./img/arrow_refresh.png) !important;}
+.iconFinishRefresh { background-image: url(./img/accept.png) !important;}
+.iconFolderOpen { background-image: url(./img/folder-open.gif) !important;}
+.iconFolderClose { background-image: url(./img/folder.gif) !important;}
+.iconHelp { background-image: url(./img/help.png) !important;}
+.iconIndent { background-image: url(./img/text_indent.png) !important;}
+.iconInfo { background-image: url(./img/information.gif) !important;}
+.iconInsertCode { background-image: url(./img/page_code.png) !important;}
+.iconLogOut { background-image: url(./img/door_in.png) !important;}
+.iconNotInEn { background-image: url(./img/delete.png) !important;}
+.iconOpenInTab { background-image: url(./img/tab_go.png) !important;}
+.iconPageDelete { background-image: url(./img/page_delete.png) !important;}
+.iconPatchAlert { background-image: url(./img/bell.png) !important;}
+.iconPendingCommit { background-image: url(./img/arrow_down.png) !important;}
+.iconPendingPatch { background-image: url(./img/arrow_switch.png) !important;}
+.iconRedo { background-image: url(./img/arrow_redo.png) !important;}
+.iconRefresh { background-image: url(./img/arrow_refresh.png) !important;}
+.iconRun { background-image: url(./img/cog.png) !important;}
+.iconSaveAsFile { background-image: url(./img/table_save.png) !important;}
+.iconSaveFile { background-image: url(./img/disk.png) !important;}
+.iconSendEmail { background-image: url(./img/email_edit.png) !important;}
+.iconStartRefresh { background-image: url(./img/hourglass_go.png) !important; }
+.iconSummary { background-image: url(./img/details.gif) !important;}
+.iconTabError { background-image: url(./img/error_delete.png) !important;}
+.iconTabLink { background-image: url(./img/page_link.png) !important;}
+.iconTabNeedReviewed { background-image: url(./img/page_edit.png) !important;}
+.iconTabNeedTranslate { background-image: url(./img/page_add.png) !important;}
+.iconTabNeedUpdate { background-image: url(./img/arrow_refresh.png) !important;}
+.iconTabView { background-image: url(./img/eye.png) !important;}
+.iconTranslator { background-image: url(./img/group.png) !important;}
+.iconUndo { background-image: url(./img/arrow_undo.png) !important;}
+.iconUpdateFileVcs { background-image: url(./img/database_refresh.png) !important;}
+.iconView { background-image: url(./img/eye.png) !important;}
+.iconViewDiff { background-image: url(./img/chart_organisation.png) !important;}
+.iconWinManageLog { background-image: url(./img/page_white_gear.png) !important; }
-.checkBuild { background-image: url(./img/bug_delete.png) !important;}
-.refresh { background-image: url(./img/arrow_refresh.png) !important;}
-.saveFile { background-image: url(./img/disk.png) !important;}
-.saveAsFile { background-image: url(./img/table_save.png) !important;}
-.patchAlert { background-image: url(./img/bell.png) !important;}
-.openInTab {
- background-image: url(./img/tab_go.png) !important;
-}
-.startRefresh {
- background-image: url(./img/hourglass_go.png) !important;
-}
-.finishRefresh {
- background-image: url(./img/accept.png) !important;
-}
.confStatusBar {
background: transparent url(./img/help.png) no-repeat 0 2px;
padding-left: 20px !important;
}
-.winManageLog {
- background-image: url(./img/page_white_gear.png) !important;
-}
#main-panel .x-layout-collapsed-west {
background-image: url(./img/vcs_log.png);
background-repeat: no-repeat;