[pve-devel] [PATCH manager 1/3] show correct mouse cursor on help and settings button

Dominik Csapak d.csapak at proxmox.com
Mon Oct 31 12:10:09 CET 2016


this patch fixes that moving your mouse over the top help button or the
settings button, does not change your mouse cursor like on every other
link/button/etc

Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
---
 www/manager6/Workspace.js | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/www/manager6/Workspace.js b/www/manager6/Workspace.js
index 30e135a..dad11ea 100644
--- a/www/manager6/Workspace.js
+++ b/www/manager6/Workspace.js
@@ -403,6 +403,9 @@ Ext.define('PVE.StdWorkspace', {
 			    xtype: 'button',
 			    margin: '0 10 0 3',
 			    iconCls: 'fa black fa-gear',
+			    style: {
+				cursor: 'pointer'
+			    },
 			    handler: function() {
 				var win = Ext.create('PVE.window.Settings');
 				win.show();
@@ -411,6 +414,7 @@ Ext.define('PVE.StdWorkspace', {
 			{
 			    xtype: 'pveHelpButton',
 			    hidden: false,
+			    baseCls: 'x-btn',
 			    iconCls: 'fa fa-info-circle x-btn-icon-el-default-toolbar-small ',
 			    listenToGlobalEvent: false,
 			    onlineHelp: 'pve_documentation_index',
-- 
2.1.4





More information about the pve-devel mailing list