Consolidate shared UI assets

Move common logo and controller glyphs into `ui/views/CommonwealthOnline/shared/` and update the pause menu, main menu, and browser glyph loader to use the shared paths. Also add a sync script and update deploy/staging scripts to copy controller icons once into the shared folder.
This commit is contained in:
2026-07-05 22:46:38 +12:00
parent 8acdb4f555
commit c3f5afe7f6
15 changed files with 1048 additions and 26 deletions
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Commonwealth Online — Main Menu Shell</title>
<link rel="stylesheet" href="styles.css">
<style>
/* Shell-only: left panel is layout chrome with no logo or menu content */
.left-panel--shell {
pointer-events: none;
}
</style>
</head>
<body>
<div class="main-screen" id="mainScreen">
<!-- Title-screen scenic background -->
<div class="scene-layer" aria-hidden="true"></div>
<div class="scene-overlay" aria-hidden="true"></div>
<!-- CRT / HUD texture overlays -->
<div class="screen-effects" aria-hidden="true"></div>
<!-- Left panel chrome (no logo, no menu items) -->
<aside class="left-panel left-panel--shell" aria-hidden="true"></aside>
</div>
</body>
</html>