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 | 20 |
1 files changed, 20 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 cd9882e..810f06b 100644 --- a/packages/meshbay-hub/src/meshbay_hub/static/style.css +++ b/packages/meshbay-hub/src/meshbay_hub/static/style.css @@ -2136,9 +2136,29 @@ a.transfer-name { .sidebar-item-name { overflow: hidden; + min-width: 0; +} + +/* Group name + its @owner handle, stacked. Names are unique only per owner + account, so the handle is what tells two "photos" groups apart. */ +.gn { display: block; min-width: 0; } +.gn-name { + display: block; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} +.gn-owner { + display: block; + overflow: hidden; text-overflow: ellipsis; white-space: nowrap; + font-size: 0.8em; + font-weight: 400; + color: var(--text-dim); } +h2 .gn-owner, h3 .gn-owner { font-size: 0.55em; } +.sidebar-item.active .gn-owner { color: inherit; opacity: 0.75; } /* ── Chat: paging and orientation ─────────────────────────────────────────── */ |