Hi,
I want to change the mouse cursor icon from the hand to the default cursor for all buttons/tabs/... of smartgwt.
I tried the following CSS rule:
However, this just works with regular links. Is there an easy way to change the mouse cursor for every "clickable" widget?
Thanks
edit.: and the same question to context menus: do I have to overwrite every context menu function with an empty context menu if I don't want the default browser context menu to be displayed? or is there a better solution?
I want to change the mouse cursor icon from the hand to the default cursor for all buttons/tabs/... of smartgwt.
I tried the following CSS rule:
Code:
a:hover { cursor: default; }
Thanks
edit.: and the same question to context menus: do I have to overwrite every context menu function with an empty context menu if I don't want the default browser context menu to be displayed? or is there a better solution?
Comment