This commit is contained in:
Ross
2024-10-14 10:32:18 +01:00
parent 502e4d3f83
commit b0deb17951
+6 -1
View File
@@ -56,7 +56,7 @@
></i></span> ></i></span>
</td> </td>
<td class="trainee-bulk-edit"> <td class="trainee-bulk-edit">
<input type="checkbox" name="selection" value="{{trainee.user.pk}}"> <input class="trainee-checkbox" type="checkbox" name="selection" value="{{trainee.user.pk}}">
</td> </td>
</tr> </tr>
@@ -133,6 +133,11 @@
box-shadow: 0 0 2px #ccc; box-shadow: 0 0 2px #ccc;
} }
tr:has(.trainee-checkbox:checked) {
background-color: darkgrey;
color: white;
}
</style> </style>
{% endblock %} {% endblock %}