mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-06-05 20:34:15 +02:00
* Define more border and input color variables * Rename custom color variables * Fix assignment of variables * Apply border color variable to matching borders * Add trait header colors and shadow contrast
35 lines
655 B
Text
35 lines
655 B
Text
.daggerheart.dh-style.dialog.image-select {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.images-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
max-height: 420px;
|
|
overflow: auto;
|
|
|
|
img {
|
|
width: 136px;
|
|
height: 136px;
|
|
border: 1px solid @color-border;
|
|
border-radius: 6px;
|
|
opacity: 0.4;
|
|
|
|
&.selected {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
.footer {
|
|
margin-top: 8px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
|
|
button {
|
|
flex: 1;
|
|
}
|
|
}
|
|
}
|