diff options
| author | David Skoland <davidskoland@gmail.com> | 2026-02-10 23:59:48 +0100 |
|---|---|---|
| committer | David Skoland <davidskoland@gmail.com> | 2026-02-10 23:59:48 +0100 |
| commit | 9993c378613b20b6f6f74b324c22c3bfda4c71fc (patch) | |
| tree | 08f6e98839e58419b8ba5429ce46bd11d852c5cd /webAO/styles/client.css | |
| parent | 020dfcda00ca06b9a06e7076eaf8a0164ae1327e (diff) | |
Use charName directly for playerlist rendering and add table styling
Render char icons and names from the character name string (PU type 1)
instead of gating on charId lookup. Add header row and row separators
to the playerlist table.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'webAO/styles/client.css')
| -rw-r--r-- | webAO/styles/client.css | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/webAO/styles/client.css b/webAO/styles/client.css index 88eca59..e3ee820 100644 --- a/webAO/styles/client.css +++ b/webAO/styles/client.css @@ -714,6 +714,23 @@ opacity: 0.5; } +#client_playerlist { + width: 100%; + border-collapse: collapse; +} + +#client_playerlist th, +#client_playerlist td { + border-bottom: 1px solid #555; + padding: 4px 6px; + text-align: left; +} + +#client_playerlist th { + font-weight: bold; + border-bottom: 2px solid #888; +} + .hrtext { overflow: hidden; text-align: center; |
