/* Rows in the capture list that can be clicked to light that angle up in the 3D
   view. The picked row is marked in the same pink as the points, so the row and
   the shot on screen are plainly the same thing. */

.merge-row[data-angle] {
    cursor: pointer;
}

.merge-row[data-angle]:hover {
    border-color: rgba(255, 95, 162, 0.4);
}

.merge-row.is-picked {
    border-color: #ff5fa2;
    background: rgba(255, 95, 162, 0.1);
}

.merge-row.is-picked .merge-row-main strong {
    color: #ff5fa2;
}

.angle-pick-hint {
    margin-top: 6px;
}
