Ok so that looks like a nested gallery, which might make things a bit more complicated.. let's try the simple approach first
What I would do is have your info icon set a variable relating to ThisItem, and because you want it to toggle on or off being selected, we will need to include that in the formula:
Set(
CurrentlySelectedItem,
If(
CurrentlySelectedItem.ID = ThisItem.ID,
Blank(),
ThisItem
)
)
Then set the Fill property of your row to:
If(
ThisItem.ID = CurrentlySelectedItem.ID,
// This is a transparent red
RGBA(255,0,0, 15%),
// If this is not the selected item, just use a transparent background
Transparent
)
Could you give this a try and then let me know how it goes?
Cheers,
Sancho