JSFiddle - React, Tailwind, and code Playground
HTML
<table>
<tr class="dim">
<td>
<input type="checkbox">
</td>
<td>
<input type="text" class="input-large enforce-label" name="labels[]" maxlength="30">
</td>
<td>
<input type="text" class="input-large" name="addresses[]" maxlength="255">
</td>
<td>
<input type="text" class="input-small" name="ssh_usernames[]" maxlength="100">
</td>
<td>
<input type="text" class="input-small enforce-ssh-port" name="ssh_ports[]" maxlength="5">
</td>
</tr>
</table>
CSS
.dim input:not([type=checkbox]){
-webkit-opacity: 0.25;
-moz-opacity: 0.25;
filter:alpha(opacity=25);
opacity: 0.1;
}