daggerheart/styles/less/hud/token-hud/token-hud.less
WBHarry 165068a9ee
[Feature] EffectsDisplay (#1340)
* Merged with main

* Added the display

* .

* Removed unused override function

* Fixed layout for generic effects

* feat: add basic style to effects tooltip

* Corrected distancing

* Use CSS based solution for shifting the countdowns

* Centered tooltip header

---------

Co-authored-by: moliloo <dev.murilobrito@gmail.com>
Co-authored-by: Carlos Fernandez <cfern1990@gmail.com>
2025-11-30 18:30:57 +01:00

66 lines
1.5 KiB
Text

.theme-light .daggerheart.placeable-hud {
.status-effects {
.effect-control {
filter: none;
}
.effect-control-container {
.effect-control {
filter: none;
}
.effect-control-disabled-marker {
color: @red;
}
}
}
}
.daggerheart.placeable-hud {
.col.right {
.palette {
.palette-category-title {
grid-column: span var(--effect-columns);
font-weight: bold;
}
}
.clown-car img {
transition: 0.5s;
&.flipped {
transform: scaleX(-1);
}
}
}
.status-effects {
.effect-control-container {
position: relative;
.effect-control-disabled-marker {
position: absolute;
height: 100%;
width: 100%;
top: -1px;
left: 1px;
color: @medium-red;
font-weight: 700;
font-size: 2.1em;
rotate: 29deg;
display: flex;
align-items: center;
justify-content: center;
}
.effect-locked {
position: absolute;
bottom: 2px;
right: 2px;
font-size: 12px;
color: @golden;
filter: drop-shadow(0 0 3px black);
}
}
}
}