Is there anyway to add a glow around one row in a table? Similar to this form.
Heres the code to make this happen, from CSS/HTML: Create a glowing border around an Input Field
.glowing-border {
border: 2px solid #dadada;
border-radius: 7px;
}
.glowing-border:focus {
outline: none;
border-color: #9ecaed;
box-shadow: 0 0 10px #9ecaed;
}
Anyone know how I could transfer this style to a table row?