Hovering over a graphomate extension component changes the cursor to a "hand" icon to show that a click interaction is possible. This article shows how to suppress that behavior to show the standard cursor instead of the hand icon on mouse over.
Step-by-Step-Guide
Insert the following code in the “custom.css” of your application and replace the <NameChart> with the name of your component.
Code Block |
---|
|
#<NameChart>_control {
cursor: default !important;
}
#<NameChart>_control svg {
cursor: default !important;
}
#<NameChart>_control line {
cursor: default !important;
} |
Links
Related Articles
Filter by label (Content by label) |
---|
showLabels | false |
---|
max | 5 |
---|
spaces | KUNDEN |
---|
showSpace | false |
---|
sort | modified |
---|
reverse | true |
---|
type | page |
---|
cql | label in ("css","cursor","default","hand","hover","mouseover") and type = "page" and space = "KUNDEN" |
---|
labels | cursor hand default hover css mouseover |
---|
|
...