wired PICK SKY server-side polarity countdown via threading.Timer (tasks.py); fixed polarity_done overlay gating on refresh; cleared sig-select floats on overlay dismiss; filtered Redact events from Most Recent applet
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -83,13 +83,15 @@
|
||||
#id_wallet_applet_menu { @extend %applet-menu; }
|
||||
#id_room_menu { @extend %applet-menu; }
|
||||
#id_billboard_applet_menu { @extend %applet-menu; }
|
||||
#id_billscroll_menu { @extend %applet-menu; }
|
||||
|
||||
// Page-level gear buttons — fixed to viewport bottom-right
|
||||
.gameboard-page,
|
||||
.dashboard-page,
|
||||
.wallet-page,
|
||||
.room-page,
|
||||
.billboard-page {
|
||||
.billboard-page,
|
||||
.billscroll-page {
|
||||
> .gear-btn {
|
||||
position: fixed;
|
||||
bottom: 4.2rem;
|
||||
@@ -102,7 +104,8 @@
|
||||
#id_game_applet_menu,
|
||||
#id_game_kit_menu,
|
||||
#id_wallet_applet_menu,
|
||||
#id_billboard_applet_menu {
|
||||
#id_billboard_applet_menu,
|
||||
#id_billscroll_menu {
|
||||
position: fixed;
|
||||
bottom: 6.6rem;
|
||||
right: 1rem;
|
||||
@@ -118,7 +121,8 @@
|
||||
.dashboard-page,
|
||||
.wallet-page,
|
||||
.room-page,
|
||||
.billboard-page {
|
||||
.billboard-page,
|
||||
.billscroll-page {
|
||||
> .gear-btn {
|
||||
right: 1rem;
|
||||
bottom: 3.95rem; // same gap above kit btn as portrait; no page-specific overrides needed
|
||||
@@ -131,7 +135,8 @@
|
||||
#id_game_kit_menu,
|
||||
#id_wallet_applet_menu,
|
||||
#id_room_menu,
|
||||
#id_billboard_applet_menu {
|
||||
#id_billboard_applet_menu,
|
||||
#id_billscroll_menu {
|
||||
right: 1rem;
|
||||
bottom: 6.6rem;
|
||||
top: auto;
|
||||
@@ -144,7 +149,8 @@
|
||||
.dashboard-page,
|
||||
.wallet-page,
|
||||
.room-page,
|
||||
.billboard-page {
|
||||
.billboard-page,
|
||||
.billscroll-page {
|
||||
> .gear-btn { right: 2.5rem; }
|
||||
}
|
||||
|
||||
@@ -153,7 +159,8 @@
|
||||
#id_game_kit_menu,
|
||||
#id_wallet_applet_menu,
|
||||
#id_room_menu,
|
||||
#id_billboard_applet_menu { right: 2.5rem; }
|
||||
#id_billboard_applet_menu,
|
||||
#id_billscroll_menu { right: 2.5rem; }
|
||||
}
|
||||
|
||||
// ── Applet box visual shell (reusable outside the grid) ────
|
||||
|
||||
@@ -139,6 +139,11 @@ body.page-billscroll {
|
||||
|
||||
.drama-event-body {
|
||||
flex: 0 0 80%;
|
||||
|
||||
&.struck {
|
||||
text-decoration: line-through;
|
||||
opacity: 0.5;
|
||||
}
|
||||
}
|
||||
|
||||
.drama-event-time {
|
||||
|
||||
@@ -546,10 +546,28 @@ html:has(.gate-backdrop) .position-strip .gate-slot button { pointer-events: aut
|
||||
|
||||
.table-center {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
// "Gravity settling . . ." / "Levity appraising . . ." shown after a polarity
|
||||
// group confirms their sigs while the other group is still selecting.
|
||||
// Pulsing opacity signals active waiting without being jarring.
|
||||
#id_hex_waiting_msg {
|
||||
font-size: 0.7rem;
|
||||
letter-spacing: 0.06em;
|
||||
color: rgba(var(--terUser), 0.8);
|
||||
text-align: center;
|
||||
margin: 0.4rem 0 0;
|
||||
animation: hex-wait-pulse 2.4s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes hex-wait-pulse {
|
||||
0%, 100% { opacity: 0.75; }
|
||||
50% { opacity: 0.3; }
|
||||
}
|
||||
|
||||
.table-seat {
|
||||
position: absolute;
|
||||
display: grid;
|
||||
|
||||
Reference in New Issue
Block a user