If I set the cursor for a Label in a css-file as shown below it works as expected. The cursor is a "wait-cursor" if it is moved over the Label
Label.mylabel:hover {
cursor: wait;
}
As it is described in the RWT-Theming-Reference the following should also be possible
Label.mylabel:hover {
cursor: url( resources/cursor.gif );
}
But I can not see my cursor.
How can I set an own image for a cursor?