diff options
Diffstat (limited to 'packages/meshbay-hub/src/meshbay_hub/static/style.css')
| -rw-r--r-- | packages/meshbay-hub/src/meshbay_hub/static/style.css | 11 |
1 files changed, 11 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 c375884..871ca0a 100644 --- a/packages/meshbay-hub/src/meshbay_hub/static/style.css +++ b/packages/meshbay-hub/src/meshbay_hub/static/style.css @@ -846,6 +846,17 @@ button:disabled { opacity: 0.5; cursor: not-allowed; } font-size: 0.85em; } +/* The middle state: the hub is still sending what somebody is waiting on, + but not what a newcomer needs. `--warn` already exists in both themes. */ +.warn-msg { + background: color-mix(in srgb, var(--warn) 12%, transparent); + color: var(--warn); + border: 1px solid var(--warn); + border-radius: 6px; + padding: 8px 12px; + font-size: 0.85em; +} + .success-msg { background: #16a34a20; color: var(--success); |