[UI] Is it possible to have certain elements ignore the parent mask?

Is there a way to have certain children of a mask ignore it? I’m using a scrollview which contains buttons so I want them to be cut off by the mask. However, clicking these buttons opens a pop up to the right of the scrollview which obviously are being blocked by the mask too.

Is it possible to have these elements ignore the mask?

I managed to get it working!

Added Stencil pass to a font shader I found and now the colours are all being correctly displayed while outside of a mask!

Adding this to the shader was most important:

		Stencil {
                Ref 1
                Comp Greater // Greater displays it outside of mask
                Pass Keep
            }