198 lines
3.6 KiB
CSS
198 lines
3.6 KiB
CSS
.modal {
|
|
max-width: 640px;
|
|
}
|
|
|
|
/* Step 1 — selectable cards (mandate / feature) */
|
|
|
|
.fieldLabel {
|
|
display: block;
|
|
font-size: 0.8rem;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
color: var(--text-secondary);
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.required {
|
|
color: var(--primary-color, #f25843);
|
|
margin-left: 0.25rem;
|
|
}
|
|
|
|
.cardGrid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.cardButton {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
padding: 0.75rem 0.875rem;
|
|
border-radius: 8px;
|
|
border: 1px solid var(--border-color);
|
|
background: var(--bg-secondary, rgba(255, 255, 255, 0.03));
|
|
color: var(--text-primary);
|
|
font-size: 0.875rem;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: all 0.15s ease;
|
|
min-height: 44px;
|
|
}
|
|
|
|
.cardButton:hover {
|
|
border-color: rgba(242, 88, 67, 0.5);
|
|
background: rgba(242, 88, 67, 0.06);
|
|
}
|
|
|
|
.cardButton:focus-visible {
|
|
outline: 2px solid var(--primary-color, #f25843);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.cardButtonActive {
|
|
border-color: rgba(242, 88, 67, 0.7);
|
|
background: rgba(242, 88, 67, 0.18);
|
|
color: var(--primary-color, #f25843);
|
|
box-shadow: 0 0 0 1px rgba(242, 88, 67, 0.3) inset;
|
|
}
|
|
|
|
.cardButton:disabled {
|
|
opacity: 0.45;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.textInput {
|
|
width: 100%;
|
|
padding: 0.55rem 0.75rem;
|
|
border-radius: 6px;
|
|
border: 1px solid var(--border-color);
|
|
background: var(--bg-primary);
|
|
color: var(--text-primary);
|
|
font-size: 0.9rem;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.textInput:focus {
|
|
outline: none;
|
|
border-color: var(--primary-color, #f25843);
|
|
}
|
|
|
|
.fieldError {
|
|
margin-top: 0.35rem;
|
|
font-size: 0.8rem;
|
|
color: var(--primary-color, #f25843);
|
|
}
|
|
|
|
.fieldGroup {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.fieldHint {
|
|
margin-top: 0.35rem;
|
|
font-size: 0.78rem;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.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);
|
|
}
|