This commit is contained in:
@ -3548,6 +3548,105 @@ select:disabled {
|
||||
color: var(--primary-text);
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
||||
}
|
||||
.scoring-profile-complete-bands {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
margin-top: 10px;
|
||||
padding-top: 10px;
|
||||
border-top: 1px dashed var(--border);
|
||||
}
|
||||
.scoring-profile-complete-label {
|
||||
font-size: .8125rem;
|
||||
font-weight: 600;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
.scoring-profile-complete-chips {
|
||||
display: inline-flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 6px;
|
||||
}
|
||||
.scoring-process-complete-panel {
|
||||
margin-top: 4px;
|
||||
padding: 16px;
|
||||
border: 1px solid var(--border);
|
||||
border-radius: var(--radius-lg);
|
||||
background: linear-gradient(180deg, var(--surface) 0%, var(--surface-muted) 100%);
|
||||
box-shadow: var(--shadow-inset);
|
||||
}
|
||||
.scoring-process-complete-hint {
|
||||
margin: 0 0 14px;
|
||||
font-size: .875rem;
|
||||
line-height: 1.5;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
.scoring-coach-band-panel .scoring-coach-band-fields {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
|
||||
gap: 16px;
|
||||
margin-top: 14px;
|
||||
padding-top: 14px;
|
||||
border-top: 1px solid var(--border);
|
||||
}
|
||||
.scoring-coach-band-panel .scoring-profile-select,
|
||||
.scoring-coach-band-panel .condition-qn-select {
|
||||
width: 100%;
|
||||
max-width: none;
|
||||
}
|
||||
.scoring-band-picker {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
padding: 12px;
|
||||
background: var(--surface);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: var(--radius-lg);
|
||||
}
|
||||
.scoring-band-picker-item {
|
||||
position: relative;
|
||||
display: inline-flex;
|
||||
margin: 0;
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
}
|
||||
.scoring-band-picker-item input {
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
margin: 0;
|
||||
pointer-events: none;
|
||||
}
|
||||
.scoring-band-picker-item .band-badge {
|
||||
cursor: pointer;
|
||||
opacity: .45;
|
||||
filter: grayscale(.25);
|
||||
transition: opacity .15s ease, transform .15s ease, box-shadow .15s ease, filter .15s ease;
|
||||
}
|
||||
.scoring-band-picker-item:hover .band-badge {
|
||||
opacity: .72;
|
||||
filter: none;
|
||||
}
|
||||
.scoring-band-picker-item input:checked + .band-badge {
|
||||
opacity: 1;
|
||||
filter: none;
|
||||
transform: translateY(-1px);
|
||||
box-shadow: 0 0 0 2px var(--surface), 0 0 0 4px var(--primary);
|
||||
}
|
||||
.scoring-band-picker-item input:focus-visible + .band-badge {
|
||||
outline: 2px solid var(--primary);
|
||||
outline-offset: 2px;
|
||||
}
|
||||
.scoring-band-picker-item input:disabled + .band-badge {
|
||||
cursor: not-allowed;
|
||||
opacity: .35;
|
||||
}
|
||||
@media (max-width: 720px) {
|
||||
.scoring-coach-band-panel .scoring-coach-band-fields {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
.scoring-profile-member-count {
|
||||
margin: 12px 0 8px;
|
||||
font-size: .8rem;
|
||||
|
||||
Reference in New Issue
Block a user