Highlight all votes on hover

This commit is contained in:
ricola 2026-01-14 09:17:58 -06:00
parent 325200628c
commit eff896948e
2 changed files with 9 additions and 9 deletions

View file

@ -20,10 +20,10 @@
.mj-cell-<%= v[:id] %> {
background-color: <%= v[:color] %> !important;
}
.mj-cell-<%= v[:id] %>:hover {
border-left-width: 1px;
border-right-width: 1px;
border-color: var(--bs-body-color);
}
<% end %>
table:has(.mj-cell:hover) .mj-cell {
border-left-width: 2px;
border-right-width: 2px;
border-color: var(--bs-body-color);
}