전 저장소 리팩터링과 SSOT 정비
This commit is contained in:
parent
14ecbd4e7d
commit
3dfddcac6f
173 changed files with 19679 additions and 6952 deletions
|
|
@ -1,6 +1,8 @@
|
|||
/* =====================================================================
|
||||
Session 페이지 전용 스타일 (이 페이지에서만 사용. 공통 ui.css 와 분리)
|
||||
토큰: tokens.css 변수만 참조. DESIGN_CONCEPT §5 3-column 골격.
|
||||
토큰: 공통 의미는 tokens.css, 몰입형 dark stage와 아트 합성 색은 이 파일의
|
||||
.sx-page--active 국소 팔레트가 소유한다. raw color는 디자인 SSOT 게이트의
|
||||
고정 예산을 넘길 수 없다. DESIGN_CONCEPT §0.3, §5 3-column 골격.
|
||||
철칙: border-left 0 · 이모지 0(아이콘 inline SVG) · 카드격자 덤프 0 ·
|
||||
순흑/순백 금지 · 둥근모서리 과다 금지 · 강조는 weight/tint/kicker/dot ·
|
||||
한 화면 한 목적(= 가상 내담자와 듣고 말하기). 빨강은 종료에만.
|
||||
|
|
@ -39,35 +41,42 @@
|
|||
background: transparent;
|
||||
padding: 0;
|
||||
}
|
||||
/* 프리플라이트(목표 선택 포함)는 데스크톱에서 문서 스크롤 없이 한 화면에 들어가야 한다.
|
||||
셸 기본 패딩(48/64)이 과해 세로가 수 px 넘치던 회귀 수정 (2026-07-15). */
|
||||
.vg-main:has(.sx-page--prestart) {
|
||||
padding-top: var(--sp-5);
|
||||
padding-bottom: var(--sp-5);
|
||||
}
|
||||
.sx-page--active {
|
||||
--paper-2: #1b2b27;
|
||||
--bg-surface: #14231f;
|
||||
--bg-surface-2: #1d2d29;
|
||||
--bg-stage: #0c1714;
|
||||
--text-strong: #edf7f4;
|
||||
--text-body: #c9d9d5;
|
||||
--text-muted: #8fa29c;
|
||||
--text-on-accent: #071411;
|
||||
--border-subtle: rgba(169, 215, 204, 0.15);
|
||||
--border-strong: rgba(169, 215, 204, 0.24);
|
||||
--border-focus: #7cc8b8;
|
||||
--focus-ring: rgba(124, 200, 184, 0.32);
|
||||
--accent: #79bfae;
|
||||
--accent-deep: #9ad3c7;
|
||||
--accent-tint: rgba(121, 191, 174, 0.16);
|
||||
--accent-bright: #79c8b7;
|
||||
--clay: #d08b70;
|
||||
--clay-deep: #ebb196;
|
||||
--clay-tint: rgba(208, 139, 112, 0.15);
|
||||
/* 2026-07-14 채도 완화: 회기 화면 국소 팔레트를 마른 세이지 톤으로 (한신대 피드백) */
|
||||
--paper-2: #1a2723;
|
||||
--bg-surface: #141f1c;
|
||||
--bg-surface-2: #1c2925;
|
||||
--bg-stage: #0d1512;
|
||||
--text-strong: #ecf2ef;
|
||||
--text-body: #c7d2ce;
|
||||
--text-muted: #8d9c96;
|
||||
--text-on-accent: #0a1310;
|
||||
--border-subtle: rgba(178, 199, 191, 0.14);
|
||||
--border-strong: rgba(178, 199, 191, 0.22);
|
||||
--border-focus: #83a89b;
|
||||
--focus-ring: rgba(131, 168, 155, 0.3);
|
||||
--accent: #83a89b;
|
||||
--accent-deep: #a3bfb4;
|
||||
--accent-tint: rgba(131, 168, 155, 0.14);
|
||||
--accent-bright: #8db1a4;
|
||||
--clay: #c98f76;
|
||||
--clay-deep: #e0ac93;
|
||||
--clay-tint: rgba(201, 143, 118, 0.14);
|
||||
height: 100vh;
|
||||
height: 100dvh;
|
||||
grid-template-rows: min-content minmax(0, 1fr) min-content;
|
||||
padding: 10px 14px 14px;
|
||||
gap: 10px;
|
||||
background:
|
||||
radial-gradient(circle at 18% 8%, rgba(121, 191, 174, 0.12), transparent 28%),
|
||||
radial-gradient(circle at 86% 12%, rgba(208, 139, 112, 0.1), transparent 24%),
|
||||
linear-gradient(135deg, #0a1210 0%, #0e1714 48%, #101d19 100%);
|
||||
radial-gradient(circle at 18% 8%, rgba(131, 168, 155, 0.09), transparent 28%),
|
||||
radial-gradient(circle at 86% 12%, rgba(201, 143, 118, 0.07), transparent 24%),
|
||||
linear-gradient(135deg, #0b1210 0%, #0e1513 48%, #101a16 100%);
|
||||
color: var(--text-strong);
|
||||
color-scheme: dark;
|
||||
}
|
||||
|
|
@ -164,9 +173,9 @@
|
|||
gap: 7px;
|
||||
}
|
||||
.sx-sessionbar .sx-sessionbar__review {
|
||||
border-color: rgba(145, 200, 189, 0.3);
|
||||
background: rgba(145, 200, 189, 0.14);
|
||||
color: #c6efe4;
|
||||
border-color: rgba(151, 175, 166, 0.3);
|
||||
background: rgba(151, 175, 166, 0.14);
|
||||
color: #d0ddd7;
|
||||
}
|
||||
|
||||
/* ── 페이지 헤드라인 + 가로 회기 단계 미니 트랙 ── */
|
||||
|
|
@ -598,7 +607,7 @@
|
|||
}
|
||||
.sx-page--active .sx-stage {
|
||||
background:
|
||||
radial-gradient(circle at 50% 47%, rgba(121, 191, 174, 0.22), transparent 36%),
|
||||
radial-gradient(circle at 50% 47%, rgba(131, 168, 155, 0.22), transparent 36%),
|
||||
radial-gradient(circle at 50% 82%, rgba(208, 139, 112, 0.12), transparent 24%),
|
||||
linear-gradient(145deg, rgba(11, 22, 19, 0.98), rgba(20, 34, 30, 0.96) 56%, rgba(10, 19, 17, 0.98));
|
||||
border-color: rgba(169, 215, 204, 0.18);
|
||||
|
|
@ -1182,7 +1191,7 @@
|
|||
}
|
||||
.sx-page--active button:focus-visible,
|
||||
.sx-page--active textarea:focus-visible {
|
||||
outline: 2px solid rgba(124, 200, 184, 0.88);
|
||||
outline: 2px solid rgba(131, 168, 155, 0.88);
|
||||
outline-offset: 2px;
|
||||
}
|
||||
.sx-turn-error {
|
||||
|
|
@ -1882,7 +1891,7 @@
|
|||
}
|
||||
.sx-safety--ok .sx-safety__ico,
|
||||
.sx-safety--ok .sx-safety__text {
|
||||
color: #9ed6ca;
|
||||
color: #a6bcb4;
|
||||
}
|
||||
.sx-safety__head {
|
||||
display: flex;
|
||||
|
|
@ -2024,13 +2033,13 @@
|
|||
background: rgba(237, 247, 244, 0.11);
|
||||
}
|
||||
.sx-page--active .sx-review-button {
|
||||
background: rgba(145, 200, 189, 0.14);
|
||||
border-color: rgba(145, 200, 189, 0.3);
|
||||
color: #c6efe4;
|
||||
background: rgba(151, 175, 166, 0.14);
|
||||
border-color: rgba(151, 175, 166, 0.3);
|
||||
color: #d0ddd7;
|
||||
}
|
||||
.sx-page--active .sx-review-button:hover {
|
||||
background: rgba(145, 200, 189, 0.2);
|
||||
color: #ecfffa;
|
||||
background: rgba(151, 175, 166, 0.2);
|
||||
color: #edf3f0;
|
||||
}
|
||||
|
||||
.sx-page--active .sx-ctx__row,
|
||||
|
|
@ -2083,14 +2092,14 @@
|
|||
border-color: rgba(229, 173, 149, 0.22);
|
||||
}
|
||||
.sx-page--active .sx-utt.is-learner .sx-utt__line {
|
||||
background: rgba(111, 179, 164, 0.13);
|
||||
background: rgba(125, 162, 148, 0.13);
|
||||
color: #edf5f2;
|
||||
}
|
||||
.sx-page--active .sx-utt.is-client .sx-utt__spk {
|
||||
color: #e5ad95;
|
||||
}
|
||||
.sx-page--active .sx-utt.is-learner .sx-utt__spk {
|
||||
color: #9ed1c6;
|
||||
color: #a4bab2;
|
||||
}
|
||||
.sx-page--active .sx-compose textarea {
|
||||
background: rgba(7, 18, 15, 0.58);
|
||||
|
|
@ -2112,7 +2121,7 @@
|
|||
box-shadow: 0 0 0 1px rgba(237, 247, 244, 0.08), 0 10px 22px rgba(3, 12, 10, 0.24);
|
||||
}
|
||||
.sx-page--active .sx-compose .vg-btn--primary:hover:not(:disabled) {
|
||||
background: #8ad1c2;
|
||||
background: #93b3a7;
|
||||
}
|
||||
/* 마이크 (주 컨트롤, 음성 호흡 펄스) — 원형 예외 허용 */
|
||||
.sx-mic-block {
|
||||
|
|
@ -2626,9 +2635,9 @@
|
|||
|
||||
/* ── 시작 전 오버레이 (세션 시작) ── */
|
||||
.sx-prestart {
|
||||
width: min(1120px, 100%);
|
||||
width: 100%;
|
||||
display: grid;
|
||||
grid-template-columns: minmax(200px, 260px) minmax(0, 1fr) minmax(210px, 270px);
|
||||
grid-template-columns: minmax(220px, 0.82fr) minmax(360px, 1.72fr) minmax(260px, 0.98fr);
|
||||
align-items: center;
|
||||
gap: var(--sp-5);
|
||||
max-width: none;
|
||||
|
|
@ -2638,13 +2647,8 @@
|
|||
justify-self: center;
|
||||
text-align: left;
|
||||
position: relative;
|
||||
background:
|
||||
linear-gradient(132deg, rgba(15, 28, 26, 0.96), rgba(31, 44, 40, 0.92) 56%, rgba(46, 55, 49, 0.86)),
|
||||
var(--asset-warm-elements) center / cover no-repeat;
|
||||
border: 1px solid rgba(255, 255, 255, 0.11);
|
||||
border-radius: var(--radius-lg);
|
||||
box-shadow: 0 18px 52px rgba(6, 14, 13, 0.34);
|
||||
color: #eef4f2;
|
||||
color: var(--text-strong);
|
||||
overflow: hidden;
|
||||
}
|
||||
.sx-page--prestart .sx-head {
|
||||
|
|
@ -2653,33 +2657,33 @@
|
|||
}
|
||||
.sx-page--prestart .sx-head__title,
|
||||
.sx-page--prestart .sx-ph.is-cur .sx-ph__name {
|
||||
color: #f3f8f6;
|
||||
color: var(--text-strong);
|
||||
}
|
||||
.sx-page--prestart .sx-head__title em {
|
||||
color: #91c8bd;
|
||||
color: var(--accent-deep);
|
||||
}
|
||||
.sx-page--prestart .sx-head__sub,
|
||||
.sx-page--prestart .sx-ph__name,
|
||||
.sx-page--prestart .sx-ph__t {
|
||||
color: rgba(238, 244, 242, 0.62);
|
||||
color: var(--text-muted);
|
||||
}
|
||||
.sx-page--prestart .sx-ph__dot {
|
||||
background: rgba(255, 255, 255, 0.09);
|
||||
border-color: rgba(255, 255, 255, 0.22);
|
||||
background: var(--bg-surface-2);
|
||||
border-color: var(--border-strong);
|
||||
}
|
||||
.sx-page--prestart .sx-ph__link {
|
||||
background: rgba(255, 255, 255, 0.18);
|
||||
background: var(--border-subtle);
|
||||
}
|
||||
.sx-page--prestart .sx-ph__link.is-fill {
|
||||
background: rgba(145, 200, 189, 0.74);
|
||||
background: var(--accent-bright);
|
||||
}
|
||||
.sx-page--prestart .sx-prestart::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
background:
|
||||
linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 38%),
|
||||
radial-gradient(circle at 20% 22%, rgba(126, 184, 173, 0.22), transparent 32%);
|
||||
linear-gradient(90deg, color-mix(in srgb, var(--text-strong) 6%, transparent), transparent 38%),
|
||||
radial-gradient(circle at 20% 22%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 32%);
|
||||
pointer-events: none;
|
||||
}
|
||||
.sx-prestart__visual {
|
||||
|
|
@ -2692,11 +2696,7 @@
|
|||
align-self: stretch;
|
||||
align-content: center;
|
||||
padding: var(--sp-4);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: var(--radius);
|
||||
background:
|
||||
radial-gradient(circle at 50% 45%, rgba(145, 200, 189, 0.2), transparent 52%),
|
||||
rgba(251, 250, 248, 0.06);
|
||||
}
|
||||
.sx-prestart__case {
|
||||
width: 100%;
|
||||
|
|
@ -2718,13 +2718,13 @@
|
|||
}
|
||||
.sx-prestart__case b {
|
||||
display: block;
|
||||
color: #f4f8f7;
|
||||
color: var(--text-strong);
|
||||
font-size: 18px;
|
||||
line-height: 1.35;
|
||||
}
|
||||
.sx-prestart__case p {
|
||||
margin: 5px 0 0;
|
||||
color: rgba(238, 244, 242, 0.68);
|
||||
color: var(--text-body);
|
||||
font-size: 13px;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
|
@ -2740,17 +2740,15 @@
|
|||
display: grid;
|
||||
gap: 3px;
|
||||
padding: 9px 10px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: var(--radius-sm);
|
||||
background: rgba(255, 255, 255, 0.055);
|
||||
}
|
||||
.sx-prestart__case li span {
|
||||
color: rgba(238, 244, 242, 0.52);
|
||||
color: var(--text-muted);
|
||||
font-size: 11px;
|
||||
font-weight: 760;
|
||||
}
|
||||
.sx-prestart__case li em {
|
||||
color: rgba(244, 248, 247, 0.94);
|
||||
color: var(--text-strong);
|
||||
font-size: 12.5px;
|
||||
font-style: normal;
|
||||
font-weight: 680;
|
||||
|
|
@ -2769,7 +2767,7 @@
|
|||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
color: #a8d4ca;
|
||||
color: var(--accent-deep);
|
||||
font-family: var(--font-num);
|
||||
font-size: var(--fs-kicker);
|
||||
font-weight: 700;
|
||||
|
|
@ -2786,13 +2784,13 @@
|
|||
font-size: var(--fs-h2);
|
||||
font-weight: 700;
|
||||
letter-spacing: 0;
|
||||
color: #f4f8f7;
|
||||
color: var(--text-strong);
|
||||
line-height: 1.3;
|
||||
}
|
||||
.sx-prestart__desc {
|
||||
margin-top: var(--sp-3);
|
||||
font-size: var(--fs-sm);
|
||||
color: rgba(238, 244, 242, 0.76);
|
||||
color: var(--text-body);
|
||||
line-height: 1.6;
|
||||
max-width: 58ch;
|
||||
}
|
||||
|
|
@ -2806,19 +2804,19 @@
|
|||
gap: var(--sp-4);
|
||||
}
|
||||
.sx-page--prestart .sx-prestart__facts {
|
||||
border-color: rgba(255, 255, 255, 0.13);
|
||||
border-color: var(--glass-inset-border);
|
||||
}
|
||||
.sx-prestart__facts div {
|
||||
min-width: 0;
|
||||
}
|
||||
.sx-prestart__facts dt {
|
||||
color: rgba(238, 244, 242, 0.52);
|
||||
color: var(--text-muted);
|
||||
font-size: 11.5px;
|
||||
font-weight: 700;
|
||||
}
|
||||
.sx-prestart__facts dd {
|
||||
margin: 6px 0 0;
|
||||
color: #f4f8f7;
|
||||
color: var(--text-strong);
|
||||
font-size: 13.5px;
|
||||
font-weight: 650;
|
||||
line-height: 1.4;
|
||||
|
|
@ -2839,15 +2837,15 @@
|
|||
min-height: 26px;
|
||||
padding: 0 10px;
|
||||
border-radius: var(--radius-sm);
|
||||
background: rgba(145, 200, 189, 0.16);
|
||||
color: #bfe0d9;
|
||||
background: var(--accent-tint);
|
||||
color: var(--accent-deep);
|
||||
font-family: var(--font-num);
|
||||
font-size: 11.5px;
|
||||
font-weight: 700;
|
||||
}
|
||||
.sx-prestart__chips span.is-clay {
|
||||
background: rgba(204, 143, 119, 0.17);
|
||||
color: #f0bda9;
|
||||
background: var(--clay-tint);
|
||||
color: var(--clay-deep);
|
||||
}
|
||||
.sx-theory {
|
||||
width: min(100%, 520px);
|
||||
|
|
@ -2859,7 +2857,7 @@
|
|||
}
|
||||
.sx-theory legend {
|
||||
padding: 0;
|
||||
color: rgba(238, 244, 242, 0.54);
|
||||
color: var(--text-muted);
|
||||
font-size: 11.5px;
|
||||
font-weight: 760;
|
||||
}
|
||||
|
|
@ -2869,8 +2867,8 @@
|
|||
gap: 6px;
|
||||
padding: 4px;
|
||||
border-radius: var(--radius-sm);
|
||||
background: rgba(6, 15, 14, 0.26);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
background: var(--glass-surface-inset);
|
||||
border: 1px solid var(--glass-inset-border);
|
||||
}
|
||||
.sx-theory__seg button {
|
||||
min-width: 0;
|
||||
|
|
@ -2882,23 +2880,23 @@
|
|||
border: 1px solid transparent;
|
||||
border-radius: calc(var(--radius-sm) - 2px);
|
||||
background: transparent;
|
||||
color: rgba(238, 244, 242, 0.72);
|
||||
color: var(--text-body);
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
.sx-theory__seg button:hover {
|
||||
border-color: rgba(145, 200, 189, 0.3);
|
||||
color: #f4f8f7;
|
||||
border-color: color-mix(in srgb, var(--accent) 40%, var(--glass-inset-border));
|
||||
color: var(--text-strong);
|
||||
}
|
||||
.sx-theory__seg button:focus-visible {
|
||||
outline: 2px solid rgba(145, 200, 189, 0.7);
|
||||
outline: 2px solid var(--border-focus);
|
||||
outline-offset: 2px;
|
||||
}
|
||||
.sx-theory__seg button.is-selected {
|
||||
background: rgba(145, 200, 189, 0.18);
|
||||
border-color: rgba(145, 200, 189, 0.46);
|
||||
color: #f4f8f7;
|
||||
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
|
||||
background: var(--accent-tint);
|
||||
border-color: color-mix(in srgb, var(--accent) 58%, var(--glass-inset-border));
|
||||
color: var(--text-strong);
|
||||
box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--text-strong) 5%, transparent);
|
||||
}
|
||||
.sx-theory__seg span,
|
||||
.sx-theory__seg small {
|
||||
|
|
@ -2911,14 +2909,14 @@
|
|||
font-weight: 760;
|
||||
}
|
||||
.sx-theory__seg small {
|
||||
color: rgba(238, 244, 242, 0.56);
|
||||
color: var(--text-muted);
|
||||
font-size: 11px;
|
||||
font-weight: 650;
|
||||
}
|
||||
.sx-prestart__note {
|
||||
max-width: 460px;
|
||||
font-size: 12.5px;
|
||||
color: rgba(238, 244, 242, 0.6);
|
||||
color: var(--text-muted);
|
||||
line-height: 1.55;
|
||||
margin-top: calc(var(--sp-3) * -1);
|
||||
}
|
||||
|
|
@ -2931,15 +2929,15 @@
|
|||
display: grid;
|
||||
gap: var(--sp-3);
|
||||
padding: var(--sp-4);
|
||||
border: 1px solid rgba(132, 203, 179, 0.28);
|
||||
border: 1px solid color-mix(in srgb, var(--accent) 32%, var(--glass-inset-border));
|
||||
border-radius: var(--radius-sm);
|
||||
background: rgba(30, 86, 77, 0.22);
|
||||
background: color-mix(in srgb, var(--accent-tint) 72%, transparent);
|
||||
}
|
||||
.sx-consent label {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: var(--sp-3);
|
||||
color: rgba(238, 244, 242, 0.84);
|
||||
color: var(--text-body);
|
||||
font-size: var(--fs-sm);
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
|
@ -2947,7 +2945,7 @@
|
|||
width: 17px;
|
||||
height: 17px;
|
||||
margin-top: 2px;
|
||||
accent-color: #6fc6a8;
|
||||
accent-color: var(--accent);
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
.sx-consent .vg-btn {
|
||||
|
|
@ -2961,7 +2959,7 @@
|
|||
margin-top: var(--sp-5);
|
||||
}
|
||||
.sx-prestart__actions span {
|
||||
color: rgba(238, 244, 242, 0.58);
|
||||
color: var(--text-muted);
|
||||
font-size: var(--fs-xs);
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
|
@ -2969,41 +2967,51 @@
|
|||
min-width: 0;
|
||||
align-self: stretch;
|
||||
display: grid;
|
||||
align-content: center;
|
||||
gap: var(--sp-4);
|
||||
align-content: start;
|
||||
gap: var(--sp-3);
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
padding: var(--sp-4);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
padding: clamp(18px, 1.7vw, 24px);
|
||||
border-radius: var(--radius);
|
||||
background: rgba(251, 250, 248, 0.07);
|
||||
}
|
||||
.sx-prestart__plan ol {
|
||||
list-style: none;
|
||||
.sx-prestart__plan-summary {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: grid;
|
||||
gap: var(--sp-3);
|
||||
color: var(--text-muted);
|
||||
font-size: 11.5px;
|
||||
line-height: 1.55;
|
||||
text-wrap: pretty;
|
||||
}
|
||||
.sx-prestart__plan li {
|
||||
.sx-prestart__plan-list {
|
||||
margin: 0;
|
||||
display: grid;
|
||||
gap: 0;
|
||||
}
|
||||
.sx-prestart__plan-list div {
|
||||
min-width: 0;
|
||||
display: grid;
|
||||
grid-template-columns: auto minmax(0, 1fr);
|
||||
gap: 10px;
|
||||
align-items: start;
|
||||
gap: 5px;
|
||||
padding: 12px 0;
|
||||
border-top: 1px solid var(--glass-inset-border);
|
||||
}
|
||||
.sx-prestart__plan li span {
|
||||
width: 7px;
|
||||
height: 7px;
|
||||
border-radius: 50%;
|
||||
background: var(--clay);
|
||||
margin-top: 8px;
|
||||
.sx-prestart__plan-list dt {
|
||||
color: var(--accent-deep);
|
||||
font-size: 10.5px;
|
||||
font-weight: 760;
|
||||
letter-spacing: 0.04em;
|
||||
}
|
||||
.sx-prestart__plan p {
|
||||
.sx-prestart__plan-list dd {
|
||||
margin: 0;
|
||||
color: rgba(238, 244, 242, 0.74);
|
||||
font-size: var(--fs-xs);
|
||||
line-height: 1.6;
|
||||
color: var(--text-body);
|
||||
font-size: 11.5px;
|
||||
line-height: 1.55;
|
||||
text-wrap: pretty;
|
||||
}
|
||||
.sx-prestart__plan-list dd b {
|
||||
display: block;
|
||||
margin-bottom: 2px;
|
||||
color: var(--text-strong);
|
||||
font-size: 12.5px;
|
||||
font-weight: 720;
|
||||
}
|
||||
|
||||
/* 일시정지 stage 오버레이 (차분) */
|
||||
|
|
@ -3022,7 +3030,7 @@
|
|||
border: 1px solid rgba(203, 227, 220, 0.14);
|
||||
border-radius: calc(var(--radius-lg) - 2px);
|
||||
background:
|
||||
linear-gradient(135deg, rgba(238, 244, 242, 0.08), rgba(145, 200, 189, 0.06));
|
||||
linear-gradient(135deg, rgba(238, 244, 242, 0.08), rgba(151, 175, 166, 0.06));
|
||||
backdrop-filter: blur(0.5px);
|
||||
text-shadow: 0 1px 2px rgba(7, 16, 14, 0.5);
|
||||
}
|
||||
|
|
@ -3037,8 +3045,9 @@
|
|||
padding-top: var(--sp-4);
|
||||
border-top: 1px solid var(--hair);
|
||||
}
|
||||
.sx-prestart__plan ol {
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
.sx-prestart__plan-list {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
column-gap: var(--sp-5);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -3083,6 +3092,21 @@
|
|||
.sx-page--active .sx-col-right {
|
||||
display: none;
|
||||
}
|
||||
/* 위기 신호가 감지되면 어떤 화면 모드에서도 안전 패널(109 리소스 포함)을 노출한다.
|
||||
압축 레이아웃이 안전 안내를 가리던 결함 수정 (2026-07-15). */
|
||||
.sx-page--active.sx-has-safety .sx-col-right {
|
||||
display: flex;
|
||||
grid-column: 1 / -1;
|
||||
grid-row: 3;
|
||||
min-height: 0;
|
||||
overflow: visible;
|
||||
}
|
||||
.sx-page--active.sx-has-safety:not(.sx-feedback-coached) .sx-col-right .sx-signal {
|
||||
display: none;
|
||||
}
|
||||
.sx-page--active.sx-has-safety .sx-col-right .sx-meters {
|
||||
display: none;
|
||||
}
|
||||
.sx-mobile-context__row {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
|
|
@ -3319,6 +3343,20 @@
|
|||
.sx-page--active .sx-col-right {
|
||||
display: none;
|
||||
}
|
||||
/* 위기 감지 시 안전 패널 노출 — ≤1180 규칙과 동일한 원칙 (2026-07-15). */
|
||||
.sx-page--active.sx-has-safety .sx-col-right {
|
||||
display: flex;
|
||||
grid-column: 1;
|
||||
grid-row: 3;
|
||||
min-height: 0;
|
||||
overflow: visible;
|
||||
}
|
||||
.sx-page--active.sx-has-safety:not(.sx-feedback-coached) .sx-col-right .sx-signal {
|
||||
display: none;
|
||||
}
|
||||
.sx-page--active.sx-has-safety .sx-col-right .sx-meters {
|
||||
display: none;
|
||||
}
|
||||
.sx-page--active.sx-feedback-coached .sx-grid {
|
||||
grid-template-rows: auto minmax(0, 1fr) auto;
|
||||
}
|
||||
|
|
@ -3330,7 +3368,7 @@
|
|||
overflow: visible;
|
||||
}
|
||||
.sx-page--active.sx-feedback-coached .sx-col-right .sx-meters,
|
||||
.sx-page--active.sx-feedback-coached .sx-col-right .sx-safety,
|
||||
.sx-page--active.sx-feedback-coached .sx-col-right .sx-safety--ok,
|
||||
.sx-page--active.sx-feedback-coached .sx-signal__head,
|
||||
.sx-page--active.sx-feedback-coached .sx-signal__one,
|
||||
.sx-page--active.sx-feedback-coached .sx-signal__rest,
|
||||
|
|
@ -3365,9 +3403,8 @@
|
|||
.sx-page--active.sx-feedback-coached .sx-coach-bubble blockquote {
|
||||
display: none;
|
||||
}
|
||||
.sx-page--active.sx-feedback-coached .sx-coach-bubble__actions {
|
||||
display: none;
|
||||
}
|
||||
/* 근거·이력 접근은 코칭 신뢰성의 핵심 — 모바일에서도 유지한다 (2026-07-15).
|
||||
공간 절약은 blockquote(발화 예시) 숨김까지만. */
|
||||
.sx-head {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
|
|
@ -3752,7 +3789,7 @@
|
|||
display: block;
|
||||
max-width: min(220px, calc(100% - 12px));
|
||||
padding: 3px 6px;
|
||||
border: 1px solid rgba(145, 200, 189, 0.26);
|
||||
border: 1px solid rgba(151, 175, 166, 0.26);
|
||||
border-radius: 999px;
|
||||
background: rgba(11, 24, 21, 0.9);
|
||||
color: rgba(228, 250, 244, 0.9);
|
||||
|
|
@ -3962,3 +3999,342 @@
|
|||
animation: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* ═══════════════════════════════════════════════════════════════════
|
||||
시간 기반 회기(2026-07-13 회의 P1): 목표 선택 · 시간 알람 · 목표 배지
|
||||
═══════════════════════════════════════════════════════════════════ */
|
||||
|
||||
/* ── 시작 전: 이번 회기 목표 선택 ── */
|
||||
.sx-goals {
|
||||
width: min(100%, 520px);
|
||||
margin: var(--sp-3) 0 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
}
|
||||
.sx-goals legend {
|
||||
padding: 0;
|
||||
color: var(--text-muted);
|
||||
font-size: 11.5px;
|
||||
font-weight: 760;
|
||||
}
|
||||
.sx-goals legend small {
|
||||
margin-left: 6px;
|
||||
font-size: 11px;
|
||||
font-weight: 650;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
.sx-goals__grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||||
gap: 6px;
|
||||
padding: 4px;
|
||||
border-radius: var(--radius-sm);
|
||||
background: var(--glass-surface-inset);
|
||||
border: 1px solid var(--glass-inset-border);
|
||||
}
|
||||
.sx-goals__grid button {
|
||||
min-width: 0;
|
||||
min-height: 62px;
|
||||
display: grid;
|
||||
align-content: center;
|
||||
gap: 3px;
|
||||
padding: 8px 7px;
|
||||
border: 1px solid transparent;
|
||||
border-radius: calc(var(--radius-sm) - 2px);
|
||||
background: transparent;
|
||||
color: var(--text-body);
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
.sx-goals__grid button:hover {
|
||||
border-color: color-mix(in srgb, var(--accent) 40%, var(--glass-inset-border));
|
||||
color: var(--text-strong);
|
||||
}
|
||||
.sx-goals__grid button:focus-visible {
|
||||
outline: 2px solid var(--border-focus);
|
||||
outline-offset: 2px;
|
||||
}
|
||||
.sx-goals__grid button.is-selected {
|
||||
background: var(--accent-tint);
|
||||
border-color: color-mix(in srgb, var(--accent) 58%, var(--glass-inset-border));
|
||||
color: var(--text-strong);
|
||||
box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--text-strong) 5%, transparent);
|
||||
}
|
||||
.sx-goals__grid span {
|
||||
font-size: 13px;
|
||||
font-weight: 760;
|
||||
min-width: 0;
|
||||
overflow-wrap: anywhere;
|
||||
line-height: 1.2;
|
||||
}
|
||||
.sx-goals__grid small {
|
||||
color: var(--text-muted);
|
||||
font-size: 10.5px;
|
||||
font-weight: 650;
|
||||
min-width: 0;
|
||||
overflow-wrap: anywhere;
|
||||
line-height: 1.25;
|
||||
}
|
||||
.sx-goals__hint {
|
||||
margin: 0;
|
||||
font-size: 12px;
|
||||
line-height: 1.55;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
@media (max-width: 720px) {
|
||||
.sx-goals__grid {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
}
|
||||
|
||||
/* ── 시간 알람 바(10분 전 경고 · 시간 만료) — 강제 노출 배너 ── */
|
||||
.sx-timebar {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 8px 10px;
|
||||
margin: 0 0 10px;
|
||||
padding: 9px 14px;
|
||||
border-radius: var(--radius);
|
||||
border: 1px solid rgba(228, 179, 99, 0.5);
|
||||
background:
|
||||
linear-gradient(0deg, rgba(228, 179, 99, 0.12), rgba(228, 179, 99, 0.12)),
|
||||
var(--bg-panel, rgba(20, 26, 24, 0.92));
|
||||
color: var(--text-strong, #eef4f2);
|
||||
font-size: 13px;
|
||||
}
|
||||
.sx-timebar b {
|
||||
font-weight: 780;
|
||||
letter-spacing: -0.01em;
|
||||
}
|
||||
.sx-timebar__desc {
|
||||
color: var(--text-body, rgba(238, 244, 242, 0.74));
|
||||
font-weight: 560;
|
||||
min-width: 0;
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
.sx-timebar__dot {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
border-radius: 50%;
|
||||
background: #e4b363;
|
||||
box-shadow: 0 0 0 0 rgba(228, 179, 99, 0.5);
|
||||
animation: sx-timebar-pulse 1.8s ease-out infinite;
|
||||
}
|
||||
.sx-timebar.is-over {
|
||||
border-color: rgba(224, 122, 95, 0.55);
|
||||
background:
|
||||
linear-gradient(0deg, rgba(224, 122, 95, 0.14), rgba(224, 122, 95, 0.14)),
|
||||
var(--bg-panel, rgba(20, 26, 24, 0.92));
|
||||
}
|
||||
.sx-timebar.is-over .sx-timebar__dot {
|
||||
background: #e07a5f;
|
||||
box-shadow: 0 0 0 0 rgba(224, 122, 95, 0.5);
|
||||
}
|
||||
.sx-timebar__end {
|
||||
margin-left: auto;
|
||||
padding: 6px 12px;
|
||||
border-radius: calc(var(--radius-sm) - 1px);
|
||||
border: 1px solid rgba(224, 122, 95, 0.6);
|
||||
background: rgba(224, 122, 95, 0.16);
|
||||
color: inherit;
|
||||
font-size: 12.5px;
|
||||
font-weight: 740;
|
||||
cursor: pointer;
|
||||
}
|
||||
.sx-timebar__end:hover {
|
||||
background: rgba(224, 122, 95, 0.26);
|
||||
}
|
||||
@keyframes sx-timebar-pulse {
|
||||
0% { box-shadow: 0 0 0 0 rgba(228, 179, 99, 0.45); }
|
||||
70% { box-shadow: 0 0 0 7px rgba(228, 179, 99, 0); }
|
||||
100% { box-shadow: 0 0 0 0 rgba(228, 179, 99, 0); }
|
||||
}
|
||||
|
||||
/* ── 스테이지 타이머 경고 상태 ── */
|
||||
.sx-page--active .sx-stage__timer.is-warning {
|
||||
color: #e8bd7a;
|
||||
font-weight: 780;
|
||||
}
|
||||
|
||||
/* ── 세션 진행 패널: 남은 시간 경고 + 목표 도달 노트 ── */
|
||||
.sx-session-progress__grid span.is-warning b {
|
||||
color: #e8bd7a;
|
||||
}
|
||||
.sx-session-progress__goalnote {
|
||||
margin: 8px 0 0;
|
||||
padding: 8px 10px;
|
||||
border-radius: var(--radius-sm);
|
||||
border: 1px solid rgba(151, 175, 166, 0.32);
|
||||
background: rgba(151, 175, 166, 0.1);
|
||||
color: var(--text-body, rgba(238, 244, 242, 0.78));
|
||||
font-size: 12px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
/* ── 이번 회기 목표 배지(세로 트랙 + 헤더 미니) ── */
|
||||
.sx-vstep__goal {
|
||||
margin-left: 6px;
|
||||
padding: 1.5px 6px;
|
||||
border-radius: 999px;
|
||||
border: 1px solid rgba(151, 175, 166, 0.4);
|
||||
background: rgba(151, 175, 166, 0.12);
|
||||
color: var(--accent-bright, #8fc0b4);
|
||||
font-size: 10px;
|
||||
font-weight: 740;
|
||||
letter-spacing: 0.02em;
|
||||
vertical-align: 1px;
|
||||
}
|
||||
.sx-vstep__goal.is-reached {
|
||||
border-color: rgba(151, 175, 166, 0.62);
|
||||
background: rgba(151, 175, 166, 0.24);
|
||||
}
|
||||
.sx-ph__goal {
|
||||
margin-left: 4px;
|
||||
padding: 0.5px 5px;
|
||||
border-radius: 999px;
|
||||
border: 1px solid rgba(151, 175, 166, 0.42);
|
||||
background: rgba(151, 175, 166, 0.12);
|
||||
color: var(--accent-bright, #8fc0b4);
|
||||
font-size: 9.5px;
|
||||
font-style: normal;
|
||||
font-weight: 740;
|
||||
}
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.sx-timebar__dot {
|
||||
animation: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* ── 코칭 넛지 칩(코칭 탭이 닫혀 있을 때 도착한 코치 제안 안내) ── */
|
||||
.sx-seg-block {
|
||||
position: relative;
|
||||
}
|
||||
.sx-coach-nudge {
|
||||
position: absolute;
|
||||
bottom: calc(100% + 10px);
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 7px;
|
||||
white-space: nowrap;
|
||||
padding: 7px 12px;
|
||||
border-radius: 999px;
|
||||
border: 1px solid rgba(151, 175, 166, 0.5);
|
||||
background: var(--bg-panel, rgba(16, 22, 21, 0.97));
|
||||
color: var(--text-strong, #eef4f2);
|
||||
font-size: 12px;
|
||||
font-weight: 640;
|
||||
cursor: pointer;
|
||||
box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
|
||||
z-index: 30;
|
||||
}
|
||||
.sx-coach-nudge::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
border: 5px solid transparent;
|
||||
border-top-color: rgba(151, 175, 166, 0.5);
|
||||
}
|
||||
.sx-coach-nudge:hover {
|
||||
border-color: rgba(151, 175, 166, 0.8);
|
||||
}
|
||||
.sx-coach-nudge em {
|
||||
font-style: normal;
|
||||
font-weight: 780;
|
||||
color: var(--accent-bright, #8fc0b4);
|
||||
}
|
||||
.sx-coach-nudge__dot {
|
||||
width: 7px;
|
||||
height: 7px;
|
||||
border-radius: 50%;
|
||||
background: var(--accent-bright, #8fc0b4);
|
||||
animation: sx-timebar-pulse 1.8s ease-out infinite;
|
||||
}
|
||||
.sx-segmented__badge.is-pulsing {
|
||||
animation: sx-coach-badge-pulse 1.6s ease-in-out infinite;
|
||||
}
|
||||
@keyframes sx-coach-badge-pulse {
|
||||
0%, 100% { transform: scale(1); }
|
||||
50% { transform: scale(1.18); }
|
||||
}
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.sx-coach-nudge__dot,
|
||||
.sx-segmented__badge.is-pulsing {
|
||||
animation: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* ── P2 단계 누적 게이지(세로 트랙) ── */
|
||||
.sx-vstep__gauge {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
margin-top: 6px;
|
||||
}
|
||||
.sx-vstep__gauge .sx-gauge {
|
||||
flex: 1 1 auto;
|
||||
min-width: 0;
|
||||
}
|
||||
.sx-vstep__gauge em {
|
||||
flex: 0 0 auto;
|
||||
font-style: normal;
|
||||
font-size: 10.5px;
|
||||
font-weight: 740;
|
||||
font-variant-numeric: tabular-nums;
|
||||
color: var(--text-dim, rgba(238, 244, 242, 0.55));
|
||||
min-width: 20px;
|
||||
text-align: right;
|
||||
}
|
||||
.sx-track__note {
|
||||
margin-top: 10px;
|
||||
padding-top: 8px;
|
||||
border-top: 1px dashed rgba(255, 255, 255, 0.08);
|
||||
font-size: 11px;
|
||||
line-height: 1.5;
|
||||
color: var(--text-dim, rgba(238, 244, 242, 0.5));
|
||||
}
|
||||
|
||||
/* ── 패널 컬랩싱 토글(과밀 완화, 2026-07-14) ── */
|
||||
.sx-panel-toggle {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 8px;
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
background: transparent;
|
||||
color: inherit;
|
||||
cursor: pointer;
|
||||
text-align: left;
|
||||
}
|
||||
.sx-panel-toggle:focus-visible {
|
||||
outline: 2px solid var(--focus-ring);
|
||||
outline-offset: 2px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.sx-panel-toggle__hint {
|
||||
flex: 0 0 auto;
|
||||
font-size: 10.5px;
|
||||
font-weight: 680;
|
||||
color: var(--text-muted, rgba(238, 244, 242, 0.5));
|
||||
white-space: nowrap;
|
||||
}
|
||||
.sx-panel-toggle:hover .sx-panel-toggle__hint {
|
||||
color: var(--accent-bright);
|
||||
}
|
||||
.sx-panel.is-collapsed {
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
.sx-safety .sx-panel-toggle {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
.sx-safety .sx-panel-toggle .sx-safety__badge {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue