I have a really big project where I need to change all the cursor: pointer to a custom pointer
Here's how the normal pointer looks:
One way to do it is to create a class like the following in CSS and apply it to every element in html where the custom pointer is supposed to appear:
.custom-pointer {
cursor: url("../img/custom-pointer-cursor.png"), auto;
}
The problem though is that that pointer is supposed to appear in a 100+ places in the project and I was wondering if there is a way to just override cursor: pointer with my custom pointer with only a couple of lines of code in css.
I have looked on the web but have not found anything similar to what I want to do.

cursor: pointerwithcursor: url(…), auto;should not be that big of a deal to begin with. (And if the use of white space isn’t that consistent across the project, a regular expression search should be able to handle that as well.)