cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X

Cursor customization

AP_9587236
17-Peridot

Cursor customization

Is it possible to change the cursor(arrow mark) to hand image?

1 ACCEPTED SOLUTION

Accepted Solutions
TonyZhang
13-Aquamarine
(To:TonyZhang)

@AP_9587236,

 

Collection widgets allow you display multiple base mashups.

Assign a name to CustomClass property to the base mashup.

Write below custom css code in base mashup.

 

.ReplaceMeWithActualCustomClassName {

      cursor: grab;

}

View solution in original post

8 REPLIES 8
PaiChung
22-Sapphire I
(To:AP_9587236)

Cursor changes are usually associated with Hover and Click, you should be able to do that in CSS

We have 700 entities. In which mashup (or) where i have to use css code for hover and click functionality of user?? And What is the css code for that??

TonyZhang
13-Aquamarine
(To:AP_9587236)

You can use below css in mashups or masters to change the cursor to hand image when mouse not hovering on any widgets.

body {
    cursor: grab;
}

 

To change the mouse over style on widgets, you'll need to use custom css to target each element and change the cursor style which might not be feasible for some elements.

 Do you have css to change the cursor to hand image when mouse hovering on collection widgets. @TonyZhang 

TonyZhang
13-Aquamarine
(To:AP_9587236)

Hi @AP_9587236,

 

If you feel your question has been answered, please mark the appropriate response as the Accepted Solution for the benefit of others with the same question.

 

Regards,

Tony

TonyZhang
13-Aquamarine
(To:TonyZhang)

@AP_9587236,

 

Collection widgets allow you display multiple base mashups.

Assign a name to CustomClass property to the base mashup.

Write below custom css code in base mashup.

 

.ReplaceMeWithActualCustomClassName {

      cursor: grab;

}

I followed this procedure with this css. It is working fine. Thanks. 

.pointer {

cursor: pointer;

}

PaiChung
22-Sapphire I
(To:AP_9587236)

I unfortunately do not know CSS, ThingWorx supports a 'master' css theme so that's probably where I would put it.

Top Tags