checkbox compact view

This commit is contained in:
Bruno Charest 2026-01-13 19:26:25 -05:00
parent 3a15d7134e
commit a9f3c009fc

View File

@ -2103,7 +2103,7 @@ select:focus {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 1rem; gap: 1rem;
padding: 0.875rem 1.25rem 0.875rem 3rem; padding: 0.875rem 1.25rem 0.875rem 4.25rem;
background: var(--bg-card); background: var(--bg-card);
border: none; border: none;
border-bottom: 1px solid var(--border); border-bottom: 1px solid var(--border);
@ -2241,18 +2241,22 @@ select:focus {
/* Compact view - Selection checkbox */ /* Compact view - Selection checkbox */
.view-compact .link-select-checkbox { .view-compact .link-select-checkbox {
position: relative; position: absolute;
top: auto; top: 50%;
left: auto; left: 0.75rem;
transform: none; transform: translateY(-50%);
margin-right: 0.5rem; right: auto;
margin: 0;
opacity: 0; opacity: 0;
background: transparent; background: transparent;
box-shadow: none; box-shadow: none;
border: none; border: none;
width: 20px; width: 20px;
height: auto; height: 20px;
display: block; display: flex;
align-items: center;
justify-content: center;
z-index: 20;
} }
.view-compact .link-outer:hover .link-select-checkbox, .view-compact .link-outer:hover .link-select-checkbox,