mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
57 lines
1.4 KiB
Text
57 lines
1.4 KiB
Text
.combat-sidebar {
|
|
.token-actions {
|
|
align-self: stretch;
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 16px;
|
|
|
|
.action-tokens {
|
|
display: flex;
|
|
gap: 4px;
|
|
|
|
.action-token {
|
|
height: 22px;
|
|
width: 22px;
|
|
border: 1px solid;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 10px;
|
|
padding: 8px;
|
|
--button-size: 0;
|
|
|
|
&.used {
|
|
opacity: 0.5;
|
|
background: transparent;
|
|
}
|
|
|
|
&.inactive {
|
|
background: var(--color-warm-2);
|
|
color: var(--color-light-1);
|
|
cursor: default;
|
|
|
|
&:hover {
|
|
filter: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
button {
|
|
font-size: 22px;
|
|
height: 24px;
|
|
width: 24px;
|
|
|
|
&.main {
|
|
background: var(--button-hover-background-color);
|
|
color: var(--button-hover-text-color);
|
|
border-color: var(--button-hover-border-color);
|
|
|
|
&:hover {
|
|
filter: drop-shadow(0 0 3px var(--button-hover-text-color));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|