offloaded templates/core/_partials/_forthcoming.html to inject in any applet or other feature under construction; used immediately in Contacts billboard applet; styles updated accordingly

This commit is contained in:
Disco DeDisco
2026-03-24 18:40:16 -04:00
parent 2447315fd3
commit bc78d2c470
4 changed files with 13 additions and 2 deletions

View File

@@ -98,7 +98,7 @@ class BillboardScrollTest(FunctionalTest):
self.assertIn("deposits a Free Token for slot 2 (7 days)", scroll.text) self.assertIn("deposits a Free Token for slot 2 (7 days)", scroll.text)
# Role selection event is rendered as prose # Role selection event is rendered as prose
self.assertIn("starts as Player", scroll.text) self.assertIn("elects to start as Player", scroll.text)
# ------------------------------------------------------------------ # # ------------------------------------------------------------------ #
# Test 3 — current user's events are right-aligned; others' are left # # Test 3 — current user's events are right-aligned; others' are left #

View File

@@ -439,6 +439,16 @@ body {
} }
} }
.forthcoming {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
font-style: italic;
opacity: 0.6;
}
#id_guard_portal { #id_guard_portal {
display: none; display: none;
position: fixed; position: fixed;

View File

@@ -3,5 +3,5 @@
style="--applet-cols: {{ entry.applet.grid_cols }}; --applet-rows: {{ entry.applet.grid_rows }};" style="--applet-cols: {{ entry.applet.grid_cols }}; --applet-rows: {{ entry.applet.grid_rows }};"
> >
<h2>Contacts</h2> <h2>Contacts</h2>
<p><small>[Feature forthcoming]</small></p> {% include "core/_partials/_forthcoming.html" %}
</section> </section>

View File

@@ -0,0 +1 @@
<p class="forthcoming"><small>[Feature forthcoming]</small></p>