Change cursor color

Hello,

Is there any way to change cursor color for example after button click.

Thank you in advance

Hello, Dawid,
I’m not sure is it possible to change the color of the cursor but you can set another icon for it like that: Page.getCurrent().getStyles().add(".v-ui { cursor:crosshair;}"); You can set your own icon by

cursor:url("url_to_your_icon"),auto; I’m not sure is it possible to do that for the whole application (probably not), most likely you need to create your own theme where you will specify your cursor for each component (.v-ui, v-button,v-textfield …). And then just change theme on button click.