Styling fixes and Olden Era mmodule

This commit is contained in:
Jakub Zych
2026-05-21 15:00:12 +02:00
parent 4ceff4015a
commit dd3493921b
136 changed files with 1028 additions and 111 deletions

View File

@@ -0,0 +1,19 @@
{{--
Shared breadcrumb / nav strip used by every non-overlay webapp page
(/, /scenes, /onboard). Distinct from the in-scene .hud strip so OBS
overlays render identically only browser-facing pages use this.
@param string $crumb uppercase label for the current page (e.g. 'ONBOARD')
@param string $context optional raw HTML for the middle slot;
defaults to the node address.
--}}
<header class="crumb-bar">
<nav class="crumbs">
<span class="led" aria-hidden="true"></span>
<a href="/" class="crumb crumb-root">OPHI-118</a>
<span class="sep"></span>
<span class="crumb crumb-here">{{ $crumb }}</span>
</nav>
<div class="crumb-ctx">{!! $context ?? '<span class="dim">NODE</span>127.0.0.1:1118' !!}</div>
<div class="crumb-clock"><span class="dim">UTC</span><span id="clock">--:--:--</span></div>
</header>