Use fit-content wrapper for member view pref rows
This commit is contained in:
@@ -73,7 +73,8 @@
|
|||||||
.room-label { font-weight: bold; font-size: 0.8rem; margin-bottom: 0.2rem; }
|
.room-label { font-weight: bold; font-size: 0.8rem; margin-bottom: 0.2rem; }
|
||||||
.solver-score { font-size: 0.8rem; margin-top: 0.3rem; color: var(--wa-color-neutral-500); }
|
.solver-score { font-size: 0.8rem; margin-top: 0.3rem; color: var(--wa-color-neutral-500); }
|
||||||
.divider { border: none; border-top: 1px solid #909090; margin: 0.75rem 0; }
|
.divider { border: none; border-top: 1px solid #909090; margin: 0.75rem 0; }
|
||||||
.pref-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0; padding: 0.3rem 0.4rem; max-width: 24rem; }
|
.pref-rows { width: fit-content; }
|
||||||
|
.pref-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0; padding: 0.3rem 0.4rem; }
|
||||||
.pref-row:nth-child(odd) { background: var(--wa-color-neutral-50); border-radius: 0.25rem; }
|
.pref-row:nth-child(odd) { background: var(--wa-color-neutral-50); border-radius: 0.25rem; }
|
||||||
.pref-row .pref-name { flex: 1; font-size: 0.85rem; }
|
.pref-row .pref-name { flex: 1; font-size: 0.85rem; }
|
||||||
.pref-row wa-radio-group { white-space: nowrap; }
|
.pref-row wa-radio-group { white-space: nowrap; }
|
||||||
|
|||||||
@@ -617,6 +617,8 @@ async function renderMemberView(me) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const rows = document.createElement('div');
|
||||||
|
rows.className = 'pref-rows';
|
||||||
for (const other of students) {
|
for (const other of students) {
|
||||||
if (myStudentIDs.has(other.id)) continue;
|
if (myStudentIDs.has(other.id)) continue;
|
||||||
const row = document.createElement('div');
|
const row = document.createElement('div');
|
||||||
@@ -658,8 +660,9 @@ async function renderMemberView(me) {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
row.appendChild(group);
|
row.appendChild(group);
|
||||||
card.appendChild(row);
|
rows.appendChild(row);
|
||||||
}
|
}
|
||||||
|
card.appendChild(rows);
|
||||||
container.appendChild(card);
|
container.appendChild(card);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user