My CSS table appears standard:
<table class="form grid">
<thead>
<tr>
<th>EId</th>
<th>Number</th>
<th>Name</th>
</tr>
</thead>
...
This table has labels and input fields. I want to disable user interaction with the table when data is retrieved via an Ajax call. Additionally, I am looking to adjust the appearance of the table based on the background theme - making it lighter for black on white background and darker for white on black background themes. Is there a way to achieve this using CSS?