enhance death roll dialog style (#440)

This commit is contained in:
Murilo Brito 2025-07-28 09:12:42 -03:00 committed by GitHub
parent 6d7401c874
commit 0a944eb3d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 120 additions and 19 deletions

View file

@ -0,0 +1,57 @@
@import '../../utils/spacing.less';
@import '../../utils/colors.less';
@import '../../utils/fonts.less';
.daggerheart.dh-style.dialog.death-move {
.death-move-container {
display: flex;
flex-direction: column;
gap: 5px;
.moves-list {
.move-item {
display: flex;
align-items: center;
gap: 5px;
&:hover {
background-color: light-dark(@soft-shadow, @soft-white-shadow);
cursor: pointer;
}
padding: 5px;
border-radius: 5px;
transition: background-color 0.3s ease-in-out;
.label {
display: flex;
align-items: center;
gap: 10px;
font-family: @font-body;
cursor: pointer;
flex: 1;
i {
text-align: center;
width: 30px;
}
}
input[type='radio'] {
margin-left: auto;
}
}
}
}
footer {
margin-top: 8px;
display: flex;
gap: 8px;
button {
flex: 1;
height: 40px;
font-family: @font-body;
font-weight: 600;
}
}
}