mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
* Removed action fields on Adversary/Environment in favor of using Feature Items * Added drag/drop for features onto adversary/environment settings * Added Drag of features from Adversary/Environment settings to anywhere in Foundry * Updated all item types except Class/Subclass * Added for Class/Subclass * Items now copy over their features to Character * Corrected back to actions for right items * Fixed adversary/environment features display * PR Fixes
48 lines
1.1 KiB
Text
48 lines
1.1 KiB
Text
@import '../../utils/colors.less';
|
|
@import '../../utils/fonts.less';
|
|
|
|
.application.daggerheart.dh-style.dialog {
|
|
.tab.features {
|
|
max-height: 450px;
|
|
overflow-y: auto;
|
|
scrollbar-width: thin;
|
|
scrollbar-color: light-dark(@dark-blue, @golden) transparent;
|
|
|
|
.add-feature-btn {
|
|
width: 100%;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.feature-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
|
|
.feature-item {
|
|
display: grid;
|
|
grid-template-columns: 40px 1fr auto;
|
|
align-items: center;
|
|
gap: 5px;
|
|
border-radius: 3px;
|
|
|
|
img {
|
|
height: 40px;
|
|
width: 40px;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.label {
|
|
font-family: @font-body;
|
|
}
|
|
|
|
.controls {
|
|
display: flex;
|
|
gap: 5px;
|
|
a {
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|