- Increase the member role text sizing in CreateRoomModal for better readability - Update CreateRoomModal.css with the adjusted typography value - Keep the change scoped to create-room role styling only Fusion-Task-Id: FN-3808
106 lines
2.0 KiB
CSS
106 lines
2.0 KiB
CSS
.create-room-modal {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--space-md);
|
|
}
|
|
|
|
.create-room-modal-name-group {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.create-room-modal-name-field {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--space-sm);
|
|
}
|
|
|
|
.create-room-modal-name-hash {
|
|
color: var(--text-muted);
|
|
font-family: var(--font-mono);
|
|
}
|
|
|
|
.create-room-modal-name-field .input {
|
|
flex: 1;
|
|
}
|
|
|
|
.create-room-modal-selected {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: var(--space-sm);
|
|
padding: 0 var(--space-xl);
|
|
}
|
|
|
|
.create-room-modal-chip {
|
|
border-color: var(--border);
|
|
}
|
|
|
|
.create-room-modal-member-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--space-xs);
|
|
max-height: calc(var(--space-2xl) * 8);
|
|
overflow-y: auto;
|
|
padding: 0 var(--space-xl);
|
|
}
|
|
|
|
.create-room-modal-member-row {
|
|
display: flex;
|
|
width: 100%;
|
|
align-items: center;
|
|
gap: var(--space-sm);
|
|
text-align: left;
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-md);
|
|
padding: var(--space-sm);
|
|
background: var(--surface);
|
|
color: var(--text);
|
|
transition: background var(--transition-fast), border-color var(--transition-fast);
|
|
}
|
|
|
|
.create-room-modal-member-row:hover {
|
|
background: var(--card-hover);
|
|
}
|
|
|
|
.create-room-modal-member-row:focus-visible {
|
|
outline: none;
|
|
box-shadow: var(--focus-ring-strong);
|
|
}
|
|
|
|
.create-room-modal-member-row--selected {
|
|
border-color: var(--todo);
|
|
background: color-mix(in srgb, var(--todo) 12%, transparent);
|
|
}
|
|
|
|
.create-room-modal-member-role {
|
|
margin-left: auto;
|
|
color: var(--text-muted);
|
|
font-size: var(--space-md);
|
|
}
|
|
|
|
.create-room-modal-empty {
|
|
color: var(--text-muted);
|
|
padding: var(--space-md);
|
|
text-align: center;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.create-room-modal {
|
|
width: 100%;
|
|
}
|
|
|
|
.create-room-modal-selected,
|
|
.create-room-modal-member-list {
|
|
padding: 0 var(--space-md);
|
|
}
|
|
|
|
.create-room-modal .modal-actions {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--space-sm);
|
|
}
|
|
|
|
.create-room-modal .modal-actions .btn {
|
|
width: 100%;
|
|
}
|
|
}
|