I have an HTML table with certain rows marked as 'disabled'. To make this clear to the user, I decided to apply a blur filter to the tr
, resulting in a table that looks like this:
https://i.stack.imgur.com/GcX67.png
NOTE: You can view a live example at https://stackblitz.com/edit/angular-cdypks.
The issue I'm facing is that despite appearing disabled, users are still able to interact with it by selecting text and clicking on select inputs. Additionally, some cells serve as droppable areas for objects, which I'd prefer to avoid.
Without wanting to resort to Javascript, I'm wondering if there's a way to overlay a transparent DIV over the disabled tr
or employ a similar solution...
Thank you!