mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-14 04:31:07 +01:00
Added effect message
This commit is contained in:
parent
744412bf9f
commit
30229407cd
5 changed files with 106 additions and 1 deletions
54
styles/less/ui/chat/effect-summary.less
Normal file
54
styles/less/ui/chat/effect-summary.less
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
.daggerheart.chat.effect-summary {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
h5 {
|
||||
color: light-dark(@dark, @beige);
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.effects-container {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 4px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.targets-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.effect-target-container,
|
||||
.token-target-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 2px;
|
||||
border: 1px solid light-dark(@dark-blue, @golden);
|
||||
border-radius: 6px;
|
||||
padding: 0 2px;
|
||||
|
||||
img {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
flex: 0;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
label {
|
||||
flex: 1;
|
||||
text-align: center;
|
||||
pointer-events: none;
|
||||
}
|
||||
}
|
||||
|
||||
.token-target-container {
|
||||
cursor: pointer;
|
||||
|
||||
&:hover {
|
||||
filter: drop-shadow(0 0 3px @golden);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -3,6 +3,7 @@
|
|||
@import './chat/chat.less';
|
||||
@import './chat/damage-summary.less';
|
||||
@import './chat/downtime.less';
|
||||
@import './chat/effect-summary.less';
|
||||
@import './chat/sheet.less';
|
||||
|
||||
@import './combat-sidebar/combat-sidebar.less';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue