diff options
| author | Christophe Besson <cbesson@gmail.com> | 2026-08-28 10:09:38 +0200 |
|---|---|---|
| committer | Christophe Besson <cbesson@gmail.com> | 2026-08-28 10:09:38 +0200 |
| commit | 232ce4ae82179245b402ffc3bd473565329e5e16 (patch) | |
| tree | 38cb9b1f8007009e39b462bcda16830aa2b0ede3 /packages/meshbay-hub/src/meshbay_hub/static/style.css | |
| parent | 471fa6242fc56a035a8c9639722a82b9341328c2 (diff) | |
| parent | 58ca879b017da62e77f40752d8d94fef3f315a1e (diff) | |
| download | meshbay-232ce4ae82179245b402ffc3bd473565329e5e16.tar.gz | |
Merge branch 'feat/group-name-per-owner'
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 ─────────────────────────────────────────── */ |