Would love the option to be able to navigate to a link in the record on click from a collection view.
Current use case:
I’m building out my affiliate link page and I have the url saved in a field on the record. Rather than a ‘button’ to take the user to the link, I’d rather the entire card be clickable and navigate to the external url.
This isn’t a major concern, just one of those quality of life improvements.
Here’s one work around lol - You’ll just need to find the parent ‘element class’ for that page via chrome developer, it’s a few div’s up from the card in the inspector.
/* Change any buttons in a card to an overlay which,
when clicked, opens the link in a new tab */
.element-XXXXXXXX [data-testid=collection-record] span a{
position: absolute;
top:0;
bottom:0;
width:100%;
z-index: 2;
background: transparent;
color:transparent;
}
Note: I’m not sure what this does if you have multiple buttons on a card, but if you have one it works just fine.
If anyone is trying to use the css above, just fyi, you may need to make an additional tweak to work on mobile, here’s the final css that makes the entire card clickable: