feat(subscription): 5티어 뱃지 + 드래그영역 + 토글 + 슬라이더 스타일
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1178,3 +1178,231 @@
|
|||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* === 신규: 자치구 5티어 + district 뱃지 ============================== */
|
||||||
|
.sub-chip--district {
|
||||||
|
background: #f3f4f6;
|
||||||
|
color: #374151;
|
||||||
|
border-color: #d1d5db;
|
||||||
|
}
|
||||||
|
.sub-chip--tier {
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
.sub-chip--tier-S { background: #fee2e2; color: #dc2626; border-color: #fca5a5; }
|
||||||
|
.sub-chip--tier-A { background: #fef3c7; color: #d97706; border-color: #fcd34d; }
|
||||||
|
.sub-chip--tier-B { background: #d1fae5; color: #059669; border-color: #6ee7b7; }
|
||||||
|
.sub-chip--tier-C { background: #dbeafe; color: #2563eb; border-color: #93c5fd; }
|
||||||
|
.sub-chip--tier-D { background: #ede9fe; color: #7c3aed; border-color: #c4b5fd; }
|
||||||
|
|
||||||
|
/* === 신규: DistrictTierEditor ====================================== */
|
||||||
|
.dte-pool {
|
||||||
|
border: 1px dashed var(--border-soft, #e5e7eb);
|
||||||
|
border-radius: 12px;
|
||||||
|
padding: 12px;
|
||||||
|
transition: background 0.15s, border-color 0.15s;
|
||||||
|
}
|
||||||
|
.dte-pool--over {
|
||||||
|
background: #f0f9ff;
|
||||||
|
border-color: #38bdf8;
|
||||||
|
}
|
||||||
|
.dte-pool__title {
|
||||||
|
margin: 0 0 8px;
|
||||||
|
font-size: 12px;
|
||||||
|
color: var(--text-muted, #6b7280);
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 0.05em;
|
||||||
|
}
|
||||||
|
.dte-chips {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 6px;
|
||||||
|
}
|
||||||
|
.dte-chip {
|
||||||
|
cursor: grab;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
.dte-chip:active { cursor: grabbing; }
|
||||||
|
.dte-chip__remove {
|
||||||
|
background: transparent;
|
||||||
|
border: 0;
|
||||||
|
color: inherit;
|
||||||
|
margin-left: 4px;
|
||||||
|
padding: 0 2px;
|
||||||
|
cursor: pointer;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 1;
|
||||||
|
opacity: 0.6;
|
||||||
|
}
|
||||||
|
.dte-chip__remove:hover { opacity: 1; }
|
||||||
|
|
||||||
|
.dte-grid {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(5, 1fr);
|
||||||
|
gap: 8px;
|
||||||
|
}
|
||||||
|
.dte-zone {
|
||||||
|
border: 1px solid var(--border-soft, #e5e7eb);
|
||||||
|
border-radius: 12px;
|
||||||
|
padding: 8px;
|
||||||
|
min-height: 120px;
|
||||||
|
transition: background 0.15s, border-color 0.15s;
|
||||||
|
}
|
||||||
|
.dte-zone--over {
|
||||||
|
background: #f0f9ff;
|
||||||
|
border-color: #38bdf8;
|
||||||
|
}
|
||||||
|
.dte-zone__head {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
padding: 4px 8px;
|
||||||
|
border-radius: 6px;
|
||||||
|
font-weight: 700;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
}
|
||||||
|
.dte-zone__weight {
|
||||||
|
font-size: 11px;
|
||||||
|
font-weight: 500;
|
||||||
|
opacity: 0.8;
|
||||||
|
}
|
||||||
|
.dte-zone__chips {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 모바일 read-only 뷰 */
|
||||||
|
.dte-row {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 80px 1fr;
|
||||||
|
align-items: center;
|
||||||
|
gap: 12px;
|
||||||
|
padding: 8px 0;
|
||||||
|
border-bottom: 1px solid var(--border-soft, #e5e7eb);
|
||||||
|
}
|
||||||
|
.dte-row:last-of-type { border-bottom: 0; }
|
||||||
|
.dte-row__list {
|
||||||
|
color: var(--text, #1f2937);
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
.dte-empty {
|
||||||
|
color: var(--text-muted, #6b7280);
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
.dte-mobile-hint {
|
||||||
|
margin: 4px 0 0;
|
||||||
|
color: var(--text-muted, #6b7280);
|
||||||
|
font-size: 13px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* === 신규: NotificationSettings ==================================== */
|
||||||
|
.ns-row {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
gap: 12px;
|
||||||
|
}
|
||||||
|
.ns-row--column {
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: stretch;
|
||||||
|
}
|
||||||
|
.ns-row__label {
|
||||||
|
font-weight: 600;
|
||||||
|
color: var(--text, #1f2937);
|
||||||
|
}
|
||||||
|
.ns-toggle {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 8px;
|
||||||
|
}
|
||||||
|
.sub-toggle {
|
||||||
|
appearance: none;
|
||||||
|
width: 40px;
|
||||||
|
height: 22px;
|
||||||
|
background: #d1d5db;
|
||||||
|
border-radius: 11px;
|
||||||
|
position: relative;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: background 0.2s;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.sub-toggle::before {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
top: 2px;
|
||||||
|
left: 2px;
|
||||||
|
width: 18px;
|
||||||
|
height: 18px;
|
||||||
|
background: #fff;
|
||||||
|
border-radius: 50%;
|
||||||
|
transition: transform 0.2s;
|
||||||
|
}
|
||||||
|
.sub-toggle:checked {
|
||||||
|
background: #10b981;
|
||||||
|
}
|
||||||
|
.sub-toggle:checked::before {
|
||||||
|
transform: translateX(18px);
|
||||||
|
}
|
||||||
|
.sub-toggle__label {
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: 600;
|
||||||
|
color: var(--text-muted, #6b7280);
|
||||||
|
}
|
||||||
|
.ns-slider {
|
||||||
|
width: 100%;
|
||||||
|
margin: 8px 0;
|
||||||
|
}
|
||||||
|
.ns-slider:disabled {
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
.ns-scale {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
font-size: 11px;
|
||||||
|
color: var(--text-muted, #6b7280);
|
||||||
|
}
|
||||||
|
.ns-hint {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 13px;
|
||||||
|
color: var(--text-muted, #6b7280);
|
||||||
|
line-height: 1.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* === 신규: 매칭 분석 섹션 ========================================== */
|
||||||
|
.sub-match-analysis {
|
||||||
|
display: grid;
|
||||||
|
gap: 12px;
|
||||||
|
padding: 16px;
|
||||||
|
background: var(--surface-soft, #f9fafb);
|
||||||
|
border-radius: 12px;
|
||||||
|
margin-top: 16px;
|
||||||
|
}
|
||||||
|
.sub-match-analysis__score {
|
||||||
|
font-family: var(--font-display, system-ui);
|
||||||
|
font-size: 28px;
|
||||||
|
font-weight: 700;
|
||||||
|
color: var(--accent, #3b82f6);
|
||||||
|
}
|
||||||
|
.sub-match-analysis__reasons {
|
||||||
|
margin: 0;
|
||||||
|
padding-left: 18px;
|
||||||
|
color: var(--text, #1f2937);
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 1.7;
|
||||||
|
}
|
||||||
|
.sub-match-analysis__reasons li {
|
||||||
|
margin: 2px 0;
|
||||||
|
}
|
||||||
|
.sub-match-analysis__elig {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 모바일 dte-grid → 1칼럼 */
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
.dte-grid {
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user