feat: complete release preparation, 10+ ad mediation, CI/CD, and docker deployment
Some checks failed
CI Pipeline / Code Quality & Typecheck (push) Waiting to run
CI Pipeline / Test Suite (macos-latest) (push) Blocked by required conditions
CI Pipeline / Test Suite (ubuntu-latest) (push) Blocked by required conditions
CI Pipeline / Test Suite (windows-latest) (push) Blocked by required conditions
CI Pipeline / Build Validation (admin) (push) Blocked by required conditions
CI Pipeline / Build Validation (desktop) (push) Blocked by required conditions
Deploy Landing Page / deploy (push) Blocked by required conditions
Deploy Landing Page / build (push) Waiting to run
Release & Packaging Pipeline / Build & Publish Admin Docker Image (push) Failing after 8s
Release & Code Signing CA Pipeline / build-and-sign-windows (push) Failing after 1m51s
Build macOS / Build & Package (macOS) (push) Failing after 4s
Build macOS / Build & Package (macOS)-1 (push) Failing after 5s
Release & Code Signing CA Pipeline / build-and-sign-macos (push) Failing after 3s
Release & Packaging Pipeline / Package macOS Desktop App (push) Failing after 4s
Release & Packaging Pipeline / Package Windows Desktop App (push) Failing after 2m28s
Release & Packaging Pipeline / Publish Official GitHub Release (push) Has been skipped
Some checks failed
CI Pipeline / Code Quality & Typecheck (push) Waiting to run
CI Pipeline / Test Suite (macos-latest) (push) Blocked by required conditions
CI Pipeline / Test Suite (ubuntu-latest) (push) Blocked by required conditions
CI Pipeline / Test Suite (windows-latest) (push) Blocked by required conditions
CI Pipeline / Build Validation (admin) (push) Blocked by required conditions
CI Pipeline / Build Validation (desktop) (push) Blocked by required conditions
Deploy Landing Page / deploy (push) Blocked by required conditions
Deploy Landing Page / build (push) Waiting to run
Release & Packaging Pipeline / Build & Publish Admin Docker Image (push) Failing after 8s
Release & Code Signing CA Pipeline / build-and-sign-windows (push) Failing after 1m51s
Build macOS / Build & Package (macOS) (push) Failing after 4s
Build macOS / Build & Package (macOS)-1 (push) Failing after 5s
Release & Code Signing CA Pipeline / build-and-sign-macos (push) Failing after 3s
Release & Packaging Pipeline / Package macOS Desktop App (push) Failing after 4s
Release & Packaging Pipeline / Package Windows Desktop App (push) Failing after 2m28s
Release & Packaging Pipeline / Publish Official GitHub Release (push) Has been skipped
This commit is contained in:
parent
5cd1de6859
commit
708e20f747
406 changed files with 42464 additions and 6199 deletions
|
|
@ -1,16 +1,14 @@
|
|||
/* Caption Overlay — Phase 10.1 Live Caption
|
||||
* CSS Custom Properties 기반 — fallback은 dark 테마값.
|
||||
* WindowManager.insertCSS()가 :root에 테마 변수를 주입하면 자동 전환.
|
||||
* Precision Broadcast Subtitle HUD
|
||||
*/
|
||||
|
||||
/* ── Midnight(다크) fallback 기본값 (:root) ────────────────────── */
|
||||
:root {
|
||||
--d3-accent-main: #3b82f6;
|
||||
--d3-accent-glow: rgba(59, 130, 246, 0.6);
|
||||
--d3-accent-glow-dim: rgba(59, 130, 246, 0.3);
|
||||
--d3-accent-light: #60a5fa;
|
||||
--d3-accent-light-glow: rgba(96, 165, 250, 0.7);
|
||||
--d3-accent-light-glow-dim: rgba(96, 165, 250, 0.4);
|
||||
--d3-accent-glow: rgba(59, 130, 246, 0.45);
|
||||
--d3-accent-glow-dim: rgba(59, 130, 246, 0.2);
|
||||
--d3-accent-light: #93c5fd;
|
||||
--d3-accent-light-glow: rgba(147, 197, 253, 0.5);
|
||||
--d3-accent-light-glow-dim: rgba(147, 197, 253, 0.25);
|
||||
}
|
||||
|
||||
* {
|
||||
|
|
@ -24,6 +22,7 @@ html, body {
|
|||
overflow: hidden;
|
||||
user-select: none;
|
||||
-webkit-app-region: no-drag;
|
||||
font-family: 'Pretendard Variable', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
||||
}
|
||||
|
||||
#root {
|
||||
|
|
@ -36,7 +35,7 @@ html, body {
|
|||
|
||||
.caption-overlay {
|
||||
width: 100%;
|
||||
padding: 12px 20px;
|
||||
padding: 12px 24px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: flex-end;
|
||||
|
|
@ -46,58 +45,56 @@ html, body {
|
|||
#lines {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 4px;
|
||||
gap: 6px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.caption-line {
|
||||
font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
|
||||
font-size: 18px;
|
||||
font-weight: 500;
|
||||
font-size: 16.5px;
|
||||
font-weight: 600;
|
||||
line-height: 1.5;
|
||||
color: var(--d3-accent-main);
|
||||
text-shadow:
|
||||
0 0 8px var(--d3-accent-glow),
|
||||
0 0 16px var(--d3-accent-glow-dim),
|
||||
0 1px 3px rgba(0, 0, 0, 0.8);
|
||||
background: rgba(13, 20, 38, 0.92);
|
||||
/* 헤어라인은 box-shadow inset — border는 라인 높이에 영향을 주므로 금지 */
|
||||
box-shadow: inset 0 0 0 1px rgba(148, 180, 255, 0.1);
|
||||
border-radius: 8px;
|
||||
padding: 4px 12px;
|
||||
color: #f4f4f5;
|
||||
background: rgba(15, 17, 22, 0.92);
|
||||
backdrop-filter: blur(20px);
|
||||
-webkit-backdrop-filter: blur(20px);
|
||||
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.12);
|
||||
border-radius: 999px;
|
||||
padding: 6px 18px;
|
||||
opacity: 1;
|
||||
transition: opacity 0.5s ease-out;
|
||||
transition: opacity 0.4s ease-out;
|
||||
word-wrap: break-word;
|
||||
overflow-wrap: break-word;
|
||||
max-width: 90%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.caption-line.fading {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
/* Newest line (bottom) is brightest */
|
||||
/* Newest line (bottom) is brightest with accent tint */
|
||||
.caption-line:last-child {
|
||||
color: var(--d3-accent-light);
|
||||
text-shadow:
|
||||
0 0 10px var(--d3-accent-light-glow),
|
||||
0 0 20px var(--d3-accent-light-glow-dim),
|
||||
0 1px 3px rgba(0, 0, 0, 0.8);
|
||||
color: #ffffff;
|
||||
border: 1px solid rgba(59, 130, 246, 0.35);
|
||||
box-shadow: 0 8px 28px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
|
||||
/* Oldest lines are dimmer */
|
||||
.caption-line:first-child {
|
||||
opacity: 0.6;
|
||||
opacity: 0.65;
|
||||
}
|
||||
|
||||
.caption-line:nth-child(2) {
|
||||
opacity: 0.8;
|
||||
opacity: 0.82;
|
||||
}
|
||||
|
||||
/* Delta (partial/unfinished) line has pulsing cursor */
|
||||
.caption-line.delta::after {
|
||||
content: '\2588';
|
||||
animation: blink 0.8s step-end infinite;
|
||||
margin-left: 2px;
|
||||
opacity: 0.7;
|
||||
margin-left: 4px;
|
||||
color: var(--d3-accent-main);
|
||||
opacity: 0.85;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
|
|
|
|||
|
|
@ -1,21 +1,19 @@
|
|||
/* command-popup/style.css
|
||||
* CSS Custom Properties 기반 — fallback은 dark 테마값.
|
||||
* WindowManager.insertCSS()가 :root에 테마 변수를 주입하면 자동 전환.
|
||||
* Precision Command Quick-Switcher HUD
|
||||
*/
|
||||
|
||||
/* ── Midnight(다크) fallback 기본값 (:root) ────────────────────── */
|
||||
:root {
|
||||
--d3-bg-card: rgba(17, 26, 48, 0.85);
|
||||
--d3-border-default: rgba(148, 180, 255, 0.12);
|
||||
--d3-border-subtle: rgba(148, 180, 255, 0.07);
|
||||
--d3-text-primary: #eef2fb;
|
||||
--d3-text-inactive: #7385ab;
|
||||
--d3-text-muted: rgba(147, 164, 200, 0.45);
|
||||
--d3-text-dimLabel: #4e5f85;
|
||||
--d3-text-secondary: #93a4c8;
|
||||
--d3-bg-card: rgba(15, 17, 22, 0.9);
|
||||
--d3-border-default: rgba(255, 255, 255, 0.08);
|
||||
--d3-border-subtle: rgba(255, 255, 255, 0.04);
|
||||
--d3-text-primary: #f4f4f5;
|
||||
--d3-text-inactive: #71717a;
|
||||
--d3-text-muted: rgba(255, 255, 255, 0.35);
|
||||
--d3-text-dimLabel: #a1a1aa;
|
||||
--d3-text-secondary: #a1a1aa;
|
||||
--d3-accent-main: #3b82f6;
|
||||
--d3-accent-dim: rgba(59, 130, 246, 0.14);
|
||||
--d3-shadow-popup: 0 12px 40px rgba(3, 7, 18, 0.5);
|
||||
--d3-shadow-popup: 0 16px 36px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.12);
|
||||
}
|
||||
|
||||
* {
|
||||
|
|
@ -29,6 +27,7 @@ body {
|
|||
overflow: hidden;
|
||||
-webkit-app-region: no-drag;
|
||||
user-select: none;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Pretendard Variable", "Segoe UI", sans-serif;
|
||||
}
|
||||
|
||||
#root {
|
||||
|
|
@ -39,15 +38,16 @@ body {
|
|||
.command-popup {
|
||||
background: var(--d3-bg-card);
|
||||
border: 1px solid var(--d3-border-default);
|
||||
border-radius: 14px;
|
||||
padding: 6px;
|
||||
backdrop-filter: blur(24px);
|
||||
border-radius: 16px;
|
||||
padding: 8px;
|
||||
backdrop-filter: blur(28px);
|
||||
-webkit-backdrop-filter: blur(28px);
|
||||
box-shadow: var(--d3-shadow-popup);
|
||||
opacity: 0;
|
||||
transform: translateY(4px) scale(0.98);
|
||||
transition: opacity 0.15s ease-out, transform 0.15s ease-out;
|
||||
min-width: 280px;
|
||||
max-width: 380px;
|
||||
transform: translateY(6px) scale(0.98);
|
||||
transition: opacity 0.15s cubic-bezier(0.16, 1, 0.3, 1), transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
|
||||
min-width: 290px;
|
||||
max-width: 390px;
|
||||
}
|
||||
|
||||
.command-popup.visible {
|
||||
|
|
@ -59,16 +59,16 @@ body {
|
|||
opacity: 0;
|
||||
transform: translateY(-4px) scale(0.98);
|
||||
transition-duration: 0.1s;
|
||||
transition-timing-function: ease-in;
|
||||
}
|
||||
|
||||
.title {
|
||||
color: var(--d3-text-dimLabel);
|
||||
font-size: 9px;
|
||||
font-size: 10px;
|
||||
font-weight: 700;
|
||||
letter-spacing: 1.5px;
|
||||
padding: 6px 10px 4px;
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
|
||||
letter-spacing: 0.08em;
|
||||
text-transform: uppercase;
|
||||
padding: 6px 10px 6px;
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
||||
}
|
||||
|
||||
.items {
|
||||
|
|
@ -79,28 +79,28 @@ body {
|
|||
.item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 10px 10px;
|
||||
border-radius: 8px;
|
||||
padding: 9px 12px;
|
||||
border-radius: 10px;
|
||||
cursor: pointer;
|
||||
transition: background 100ms;
|
||||
transition: background 120ms ease;
|
||||
gap: 10px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.item:hover,
|
||||
.item.selected {
|
||||
background: var(--d3-border-subtle);
|
||||
background: rgba(255, 255, 255, 0.06);
|
||||
}
|
||||
|
||||
.item.selected::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 6px;
|
||||
bottom: 6px;
|
||||
top: 8px;
|
||||
bottom: 8px;
|
||||
width: 3px;
|
||||
background: var(--d3-accent-main);
|
||||
border-radius: 1.5px;
|
||||
border-radius: 999px;
|
||||
}
|
||||
|
||||
.item.active {
|
||||
|
|
@ -110,7 +110,7 @@ body {
|
|||
.item-number {
|
||||
color: var(--d3-text-inactive);
|
||||
font-size: 11px;
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
||||
min-width: 16px;
|
||||
text-align: center;
|
||||
}
|
||||
|
|
@ -137,14 +137,14 @@ body {
|
|||
|
||||
.item-none {
|
||||
border-bottom: 1px solid var(--d3-border-subtle);
|
||||
margin-bottom: 2px;
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
|
||||
.item-active-badge {
|
||||
color: var(--d3-accent-main);
|
||||
font-size: 10px;
|
||||
font-weight: 700;
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
||||
}
|
||||
|
||||
.hints {
|
||||
|
|
@ -152,11 +152,11 @@ body {
|
|||
justify-content: center;
|
||||
gap: 16px;
|
||||
padding: 6px 0 4px;
|
||||
border-top: 1px solid var(--d3-border-subtle);
|
||||
margin-top: 4px;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.06);
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
.hints span {
|
||||
color: var(--d3-text-muted);
|
||||
font-size: 10px;
|
||||
font-size: 10.5px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,18 +1,16 @@
|
|||
/* history-popup/style.css
|
||||
* CSS Custom Properties 기반 — fallback은 dark 테마값.
|
||||
* WindowManager.insertCSS()가 :root에 테마 변수를 주입하면 자동 전환.
|
||||
* Precision Recent Dictation Inserter HUD
|
||||
*/
|
||||
|
||||
/* ── Midnight(다크) fallback 기본값 (:root) ────────────────────── */
|
||||
:root {
|
||||
--d3-bg-card: rgba(17, 26, 48, 0.85);
|
||||
--d3-border-default: rgba(148, 180, 255, 0.12);
|
||||
--d3-border-subtle: rgba(148, 180, 255, 0.07);
|
||||
--d3-text-primary: #eef2fb;
|
||||
--d3-text-inactive: #7385ab;
|
||||
--d3-text-muted: rgba(147, 164, 200, 0.45);
|
||||
--d3-bg-card: rgba(15, 17, 22, 0.9);
|
||||
--d3-border-default: rgba(255, 255, 255, 0.08);
|
||||
--d3-border-subtle: rgba(255, 255, 255, 0.04);
|
||||
--d3-text-primary: #f4f4f5;
|
||||
--d3-text-inactive: #71717a;
|
||||
--d3-text-muted: rgba(255, 255, 255, 0.35);
|
||||
--d3-accent-main: #3b82f6;
|
||||
--d3-shadow-popup: 0 12px 40px rgba(3, 7, 18, 0.5);
|
||||
--d3-shadow-popup: 0 16px 36px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.12);
|
||||
}
|
||||
|
||||
* {
|
||||
|
|
@ -26,6 +24,7 @@ body {
|
|||
overflow: hidden;
|
||||
-webkit-app-region: no-drag;
|
||||
user-select: none;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Pretendard Variable", "Segoe UI", sans-serif;
|
||||
}
|
||||
|
||||
#root {
|
||||
|
|
@ -36,15 +35,16 @@ body {
|
|||
.history-popup {
|
||||
background: var(--d3-bg-card);
|
||||
border: 1px solid var(--d3-border-default);
|
||||
border-radius: 14px;
|
||||
padding: 6px;
|
||||
backdrop-filter: blur(24px);
|
||||
border-radius: 16px;
|
||||
padding: 8px;
|
||||
backdrop-filter: blur(28px);
|
||||
-webkit-backdrop-filter: blur(28px);
|
||||
box-shadow: var(--d3-shadow-popup);
|
||||
opacity: 0;
|
||||
transform: translateY(4px) scale(0.98);
|
||||
transition: opacity 0.15s ease-out, transform 0.15s ease-out;
|
||||
min-width: 300px;
|
||||
max-width: 420px;
|
||||
transform: translateY(6px) scale(0.98);
|
||||
transition: opacity 0.15s cubic-bezier(0.16, 1, 0.3, 1), transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
|
||||
min-width: 310px;
|
||||
max-width: 430px;
|
||||
}
|
||||
|
||||
.history-popup.visible {
|
||||
|
|
@ -56,7 +56,6 @@ body {
|
|||
opacity: 0;
|
||||
transform: translateY(-4px) scale(0.98);
|
||||
transition-duration: 0.1s;
|
||||
transition-timing-function: ease-in;
|
||||
}
|
||||
|
||||
.items {
|
||||
|
|
@ -67,34 +66,34 @@ body {
|
|||
.item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 8px 10px;
|
||||
border-radius: 8px;
|
||||
padding: 9px 12px;
|
||||
border-radius: 10px;
|
||||
cursor: pointer;
|
||||
transition: background 100ms;
|
||||
gap: 8px;
|
||||
transition: background 120ms ease;
|
||||
gap: 10px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.item:hover,
|
||||
.item.selected {
|
||||
background: var(--d3-border-subtle);
|
||||
background: rgba(255, 255, 255, 0.06);
|
||||
}
|
||||
|
||||
.item.selected::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 4px;
|
||||
bottom: 4px;
|
||||
top: 6px;
|
||||
bottom: 6px;
|
||||
width: 3px;
|
||||
background: var(--d3-accent-main);
|
||||
border-radius: 1.5px;
|
||||
border-radius: 999px;
|
||||
}
|
||||
|
||||
.item-number {
|
||||
color: var(--d3-text-inactive);
|
||||
font-size: 11px;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", monospace;
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
||||
min-width: 16px;
|
||||
text-align: center;
|
||||
}
|
||||
|
|
@ -103,17 +102,17 @@ body {
|
|||
flex: 1;
|
||||
color: var(--d3-text-primary);
|
||||
font-size: 13px;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
||||
line-height: 1.4;
|
||||
line-height: 1.45;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.item-time {
|
||||
color: var(--d3-text-inactive);
|
||||
font-size: 11px;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
||||
white-space: nowrap;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
|
@ -123,14 +122,13 @@ body {
|
|||
justify-content: center;
|
||||
gap: 16px;
|
||||
padding: 6px 0 4px;
|
||||
border-top: 1px solid var(--d3-border-subtle);
|
||||
margin-top: 4px;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.06);
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
.hints span {
|
||||
color: var(--d3-text-muted);
|
||||
font-size: 10px;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
||||
font-size: 10.5px;
|
||||
}
|
||||
|
||||
.empty-state {
|
||||
|
|
@ -138,5 +136,4 @@ body {
|
|||
font-size: 13px;
|
||||
text-align: center;
|
||||
padding: 24px 16px;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,17 +1,25 @@
|
|||
/* recording-tip/style.css
|
||||
* CSS Custom Properties 기반 — fallback은 dark 테마값.
|
||||
* WindowManager.insertCSS()가 :root에 테마 변수를 주입하면 자동 전환.
|
||||
* Precision Hardware Voice Capsule HUD (Push-To-Talk Telemetry)
|
||||
* Pure CSS Custom Properties with Midnight fallback
|
||||
*/
|
||||
|
||||
/* ── Midnight(다크) fallback 기본값 (:root) ────────────────────── */
|
||||
:root {
|
||||
--d3-bg-tip: rgba(17, 26, 48, 0.85);
|
||||
--d3-text-primary: #eef2fb;
|
||||
--d3-text-secondary: #93a4c8;
|
||||
--d3-bg-tip: rgba(15, 17, 22, 0.88);
|
||||
--d3-text-primary: #f4f4f5;
|
||||
--d3-text-secondary: #a1a1aa;
|
||||
--d3-accent-main: #3b82f6;
|
||||
--d3-border-default: rgba(148, 180, 255, 0.12);
|
||||
--d3-border-strong: rgba(148, 180, 255, 0.2);
|
||||
--d3-shadow-popup: 0 12px 40px rgba(3, 7, 18, 0.5);
|
||||
--d3-border-default: rgba(255, 255, 255, 0.08);
|
||||
--d3-border-strong: rgba(255, 255, 255, 0.16);
|
||||
--d3-shadow-popup: 0 16px 36px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.12);
|
||||
--d3-wave-1: #93c5fd;
|
||||
--d3-wave-2: #60a5fa;
|
||||
--d3-wave-3: #4f8dfa;
|
||||
--d3-wave-4: #3b82f6;
|
||||
--d3-wave-5: #3b82f6;
|
||||
--d3-wave-6: #5b75f7;
|
||||
--d3-wave-7: #6e71f7;
|
||||
--d3-wave-8: #818cf8;
|
||||
--d3-wave-9: #a78bfa;
|
||||
}
|
||||
|
||||
* {
|
||||
|
|
@ -25,6 +33,7 @@ body {
|
|||
overflow: hidden;
|
||||
-webkit-app-region: no-drag;
|
||||
user-select: none;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Pretendard Variable", "Segoe UI", sans-serif;
|
||||
}
|
||||
|
||||
#root {
|
||||
|
|
@ -38,63 +47,65 @@ body {
|
|||
.recording-tip {
|
||||
background: var(--d3-bg-tip);
|
||||
border: 1px solid var(--d3-border-default);
|
||||
border-radius: 14px;
|
||||
padding: 8px 12px;
|
||||
border-radius: 999px;
|
||||
padding: 8px 16px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
backdrop-filter: blur(24px);
|
||||
gap: 10px;
|
||||
backdrop-filter: blur(28px);
|
||||
-webkit-backdrop-filter: blur(28px);
|
||||
box-shadow: var(--d3-shadow-popup);
|
||||
transition: opacity 150ms ease-in-out;
|
||||
transition: all 180ms cubic-bezier(0.16, 1, 0.3, 1);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.wave-bars {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 2px;
|
||||
height: 32px;
|
||||
gap: 3px;
|
||||
height: 28px;
|
||||
}
|
||||
|
||||
.wave-bar {
|
||||
width: 3px;
|
||||
background: var(--d3-accent-main);
|
||||
border-radius: 1.5px;
|
||||
transition: height 100ms ease-out;
|
||||
min-height: 2px;
|
||||
border-radius: 999px;
|
||||
transition: height 80ms ease-out;
|
||||
min-height: 3px;
|
||||
}
|
||||
|
||||
/* 9바 시안→블루→퍼플 스펙트럼 (v2 Midnight — 테마 변수 사용) */
|
||||
.wave-bar:nth-child(1) { background: var(--d3-wave-1); box-shadow: 0 0 6px var(--d3-wave-1); opacity: 0.9; }
|
||||
.wave-bar:nth-child(2) { background: var(--d3-wave-2); box-shadow: 0 0 6px var(--d3-wave-2); opacity: 0.92; }
|
||||
.wave-bar:nth-child(3) { background: var(--d3-wave-3); box-shadow: 0 0 6px var(--d3-wave-3); opacity: 0.94; }
|
||||
.wave-bar:nth-child(4) { background: var(--d3-wave-4); box-shadow: 0 0 6px var(--d3-wave-4); opacity: 0.96; }
|
||||
.wave-bar:nth-child(5) { background: var(--d3-wave-5); box-shadow: 0 0 6px var(--d3-wave-5); opacity: 0.98; }
|
||||
.wave-bar:nth-child(6) { background: var(--d3-wave-6); box-shadow: 0 0 6px var(--d3-wave-6); opacity: 0.98; }
|
||||
.wave-bar:nth-child(7) { background: var(--d3-wave-7); box-shadow: 0 0 6px var(--d3-wave-7); opacity: 0.96; }
|
||||
.wave-bar:nth-child(8) { background: var(--d3-wave-8); box-shadow: 0 0 6px var(--d3-wave-8); opacity: 0.94; }
|
||||
.wave-bar:nth-child(9) { background: var(--d3-wave-9); box-shadow: 0 0 6px var(--d3-wave-9); opacity: 0.92; }
|
||||
.wave-bar:nth-child(1) { background: var(--d3-wave-1); opacity: 0.85; }
|
||||
.wave-bar:nth-child(2) { background: var(--d3-wave-2); opacity: 0.9; }
|
||||
.wave-bar:nth-child(3) { background: var(--d3-wave-3); opacity: 0.95; }
|
||||
.wave-bar:nth-child(4) { background: var(--d3-wave-4); opacity: 1; }
|
||||
.wave-bar:nth-child(5) { background: var(--d3-wave-5); opacity: 1; }
|
||||
.wave-bar:nth-child(6) { background: var(--d3-wave-6); opacity: 1; }
|
||||
.wave-bar:nth-child(7) { background: var(--d3-wave-7); opacity: 0.95; }
|
||||
.wave-bar:nth-child(8) { background: var(--d3-wave-8); opacity: 0.9; }
|
||||
.wave-bar:nth-child(9) { background: var(--d3-wave-9); opacity: 0.85; }
|
||||
|
||||
.duration {
|
||||
color: var(--d3-text-primary);
|
||||
font-size: 13px;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
||||
font-weight: 600;
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
||||
font-variant-numeric: tabular-nums;
|
||||
min-width: 32px;
|
||||
letter-spacing: 0.02em;
|
||||
min-width: 34px;
|
||||
}
|
||||
|
||||
.progress-container {
|
||||
width: 120px;
|
||||
height: 3px;
|
||||
background: var(--d3-border-strong);
|
||||
border-radius: 1.5px;
|
||||
height: 4px;
|
||||
background: rgba(255, 255, 255, 0.08);
|
||||
border-radius: 999px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.progress-bar {
|
||||
height: 3px;
|
||||
height: 100%;
|
||||
background: var(--d3-accent-main);
|
||||
border-radius: 1.5px;
|
||||
border-radius: 999px;
|
||||
width: 0%;
|
||||
transition: width 100ms linear;
|
||||
}
|
||||
|
|
@ -102,7 +113,7 @@ body {
|
|||
.thinking-label {
|
||||
color: var(--d3-text-secondary);
|
||||
font-size: 12px;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.error-icon {
|
||||
|
|
@ -111,57 +122,56 @@ body {
|
|||
justify-content: center;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
background: var(--d3-status-error);
|
||||
background: #ef4444;
|
||||
color: white;
|
||||
border-radius: 50%;
|
||||
font-size: 12px;
|
||||
font-size: 11px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.error-label {
|
||||
color: var(--d3-text-primary);
|
||||
font-size: 12px;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
||||
}
|
||||
|
||||
.view {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.view.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* ── 실시간 부분 전사 (recording 상태 하단) ─────────────── */
|
||||
/* ── 실시간 부분 전사 (recording 상태) ─────────────── */
|
||||
.view-recording {
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
gap: 6px;
|
||||
width: 288px;
|
||||
min-width: 160px;
|
||||
max-width: 320px;
|
||||
}
|
||||
|
||||
.recording-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 8px;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.partial-text {
|
||||
color: var(--d3-text-primary);
|
||||
font-size: 12px;
|
||||
line-height: 1.45;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
||||
text-align: left;
|
||||
max-height: 35px;
|
||||
max-height: 38px;
|
||||
overflow: hidden;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
border-top: 1px solid var(--d3-border-default);
|
||||
padding-top: 5px;
|
||||
padding-top: 6px;
|
||||
}
|
||||
|
||||
.partial-text.hidden {
|
||||
|
|
|
|||
|
|
@ -1,18 +1,16 @@
|
|||
/* result-popup/style.css
|
||||
* CSS Custom Properties 기반 — fallback은 dark 테마값.
|
||||
* @media (prefers-color-scheme: dark) 블록 제거 → CSS 변수로 통합.
|
||||
* WindowManager.insertCSS()가 :root에 테마 변수를 주입하면 자동 전환.
|
||||
* Precision Result Card HUD with Spring Physics
|
||||
*/
|
||||
|
||||
/* ── Midnight(다크) fallback 기본값 (:root) ────────────────────── */
|
||||
:root {
|
||||
--d3-bg-result: rgba(17, 26, 48, 0.85);
|
||||
--d3-border-result: rgba(148, 180, 255, 0.12);
|
||||
--d3-text-result: #eef2fb;
|
||||
--d3-action-btn: rgba(147, 164, 200, 0.7);
|
||||
--d3-action-btn-hover-bg: rgba(148, 180, 255, 0.08);
|
||||
--d3-action-btn-hover: #c9d5f2;
|
||||
--d3-shadow-popup: 0 12px 40px rgba(3, 7, 18, 0.5);
|
||||
--d3-bg-result: rgba(15, 17, 22, 0.9);
|
||||
--d3-border-result: rgba(255, 255, 255, 0.08);
|
||||
--d3-text-result: #f4f4f5;
|
||||
--d3-action-btn: rgba(255, 255, 255, 0.65);
|
||||
--d3-action-btn-hover-bg: rgba(255, 255, 255, 0.1);
|
||||
--d3-action-btn-hover: #ffffff;
|
||||
--d3-shadow-popup: 0 16px 36px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.12);
|
||||
--d3-status-success: #10b981;
|
||||
}
|
||||
|
||||
* {
|
||||
|
|
@ -26,6 +24,7 @@ body {
|
|||
overflow: hidden;
|
||||
-webkit-app-region: no-drag;
|
||||
user-select: none;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Pretendard Variable", "Segoe UI", sans-serif;
|
||||
}
|
||||
|
||||
#root {
|
||||
|
|
@ -37,37 +36,39 @@ body {
|
|||
.result-popup {
|
||||
background: var(--d3-bg-result);
|
||||
border: 1px solid var(--d3-border-result);
|
||||
border-radius: 14px;
|
||||
border-radius: 16px;
|
||||
padding: 12px 16px;
|
||||
backdrop-filter: blur(24px);
|
||||
backdrop-filter: blur(28px);
|
||||
-webkit-backdrop-filter: blur(28px);
|
||||
box-shadow: var(--d3-shadow-popup);
|
||||
opacity: 0;
|
||||
transform: translateY(4px);
|
||||
transition: opacity 200ms ease-out, transform 200ms ease-out;
|
||||
max-width: 400px;
|
||||
transform: translateY(6px) scale(0.98);
|
||||
transition: opacity 180ms cubic-bezier(0.16, 1, 0.3, 1), transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
|
||||
max-width: 420px;
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 8px;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.result-popup.visible {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
transform: translateY(0) scale(1);
|
||||
}
|
||||
|
||||
.result-text {
|
||||
flex: 1;
|
||||
color: var(--d3-text-result);
|
||||
font-size: 14px;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
||||
line-height: 1.5;
|
||||
font-size: 13.5px;
|
||||
line-height: 1.55;
|
||||
word-break: break-word;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.actions {
|
||||
display: flex;
|
||||
gap: 4px;
|
||||
flex-shrink: 0;
|
||||
margin-top: 1px;
|
||||
}
|
||||
|
||||
.action-btn {
|
||||
|
|
@ -76,21 +77,29 @@ body {
|
|||
justify-content: center;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
border: none;
|
||||
background: transparent;
|
||||
border-radius: 6px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.06);
|
||||
background: rgba(255, 255, 255, 0.04);
|
||||
border-radius: 8px;
|
||||
color: var(--d3-action-btn);
|
||||
cursor: pointer;
|
||||
transition: background 150ms, color 150ms;
|
||||
transition: all 150ms cubic-bezier(0.16, 1, 0.3, 1);
|
||||
}
|
||||
|
||||
.action-btn:hover {
|
||||
background: var(--d3-action-btn-hover-bg);
|
||||
border-color: rgba(255, 255, 255, 0.12);
|
||||
color: var(--d3-action-btn-hover);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.action-btn:active {
|
||||
transform: translateY(0) scale(0.96);
|
||||
}
|
||||
|
||||
.action-btn.copied {
|
||||
color: var(--d3-status-success);
|
||||
border-color: rgba(16, 185, 129, 0.3);
|
||||
background: rgba(16, 185, 129, 0.12);
|
||||
}
|
||||
|
||||
.hidden {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue