mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 19:51:08 +01:00
Added action tokens and Request functionality
This commit is contained in:
parent
0f77697614
commit
0ca0ab360e
14 changed files with 340 additions and 28 deletions
|
|
@ -1322,16 +1322,50 @@
|
|||
flex: 0 0 var(--input-height);
|
||||
align-self: stretch;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 16px;
|
||||
}
|
||||
.combat-sidebar .token-actions .action-tokens {
|
||||
display: flex;
|
||||
gap: 4px;
|
||||
}
|
||||
.combat-sidebar .token-actions .action-tokens .action-token {
|
||||
height: 24px;
|
||||
border: 1px solid;
|
||||
border-radius: 8px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 10px;
|
||||
padding: 8px;
|
||||
--button-size: 0;
|
||||
}
|
||||
.combat-sidebar .token-actions .action-tokens .action-token.used {
|
||||
opacity: 0.5;
|
||||
}
|
||||
.combat-sidebar .token-actions button {
|
||||
font-size: 22px;
|
||||
}
|
||||
.combat-sidebar .token-actions button:hover {
|
||||
.combat-sidebar .token-actions button.main {
|
||||
background: var(--button-hover-background-color);
|
||||
color: var(--button-hover-text-color);
|
||||
border-color: var(--button-hover-border-color);
|
||||
}
|
||||
.combat-sidebar .token-actions button.main:hover {
|
||||
filter: drop-shadow(0 0 3px var(--button-hover-text-color));
|
||||
}
|
||||
.combat-sidebar .token-actions button.discrete:hover {
|
||||
background: inherit;
|
||||
}
|
||||
.combat-sidebar .token-actions .combatant-control:focus {
|
||||
outline: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
.combat-sidebar .token-actions .combatant-control.requesting {
|
||||
filter: drop-shadow(0 0 3px gold);
|
||||
color: var(--button-hover-text-color);
|
||||
}
|
||||
.chat-message.duality {
|
||||
border-color: black;
|
||||
padding: 8px 0 0 0;
|
||||
|
|
@ -3171,6 +3205,19 @@ div.daggerheart.views.multiclass {
|
|||
.application.setting.dh-style footer button {
|
||||
flex: 1;
|
||||
}
|
||||
.application.setting.dh-style .form-group {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
.application.setting.dh-style .form-group label {
|
||||
font-size: 16px;
|
||||
}
|
||||
.application.setting.dh-style .form-group .form-fields {
|
||||
display: flex;
|
||||
gap: 4px;
|
||||
align-items: center;
|
||||
}
|
||||
.system-daggerheart .tagify {
|
||||
background: light-dark(transparent, transparent);
|
||||
border: 1px solid light-dark(#222, #efe6d8);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue