[PR] [Feature] Beastform Wildcards (#1247)

* Added support for wildcard paths in beastform token paths

* Fixed browse dataSource
This commit is contained in:
WBHarry 2025-11-10 16:30:04 +01:00 committed by GitHub
parent 2d6390248f
commit 7055591a76
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 176 additions and 2 deletions

View file

@ -0,0 +1,33 @@
.daggerheart.dh-style.dialog.image-select {
display: flex;
flex-direction: column;
.images-container {
display: flex;
flex-wrap: wrap;
gap: 8px;
img {
width: 136px;
height: 136px;
border: 1px solid light-dark(@dark-blue, @golden);
border-radius: 6px;
opacity: 0.4;
&.selected {
opacity: 1;
}
}
}
.footer {
margin-top: 8px;
display: flex;
align-items: center;
gap: 8px;
button {
flex: 1;
}
}
}

View file

@ -30,3 +30,5 @@
@import './multiclass-choice/sheet.less';
@import './reroll-dialog/sheet.less';
@import './image-select/sheet.less';