diff options
| author | Christophe Besson <cbesson@gmail.com> | 2026-08-20 22:21:24 +0200 |
|---|---|---|
| committer | Christophe Besson <cbesson@gmail.com> | 2026-08-20 22:21:24 +0200 |
| commit | ae52b69b14a6997d01aad66f49fbea7b5ca2dfe6 (patch) | |
| tree | 26f850a88565846a139868a4b85c715734751a41 /packages/meshbay-hub/src/meshbay_hub/static/style.css | |
| parent | c8af746c846b5dbc792f7e4f0d806647d513cc5c (diff) | |
| parent | 2e9490ca27047ae03e495d397abbe1aec1b2273a (diff) | |
| download | meshbay-ae52b69b14a6997d01aad66f49fbea7b5ca2dfe6.tar.gz | |
Merge feat/unified-group-management: wizard, public groups, activity sidebar
Diffstat (limited to 'packages/meshbay-hub/src/meshbay_hub/static/style.css')
| -rw-r--r-- | packages/meshbay-hub/src/meshbay_hub/static/style.css | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/packages/meshbay-hub/src/meshbay_hub/static/style.css b/packages/meshbay-hub/src/meshbay_hub/static/style.css index ac3d08f..7ce073a 100644 --- a/packages/meshbay-hub/src/meshbay_hub/static/style.css +++ b/packages/meshbay-hub/src/meshbay_hub/static/style.css @@ -2222,3 +2222,71 @@ a.transfer-name { align-items: center; } .node-attach-dir-row input { flex: 1; } + +/* ── Create Group Wizard ──────────────────────────────────────────────────── */ + +.wizard-root { + display: flex; + align-items: center; + justify-content: space-between; + padding: 8px 12px; + background: var(--surface); + border: 1px solid var(--border); + border-radius: 8px; + gap: 8px; +} +.wizard-root + .wizard-root { margin-top: 6px; } +.wizard-root-info { + display: flex; + align-items: center; + gap: 8px; + flex: 1; + min-width: 0; +} +.wizard-root-name { font-weight: 500; } +.wizard-root-path { + font-size: 0.82em; + color: var(--text-dim); + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} +.wizard-root-actions { + display: flex; + gap: 4px; + flex-shrink: 0; +} + +.wizard-progress { + display: flex; + flex-direction: column; + gap: 10px; + margin-top: 16px; +} +.wizard-step { + display: flex; + align-items: center; + gap: 10px; + padding: 10px 14px; + background: var(--surface); + border: 1px solid var(--border); + border-radius: 8px; + font-size: 0.9em; +} +.wizard-step-icon { + width: 20px; + text-align: center; + font-weight: 600; +} +.wizard-step-done .wizard-step-icon { color: var(--success); } +.wizard-step-running .wizard-step-icon { color: var(--accent); } +.wizard-step-error .wizard-step-icon { color: var(--error); } +.wizard-step-pending { opacity: 0.5; } + +.warning-msg { + padding: 10px 14px; + background: color-mix(in srgb, #f59e0b 15%, transparent); + border: 1px solid #f59e0b; + border-radius: 8px; + font-size: 0.85em; +} |