Merged in bugfix/PMCORE-2730 (pull request #7903)
PMCORE-2730 Approved-by: Julio Cesar Laura Avendaño
This commit is contained in:
committed by
Julio Cesar Laura Avendaño
commit
35cbe16c05
@@ -559,6 +559,11 @@ x-btn-mc em.x-btn-arrow {
|
||||
right: auto;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
img.x-form-trigger.x-form-arrow-trigger {
|
||||
border-left: solid 1px rgb(156, 153, 153);
|
||||
}
|
||||
|
||||
.x-form-field-wrap {
|
||||
right: 0;
|
||||
left: auto;
|
||||
|
||||
@@ -57,20 +57,20 @@ Ext.onReady(function(){
|
||||
|
||||
newButton = new Ext.Action({
|
||||
text: _('ID_NEW'),
|
||||
iconCls: 'button_menu_ext ss_sprite ss_add',
|
||||
icon: '/images/add_18.png',
|
||||
handler: newDashletInstance
|
||||
});
|
||||
|
||||
editButton = new Ext.Action({
|
||||
text: _('ID_EDIT'),
|
||||
iconCls: 'button_menu_ext ss_sprite ss_pencil',
|
||||
icon: '/images/pencil.png',
|
||||
handler: editDashletInstance,
|
||||
disabled: true
|
||||
});
|
||||
|
||||
deleteButton = new Ext.Action({
|
||||
text: _('ID_DELETE'),
|
||||
iconCls: 'button_menu_ext ss_sprite ss_delete',
|
||||
icon: '/images/delete-16x16.gif',
|
||||
handler: deleteDashletInstance,
|
||||
disabled: true
|
||||
});
|
||||
|
||||
@@ -994,10 +994,8 @@ emailServer.application = {
|
||||
|
||||
var btnNew = new Ext.Action({
|
||||
id: "btnNew",
|
||||
|
||||
text: _("ID_NEW"),
|
||||
iconCls: "button_menu_ext ss_sprite ss_add",
|
||||
|
||||
icon: '/images/add_18.png',
|
||||
handler: function ()
|
||||
{
|
||||
EMAILSERVEROPTION = "INS";
|
||||
@@ -1011,10 +1009,8 @@ emailServer.application = {
|
||||
|
||||
var btnEdit = new Ext.Action({
|
||||
id: "btnEdit",
|
||||
|
||||
text: _("ID_EDIT"),
|
||||
iconCls: "button_menu_ext ss_sprite ss_pencil",
|
||||
|
||||
icon: '/images/pencil.png',
|
||||
handler: function ()
|
||||
{
|
||||
var record = grdpnlMain.getSelectionModel().getSelected();
|
||||
@@ -1032,10 +1028,8 @@ emailServer.application = {
|
||||
|
||||
var btnDelete = new Ext.Action({
|
||||
id: "btnDelete",
|
||||
|
||||
text: _("ID_DELETE"),
|
||||
iconCls: "button_menu_ext ss_sprite ss_cross",
|
||||
|
||||
icon: '/images/delete-16x16.gif',
|
||||
handler: function ()
|
||||
{
|
||||
var record = grdpnlMain.getSelectionModel().getSelected();
|
||||
|
||||
@@ -995,14 +995,8 @@ Ext.onReady(function () {
|
||||
name: 'REP_TAB_GRID',
|
||||
value: 'GridComments-463650787492db06640c904001904930'
|
||||
});
|
||||
items.push({
|
||||
xtype: 'compositefield',
|
||||
fieldLabel: _("ID_TYPE"),
|
||||
msgTarget: 'side',
|
||||
anchor: '-20',
|
||||
defaults: {flex: 1},
|
||||
items: [comboReport, comboGridsList]
|
||||
});
|
||||
items.push(comboReport);
|
||||
items.push(comboGridsList);
|
||||
items.push(comboDbConnections);
|
||||
|
||||
|
||||
|
||||
@@ -68,20 +68,20 @@ Ext.onReady(function(){
|
||||
|
||||
newButton = new Ext.Action({
|
||||
text: _('ID_NEW'),
|
||||
iconCls: 'button_menu_ext ss_sprite ss_add',
|
||||
icon: '/images/add_18.png',
|
||||
handler: NewCategoryWindow
|
||||
});
|
||||
|
||||
editButton = new Ext.Action({
|
||||
text: _('ID_EDIT'),
|
||||
iconCls: 'button_menu_ext ss_sprite ss_pencil',
|
||||
icon: '/images/pencil.png',
|
||||
handler: EditCategory,
|
||||
disabled: true
|
||||
});
|
||||
|
||||
deleteButton = new Ext.Action({
|
||||
text: _('ID_DELETE'),
|
||||
iconCls: 'button_menu_ext ss_sprite ss_delete',
|
||||
icon: '/images/delete-16x16.gif',
|
||||
handler: DeleteCategory,
|
||||
disabled: true
|
||||
});
|
||||
|
||||
@@ -69,27 +69,27 @@ Ext.onReady(function(){
|
||||
|
||||
newButton = new Ext.Action({
|
||||
text: _('ID_NEW'),
|
||||
iconCls: 'button_menu_ext ss_sprite ss_add',
|
||||
icon: '/images/add_18.png',
|
||||
handler: NewCalendarAction
|
||||
});
|
||||
|
||||
editButton = new Ext.Action({
|
||||
text: _('ID_EDIT'),
|
||||
iconCls: 'button_menu_ext ss_sprite ss_pencil',
|
||||
icon: '/images/pencil.png',
|
||||
handler: EditCalendarAction,
|
||||
disabled: true
|
||||
});
|
||||
|
||||
deleteButton = new Ext.Action({
|
||||
text: _('ID_DELETE'),
|
||||
iconCls: 'button_menu_ext ss_sprite ss_delete',
|
||||
icon: '/images/delete-16x16.gif',
|
||||
handler: DeleteButtonAction,
|
||||
disabled: true
|
||||
});
|
||||
|
||||
copyButton = new Ext.Action({
|
||||
text: _('ID_COPY'),
|
||||
iconCls: 'button_menu_ext ss_sprite ss_calendar_add',
|
||||
icon: '/images/add-table.png',
|
||||
handler: CopyButtonAction,
|
||||
disabled: true
|
||||
});
|
||||
|
||||
@@ -62,7 +62,7 @@ Ext.onReady(function(){
|
||||
|
||||
newButton = new Ext.Action({
|
||||
text: _('ID_NEW'),
|
||||
iconCls: 'button_menu_ext ss_sprite ss_add',
|
||||
icon: '/images/add_18.png',
|
||||
disabled: false,
|
||||
handler: newSkin
|
||||
});
|
||||
@@ -70,7 +70,7 @@ Ext.onReady(function(){
|
||||
|
||||
deleteButton = new Ext.Action({
|
||||
text: _('ID_DELETE'),
|
||||
iconCls: 'button_menu_ext ss_sprite ss_delete',
|
||||
icon: '/images/delete-16x16.gif',
|
||||
handler: deleteSkin,
|
||||
disabled: true
|
||||
});
|
||||
@@ -78,14 +78,14 @@ Ext.onReady(function(){
|
||||
|
||||
importButton = new Ext.Action({
|
||||
text: _('ID_IMPORT'),
|
||||
iconCls: 'button_menu_ext ss_sprite ss_building_add',
|
||||
icon: '/images/add_building.png',
|
||||
handler: importSkin,
|
||||
disabled: false
|
||||
});
|
||||
|
||||
exportButton = new Ext.Action({
|
||||
text: _('ID_EXPORT'),
|
||||
iconCls: 'button_menu_ext ss_sprite ss_building_go',
|
||||
icon: '/images/export_building.png',
|
||||
handler: exportSkin,
|
||||
disabled: true
|
||||
});
|
||||
|
||||
@@ -56,20 +56,20 @@ Ext.onReady(function() {
|
||||
|
||||
newButton = new Ext.Action({
|
||||
text: _('ID_NEW'),
|
||||
iconCls: 'button_menu_ext ss_sprite ss_add',
|
||||
icon: '/images/add_18.png',
|
||||
handler: newDashboard
|
||||
});
|
||||
|
||||
editButton = new Ext.Action({
|
||||
text: _('ID_EDIT'),
|
||||
iconCls: 'button_menu_ext ss_sprite ss_pencil',
|
||||
icon: '/images/pencil.png',
|
||||
handler: editDashboard,
|
||||
disabled: true
|
||||
});
|
||||
|
||||
deleteButton = new Ext.Action({
|
||||
text: _('ID_DELETE'),
|
||||
iconCls: 'button_menu_ext ss_sprite ss_delete',
|
||||
icon: '/images/delete-16x16.gif',
|
||||
handler: deleteDashboard,
|
||||
disabled: true
|
||||
});
|
||||
|
||||
BIN
workflow/public_html/images/add_building.png
Normal file
BIN
workflow/public_html/images/add_building.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 656 B |
BIN
workflow/public_html/images/export_building.png
Normal file
BIN
workflow/public_html/images/export_building.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 681 B |
Reference in New Issue
Block a user