103 lines
1.7 KiB
CSS
103 lines
1.7 KiB
CSS
.modal {
|
|
max-width: 520px;
|
|
}
|
|
|
|
.steps {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 0.5rem;
|
|
padding: 0.75rem 1.5rem;
|
|
border-bottom: 1px solid var(--border-color);
|
|
background: rgba(255, 255, 255, 0.03);
|
|
}
|
|
|
|
.stepDot {
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 0.8rem;
|
|
font-weight: 600;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
border: 1px solid rgba(255, 255, 255, 0.15);
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.stepDotActive {
|
|
background: rgba(242, 88, 67, 0.2);
|
|
border-color: rgba(242, 88, 67, 0.5);
|
|
color: var(--primary-color, #f25843);
|
|
box-shadow: 0 0 12px rgba(242, 88, 67, 0.3);
|
|
}
|
|
|
|
.stepContent {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.stepText {
|
|
margin: 0;
|
|
font-size: 0.875rem;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.checkLabel {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
font-size: 0.875rem;
|
|
color: var(--text-secondary);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.checkLabel input {
|
|
width: 1rem;
|
|
height: 1rem;
|
|
}
|
|
|
|
.stepActions {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 1rem;
|
|
margin-top: 0.5rem;
|
|
}
|
|
|
|
.userList {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
max-height: 280px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.userRow {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
padding: 0.5rem 0;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.userName {
|
|
flex: 0 0 140px;
|
|
font-size: 0.875rem;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.roleSelect {
|
|
flex: 1;
|
|
padding: 0.4rem 0.6rem;
|
|
font-size: 0.875rem;
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 6px;
|
|
background: var(--bg-primary);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.roleSelect:focus {
|
|
outline: none;
|
|
border-color: var(--primary-color);
|
|
}
|