Use the pointer cursor more often

I caught myself thinking that I miss having different cursors for different scenarios when using the app (opening links, navigation, buttons). Basically, right now we only have the default cursor and the text cursor.

Below is a link to Reddit with a similar question from a user and a solution with a custom CSS file. I haven’t tried it, but maybe this will help.
https://www.reddit.com/r/Anytype/comments/1kp1om9/if_youre_like_me_and_the_lack_of_pointer_cursor/

As for me, I would like to see this support in the form of an official solution, as it really facilitates user interaction.

Yes, fully agree. I find these AT quirks cool but not intuitive for all users. Hence, making actions explicit and obvious would probably be a way to go for a more widespread adoption (and for me to advertise to non-tech people).

I am also getting confused with links, for example, and what happens if I click somewhere. Editable fields vs (non-editable) labels, etc.

However, I’m quite happy that these are the categories of problems we are moving onto now. It shows that some meaningful progress has been made recently in terms of stability and functionality overall.

Yes, that’s the “app style” that Anytype uses, and I think and it’s unlikely to change. Personally, I prefer a “web style”, where links and buttons are made more recognizable by using a pointer cursor.

My custom CSS only takes into account spaces, widgets, and cards, which is enough for me:

/* Pointer cursor for gallery cards */
.viewContent.viewGallery .card:hover {
    cursor: pointer;
}

/* Pointer cursor for spaces */
.sidebar .sidebarPage.pageVault .item:hover {
    cursor: pointer;
}

/* Pointer cursor for widgets */
.widget:hover {
    cursor: pointer;
}