currently equipped card deck & placeholder for dice set added to kit bag; scrollability of tokens added to styling; equipped_deck added to apps.dash.views.kit_bag; html structure added to templates/core/_partials/_kit_bag_panel.html; two new test cases added to FTs.test_game_kit.GameKitTest

This commit is contained in:
Disco DeDisco
2026-03-24 23:18:04 -04:00
parent a5d71925fc
commit f5a5ed9d8d
4 changed files with 74 additions and 10 deletions

View File

@@ -102,13 +102,36 @@
padding: 0 0.125rem;
&:hover .token-tooltip { display: none; } // JS positions these as fixed
}
.token-tooltip {
z-index: 9999;
}
.kit-bag-deck {
font-size: 1.5rem;
cursor: pointer;
padding: 0 0.125rem;
}
.kit-bag-placeholder {
font-size: 1.5rem;
opacity: 0.3;
padding: 0 0.125rem;
}
}
.kit-bag-section--tokens {
flex: 1;
min-width: 0;
overflow: hidden;
}
.kit-bag-row--scroll {
overflow-x: auto;
flex-wrap: nowrap;
scrollbar-width: none;
&::-webkit-scrollbar { display: none; }
}
.kit-bag-empty {