Add token HUD +HP
All checks were successful
Release Creation / build (release) Successful in 1m37s

This commit is contained in:
2026-02-06 22:20:20 +01:00
parent 52877e3a68
commit df6f8e5710
31 changed files with 275 additions and 92 deletions

View File

@@ -35,10 +35,56 @@
padding-bottom: 0;
width: max-content;
margin: 0;
color:#252424;
color: #252424;
}
#token-hud .hp-loss-wrap .hud-loss-hp-button-select {
#token-hud .hp-loss-wrap .hud-loss-hp-button-select {
padding-left: 8px;
font-size: 0.9rem;
}
/* HP Gain Styles */
#token-hud .hp-gain-wrap {
position: absolute;
left: 75px;
display: none;
top: 50%;
width: 48px;
text-align: start;
overflow-y: auto;
}
#token-hud .hp-gain-wrap-col1 {
transform: translate(-200%, -50%);
}
#token-hud .hp-gain-wrap-col2 {
transform: translate(-300%, -50%);
}
#token-hud .hp-gain-wrap-col3 {
transform: translate(-400%, -50%);
}
#token-hud .hp-gain-hud-active {
display: block;
}
#token-hud .hp-gain-hud-disabled {
display: none;
}
#token-hud .hud-gain-hp-button-select {
max-width: 40px;
background-image: var(--background-image-base);
padding-top: 0;
padding-bottom: 0;
width: max-content;
margin: 0;
color: #252424;
}
#token-hud .hp-gain-wrap .hud-gain-hp-button-select {
padding-left: 8px;
font-size: 0.9rem;
}