mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
* Added CountdownEdit view * Added countdowns UI element * . * Fixed migration of countdowns * . * . * style countdown interface, application and ownership dialog * fix buttons height in ownsership selection * . * Added coloured pips to UI cooldowns to signify player visibility if not every player has it * . * Added max-height and overflow * Sync countdown current with max when equal (#1221) * Update module/applications/ui/countdownEdit.mjs Co-authored-by: Carlos Fernandez <CarlosFdez@users.noreply.github.com> * . --------- Co-authored-by: moliloo <dev.murilobrito@gmail.com> Co-authored-by: Carlos Fernandez <CarlosFdez@users.noreply.github.com>
46 lines
934 B
Text
46 lines
934 B
Text
@import '../../utils/colors.less';
|
|
|
|
.daggerheart.views.ownership-selection {
|
|
.ownership-outer-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
|
|
.ownership-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.ownership-container {
|
|
display: flex;
|
|
border-radius: 6px;
|
|
padding: 0 4px 0 0;
|
|
align-items: center;
|
|
gap: 8px;
|
|
|
|
img {
|
|
height: 40px;
|
|
width: 40px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
span {
|
|
flex: 3;
|
|
}
|
|
|
|
select {
|
|
flex: 1;
|
|
margin: 4px 0;
|
|
}
|
|
}
|
|
|
|
footer {
|
|
margin-top: 10px;
|
|
button {
|
|
height: 32px;
|
|
}
|
|
}
|
|
}
|
|
}
|