| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549 |
- /* ============================================================
- MultiPage Automation — Side Panel
- Design: Swiss Modernism + Developer Tool
- Font: Inter (UI) + JetBrains Mono (code)
- Themes: Light (default) + Dark (toggle)
- ============================================================ */
- /* ---- Light Theme (default) ---- */
- :root {
- --bg-base: #ffffff;
- --bg-surface: #f7f8fa;
- --bg-elevated: #eef0f4;
- --bg-hover: #e4e7ec;
- --bg-active: #dce0e8;
- --border: #d8dce3;
- --border-subtle: #e8ecf1;
- --text-primary: #1a1d24;
- --text-secondary: #5c6370;
- --text-muted: #9ca3af;
- --blue: #2563eb;
- --blue-soft: rgba(37, 99, 235, 0.08);
- --blue-glow: rgba(37, 99, 235, 0.12);
- --green: #16a34a;
- --green-soft: rgba(22, 163, 74, 0.08);
- --orange: #ea580c;
- --orange-soft: rgba(234, 88, 12, 0.08);
- --red: #dc2626;
- --red-soft: rgba(220, 38, 38, 0.08);
- --cyan: #0891b2;
- --purple: #7c3aed;
- --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
- --shadow-md: 0 2px 6px rgba(0,0,0,0.06);
- --radius-sm: 6px;
- --radius-md: 8px;
- --transition: 150ms ease;
- }
- /* ---- Dark Theme ---- */
- [data-theme="dark"] {
- --bg-base: #0f1117;
- --bg-surface: #181a21;
- --bg-elevated: #21242d;
- --bg-hover: #2a2e38;
- --bg-active: #323844;
- --border: #2a2e38;
- --border-subtle: #21242d;
- --text-primary: #e4e6eb;
- --text-secondary: #8b919e;
- --text-muted: #565c6a;
- --blue: #3b82f6;
- --blue-soft: rgba(59, 130, 246, 0.12);
- --blue-glow: rgba(59, 130, 246, 0.18);
- --green: #22c55e;
- --green-soft: rgba(34, 197, 94, 0.12);
- --orange: #f97316;
- --orange-soft: rgba(249, 115, 22, 0.12);
- --red: #ef4444;
- --red-soft: rgba(239, 68, 68, 0.12);
- --cyan: #06b6d4;
- --purple: #a78bfa;
- --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
- --shadow-md: 0 2px 8px rgba(0,0,0,0.3);
- }
- * { margin: 0; padding: 0; box-sizing: border-box; }
- body {
- font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
- font-size: 13px;
- color: var(--text-primary);
- background: var(--bg-base);
- padding: 12px;
- width: 100%;
- min-height: 100vh;
- -webkit-font-smoothing: antialiased;
- transition: background var(--transition), color var(--transition);
- }
- /* ============================================================
- Header
- ============================================================ */
- header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 14px;
- padding-bottom: 12px;
- border-bottom: 1px solid var(--border-subtle);
- }
- .header-left {
- display: flex;
- align-items: center;
- gap: 8px;
- }
- .header-left svg { color: var(--blue); }
- .header-left h1 {
- font-size: 14px;
- font-weight: 700;
- letter-spacing: -0.02em;
- color: var(--text-primary);
- }
- .header-btns {
- display: flex;
- align-items: center;
- gap: 4px;
- }
- /* ============================================================
- Theme Toggle
- ============================================================ */
- .theme-toggle {
- width: 30px;
- height: 30px;
- border: none;
- background: transparent;
- color: var(--text-muted);
- border-radius: var(--radius-sm);
- cursor: pointer;
- display: flex;
- align-items: center;
- justify-content: center;
- transition: all var(--transition);
- }
- .theme-toggle:hover { background: var(--bg-hover); color: var(--text-primary); }
- .theme-toggle .icon-moon { display: block; }
- .theme-toggle .icon-sun { display: none; }
- [data-theme="dark"] .theme-toggle .icon-moon { display: none; }
- [data-theme="dark"] .theme-toggle .icon-sun { display: block; }
- /* ============================================================
- Buttons
- ============================================================ */
- .btn {
- display: inline-flex;
- align-items: center;
- gap: 5px;
- padding: 6px 12px;
- font-family: inherit;
- font-size: 12px;
- font-weight: 600;
- border: 1px solid transparent;
- border-radius: var(--radius-sm);
- cursor: pointer;
- transition: all var(--transition);
- white-space: nowrap;
- }
- .btn-primary {
- background: var(--blue);
- color: #fff;
- }
- .btn-primary:hover { opacity: 0.9; box-shadow: 0 2px 8px var(--blue-glow); }
- .btn-success {
- background: var(--green);
- color: #fff;
- }
- .btn-success:hover { opacity: 0.9; box-shadow: 0 2px 8px var(--green-soft); }
- .run-group {
- display: flex;
- align-items: center;
- gap: 4px;
- }
- .run-count-input {
- width: 38px;
- padding: 5px 4px;
- text-align: center;
- background: var(--bg-base);
- border: 1px solid var(--border);
- border-radius: var(--radius-sm);
- color: var(--text-primary);
- font-family: 'JetBrains Mono', monospace;
- font-size: 12px;
- font-weight: 600;
- outline: none;
- }
- .run-count-input:focus { border-color: var(--blue); }
- .run-count-input::-webkit-inner-spin-button { opacity: 0.5; }
- .btn-success:disabled { background: var(--bg-elevated); color: var(--text-muted); cursor: not-allowed; box-shadow: none; }
- .btn-ghost {
- background: transparent;
- color: var(--text-secondary);
- padding: 6px;
- border-radius: var(--radius-sm);
- }
- .btn-ghost:hover { background: var(--bg-hover); color: var(--text-primary); }
- .btn-outline {
- background: transparent;
- border: 1px solid var(--border);
- color: var(--text-secondary);
- }
- .btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-soft); }
- .btn-sm { padding: 4px 10px; font-size: 11px; }
- .btn-xs { padding: 3px 8px; font-size: 10px; }
- /* ============================================================
- Data Card
- ============================================================ */
- #data-section { margin-bottom: 14px; }
- .data-card {
- background: var(--bg-surface);
- border: 1px solid var(--border);
- border-radius: var(--radius-md);
- padding: 10px 12px;
- display: flex;
- flex-direction: column;
- gap: 7px;
- box-shadow: var(--shadow-sm);
- }
- .data-row {
- display: flex;
- align-items: center;
- gap: 8px;
- }
- .data-label {
- width: 54px;
- font-size: 10px;
- font-weight: 700;
- color: var(--text-muted);
- text-transform: uppercase;
- letter-spacing: 0.06em;
- flex-shrink: 0;
- }
- .data-value {
- font-size: 11px;
- color: var(--text-muted);
- min-width: 0;
- }
- .data-value.has-value { color: var(--text-primary); }
- .mono {
- font-family: 'JetBrains Mono', 'Consolas', monospace;
- font-size: 10.5px;
- }
- .truncate {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .data-input {
- flex: 1;
- padding: 5px 8px;
- background: var(--bg-base);
- border: 1px solid var(--border);
- border-radius: var(--radius-sm);
- color: var(--text-primary);
- font-family: 'JetBrains Mono', monospace;
- font-size: 11px;
- outline: none;
- transition: border-color var(--transition), box-shadow var(--transition);
- min-width: 0;
- }
- .data-input::placeholder { color: var(--text-muted); }
- .data-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
- .data-select {
- flex: 1;
- padding: 5px 8px;
- background: var(--bg-base);
- border: 1px solid var(--border);
- border-radius: var(--radius-sm);
- color: var(--text-primary);
- font-family: inherit;
- font-size: 11px;
- outline: none;
- cursor: pointer;
- transition: border-color var(--transition);
- min-width: 0;
- }
- .data-select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
- [data-theme="dark"] .data-select { color-scheme: dark; }
- /* Status Bar */
- .status-bar {
- display: flex;
- align-items: center;
- gap: 8px;
- margin-top: 8px;
- padding: 6px 10px;
- background: var(--bg-surface);
- border: 1px solid var(--border);
- border-radius: var(--radius-sm);
- font-size: 11px;
- font-weight: 500;
- color: var(--text-secondary);
- box-shadow: var(--shadow-sm);
- }
- .status-dot {
- width: 7px;
- height: 7px;
- border-radius: 50%;
- background: var(--text-muted);
- flex-shrink: 0;
- transition: background var(--transition);
- }
- .status-bar.running .status-dot {
- background: var(--orange);
- animation: pulse 1.5s ease-in-out infinite;
- }
- .status-bar.running { color: var(--orange); }
- .status-bar.completed .status-dot { background: var(--green); }
- .status-bar.completed { color: var(--green); }
- .status-bar.failed .status-dot { background: var(--red); }
- .status-bar.failed { color: var(--red); }
- @keyframes pulse {
- 0%, 100% { opacity: 1; transform: scale(1); }
- 50% { opacity: 0.4; transform: scale(0.85); }
- }
- /* Auto Continue Bar */
- .auto-continue-bar {
- margin-top: 8px;
- padding: 8px 10px;
- background: var(--orange-soft);
- border: 1px solid rgba(234, 88, 12, 0.2);
- border-radius: var(--radius-sm);
- display: flex;
- align-items: center;
- gap: 8px;
- }
- .auto-continue-bar svg { color: var(--orange); flex-shrink: 0; }
- .auto-hint { font-size: 11px; color: var(--orange); flex: 1; font-weight: 500; }
- /* ============================================================
- Steps Section
- ============================================================ */
- #steps-section { margin-bottom: 14px; }
- .steps-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 8px;
- }
- .section-label {
- font-size: 10px;
- font-weight: 700;
- color: var(--text-muted);
- text-transform: uppercase;
- letter-spacing: 0.08em;
- }
- .steps-progress {
- font-family: 'JetBrains Mono', monospace;
- font-size: 10px;
- font-weight: 600;
- color: var(--text-muted);
- background: var(--bg-surface);
- padding: 2px 8px;
- border-radius: 10px;
- border: 1px solid var(--border);
- }
- .steps-list {
- display: flex;
- flex-direction: column;
- gap: 3px;
- }
- .step-row {
- display: flex;
- align-items: center;
- gap: 8px;
- padding: 1px 0;
- transition: opacity var(--transition);
- }
- /* Step Number Indicator */
- .step-indicator {
- width: 22px;
- height: 22px;
- border-radius: 50%;
- background: var(--bg-surface);
- border: 1.5px solid var(--border);
- display: flex;
- align-items: center;
- justify-content: center;
- flex-shrink: 0;
- transition: all var(--transition);
- }
- .step-num {
- font-size: 10px;
- font-weight: 700;
- color: var(--text-muted);
- transition: color var(--transition);
- }
- .step-row.running .step-indicator { border-color: var(--orange); background: var(--orange-soft); }
- .step-row.running .step-num { color: var(--orange); }
- .step-row.running .step-indicator { animation: pulse 1.5s ease-in-out infinite; }
- .step-row.completed .step-indicator { border-color: var(--green); background: var(--green-soft); }
- .step-row.completed .step-num { color: var(--green); }
- .step-row.failed .step-indicator { border-color: var(--red); background: var(--red-soft); }
- .step-row.failed .step-num { color: var(--red); }
- /* Step Button */
- .step-btn {
- flex: 1;
- padding: 6px 10px;
- font-family: inherit;
- font-size: 12px;
- font-weight: 500;
- color: var(--text-primary);
- background: var(--bg-surface);
- border: 1px solid var(--border);
- border-radius: var(--radius-sm);
- cursor: pointer;
- text-align: left;
- transition: all var(--transition);
- box-shadow: var(--shadow-sm);
- }
- .step-btn:hover:not(:disabled) { background: var(--bg-hover); border-color: var(--blue); }
- .step-btn:disabled { color: var(--text-muted); background: var(--bg-base); border-color: var(--border-subtle); cursor: not-allowed; opacity: 0.45; box-shadow: none; }
- .step-row.running .step-btn { border-color: var(--orange); color: var(--orange); }
- .step-row.completed .step-btn { border-color: var(--border-subtle); color: var(--text-secondary); opacity: 0.7; }
- .step-row.failed .step-btn { border-color: var(--red); color: var(--red); }
- .step-status {
- width: 18px;
- text-align: center;
- font-size: 12px;
- font-weight: 700;
- flex-shrink: 0;
- }
- .step-row.completed .step-status { color: var(--green); }
- .step-row.failed .step-status { color: var(--red); }
- /* ============================================================
- Log / Console Section
- ============================================================ */
- .log-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 6px;
- }
- #log-area {
- background: var(--bg-surface);
- border: 1px solid var(--border);
- border-radius: var(--radius-md);
- padding: 8px 10px;
- height: 220px;
- overflow-y: auto;
- font-family: 'JetBrains Mono', 'Consolas', monospace;
- font-size: 10.5px;
- line-height: 1.7;
- color: var(--text-secondary);
- box-shadow: var(--shadow-sm);
- }
- #log-area::-webkit-scrollbar { width: 5px; }
- #log-area::-webkit-scrollbar-track { background: transparent; }
- #log-area::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: 4px; }
- #log-area::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }
- .log-line { padding: 1.5px 0; }
- .log-line + .log-line { border-top: 1px solid var(--border-subtle); }
- .log-time { color: var(--text-muted); }
- .log-level { font-weight: 700; margin: 0 2px; }
- .log-level-info { color: var(--blue); }
- .log-level-ok { color: var(--green); }
- .log-level-warn { color: var(--orange); }
- .log-level-error { color: var(--red); }
- .log-step-tag {
- display: inline-block;
- padding: 0 4px;
- border-radius: 3px;
- font-weight: 700;
- font-size: 9.5px;
- margin-right: 3px;
- }
- .log-step-tag.step-1 { color: var(--cyan); background: rgba(8, 145, 178, 0.08); }
- .log-step-tag.step-2 { color: var(--purple); background: rgba(124, 58, 237, 0.08); }
- .log-step-tag.step-3 { color: #b45309; background: rgba(180, 83, 9, 0.06); }
- [data-theme="dark"] .log-step-tag.step-3 { color: #fbbf24; background: rgba(251, 191, 36, 0.1); }
- .log-step-tag.step-4 { color: var(--orange); background: var(--orange-soft); }
- .log-step-tag.step-5 { color: var(--green); background: var(--green-soft); }
- .log-step-tag.step-6 { color: var(--cyan); background: rgba(8, 145, 178, 0.08); }
- .log-step-tag.step-7 { color: var(--orange); background: var(--orange-soft); }
- .log-step-tag.step-8 { color: var(--purple); background: rgba(124, 58, 237, 0.08); }
- .log-step-tag.step-9 { color: var(--green); background: var(--green-soft); }
- .log-msg { color: var(--text-secondary); }
- .log-line.log-ok .log-msg { color: var(--green); font-weight: 500; }
- .log-line.log-error .log-msg { color: var(--red); font-weight: 500; }
- .log-line.log-warn .log-msg { color: var(--orange); }
- /* ============================================================
- Animations
- ============================================================ */
- @keyframes fadeIn {
- from { opacity: 0; transform: translateY(3px); }
- to { opacity: 1; transform: translateY(0); }
- }
- .log-line { animation: fadeIn 120ms ease-out; }
- @media (prefers-reduced-motion: reduce) {
- *, *::before, *::after {
- animation-duration: 0.01ms !important;
- transition-duration: 0.01ms !important;
- }
- }
|